blob: 11d98697e7997e6e5e98cc043c6039c36001b7c9 [file] [log] [blame]
{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["introduct","如果你正依赖dubbo作为你业务工程的rpc通信框架,这将是你的参考手册","这篇文档详细描述了dubbo的使用,基本涵盖dubbo的所有功能特性。"],"preface/background.html":["1.1","分布式服务架构","单一应用架构","垂直应用架构``","当垂直应用越来越多,应用之间交互不可避免,将核心业务抽取出来,作为独立的服务,逐渐形成稳定的服务中心,使前端应用能更快速的响应多变的市场需求。","当服务越来越多,容量的评估,小服务资源的浪费等问题逐渐显现,此时需增加一个调度中心基于访问压力实时管理集群容量,提高集群利用率。","当网站流量很小时,只需一个应用,将所有功能都部署在一起,以减少部署节点和成本。","当访问量逐渐增大,单一应用增加机器带来的加速度越来越小,将应用拆成互不相干的几个应用,以提升效率。","此时,用于加速前端页面开发的web框架(mvc)是关键。","此时,用于提高业务复用及整合的分布式服务框架(rpc)是关键。","此时,用于提高机器利用率的资源调度和治理中心(soa)是关键。","此时,用于简化增删改查工作量的数据访问框架(orm)是关键。","流动计算架构","背景","随着互联网的发展,网站应用的规模不断扩大,常规的垂直应用架构已无法应对,分布式服务架构以及流动计算架构势在必行,亟需一个治理系统确保架构有条不紊的演进。"],"preface/requirements.html":["(1)","1.2","govern","http://code.alibabatech.com/blog/experience_1402/servic","process.html","以上是dubbo最基本的几个需求,更多服务治理问题参见:","其次,要可以动态调整权重,在线上,将某台机器的权重一直加大,并在加大的过程中记录响应时间的变化,直到响应时间到达阀值,记录此时的访问量,再以此访问量乘以机器数反推总容量。","在大规模服务化之前,应用可能只是通过rmi或hessian等工具,简单的暴露和引用远程服务,通过配置服务的url地址进行调用,通过f5等硬件进行负载均衡。","并通过在消费方获取服务提供方地址列表,实现软负载均衡和failover,降低对f5硬件负载均衡器的依赖,也能减少部分成本。(2)","当服务越来越多时,服务url配置管理变得非常困难,f5硬件负载均衡器的单点压力也越来越大。此时需要一个服务注册中心,动态的注册和发现服务,使服务的位置透明。","当进一步发展,服务间依赖关系变得错踪复杂,甚至分不清哪个应用要在哪个应用之前启动,架构师都不能完整的描述应用的架构关系。这时,需要自动画出应用间的依赖关系图,以帮助架构师理清理关系。(3)","接着,服务的调用量越来越大,服务的容量问题就暴露出来,这个服务需要多少机器支撑?什么时候该加机器?为了解决这些问题,第一步,要将服务现在每天的调用量,响应时间,都统计出来,作为容量规划的参考指标。","需求"],"preface/architacture.html":["(1)","(2)","(3)","(4)","1.3","admin:","consumer:","container:","deployer:","monitor:","provider:","registry:","repository:","scheduler:","仓库用于存储服务应用发布包。","伸缩性:","健状性:","升级性:","当服务集群规模进一步扩大,带动it治理结构进一步升级,需要实现动态部署,进行流动计算,现有分布式服务架构不会带来阻力:","数据库宕掉后,注册中心仍能通过缓存提供服务列表查询,但不能注册新服务","暴露服务的服务提供方","服务容器负责启动,加载,运行服务提供者。","服务提供者全部宕掉后,服务消费者应用将无法使用,并无限次重连等待服务提供者恢复","服务提供者向注册中心注册其提供的服务,并汇报调用时间到监控中心,此时间不包含网络开销","服务提供者在启动时,向注册中心注册自己提供的服务。","服务提供者无状态,任意一台宕掉后,不影响使用","服务提供者无状态,可动态增加机器部署实例,注册中心将推送新的服务提供者信息给消费者","服务注册与发现的注册中心。","服务消费者向注册中心获取服务提供者地址列表,并根据负载算法直接调用提供者,同时汇报调用时间到监控中心,此时间包含网络开销","服务消费者和提供者,在内存中累计调用次数和调用时间,定时每分钟发送一次统计数据到监控中心。","服务消费者在启动时,向注册中心订阅自己所需的服务。","服务消费者,从提供者地址列表中,基于软负载均衡算法,选一台提供者进行调用,如果调用失败,再选另一台调用。","服务运行容器。","架构","注册中心为对等集群,可动态增加机器部署实例,所有客户端将自动发现新的注册中心","注册中心全部宕掉后,服务提供者和服务消费者仍能通过本地缓存通讯","注册中心和监控中心全部宕机,不影响已运行的提供者和消费者,消费者在本地缓存了提供者列表","注册中心和监控中心都是可选的,服务消费者可以直连服务提供者","注册中心对等集群,任意一台宕掉后,将自动切换到另一台","注册中心负责服务地址的注册与查找,相当于目录服务,服务提供者和消费者只在启动时与注册中心交互,注册中心不转发请求,压力较小","注册中心返回服务提供者地址列表给消费者,如果有变更,注册中心将基于长连接推送变更数据给消费者。","注册中心通过长连接感知服务提供者的存在,服务提供者宕机,注册中心将立即推送事件通知消费者","注册中心,服务提供者,服务消费者三者之间均为长连接,监控中心除外","监控中心宕掉不影响使用,只是丢失部分采样数据","监控中心负责统计各服务调用次数,调用时间等,统计先在内存汇总后每分钟一次发送到监控中心服务器,并以报表展示","统一管理控制台。","统计服务的调用次调和调用时间的监控中心。","自动部署服务的本地代理。","节点角色说明:","调度中心基于访问压力自动增减服务提供者。","调用关系说明:","调用远程服务的服务消费方。","连通性:"],"preface/usage.html":["1.4","quick","start","用法"],"dependencies/dependencies.html":["+","0.1","0.4","0.8.0","1.0.0.ga","1.0.13","1.1.10","1.1.7","1.1.8","1.3.6","1.4.1","2.0.0","2.1","2.1.4","2.5","2.6.1","3.1","3.2.1","3.3.3","4.0.7","4.1.2","4.2.0.final","6.1.26",">","[info]","\\","api:","bsf:","com.alibaba:dubbo:jar:2.1.2:compil","common","curator:","cxf:","dep.log命令分析,dubbo缺省依赖以下三方库:","dependency:tre","fastjson:","fix","ga:compil","grizzly:","hessian:","hessian_lite:","hibern","httpclient:","javassist.jar","jcache:","jdk1.5+","jedis:","jee:","jetty:","jfreechart:","log4j.jar和common","log4j:log4j:jar:1.2.16:compil","logging.jar日志输出包。","logging:common","logging:jar:1.1.1:compil","logging,则不能去掉。","mina:","netty.jar","org.javassist:javassist:jar:3.15.0","org.jboss.netty:netty:jar:3.2.5.final:compil","org.springframework:spring:jar:2.5.6.sec03:compil","servlet:","spring.jar","thrift:","valid","validator:","xmemcached:","xstream:","zkclient:","zookeeper:","|","以下依赖,在主动配置使用相应实现策略时用到,需自行加入依赖。","但如果其它三方库比如spring.jar间接依赖common","依赖","可以直接去掉,dubbo本身的日志会自动切换为jdk的java.util.logging输出。","如果或,以及,则不需要。","如果或,则换成mina.jar或grizzly.jar。","如果用serviceconfig和referenceconfig的api调用,则不需要。","如果,则不需要。可选依赖","字节码生成。","必须依赖","理论上dubbo可以只依赖jdk,不依赖于任何三方库运行,只需配置使用jdk相关实现策略。","缺省依赖","网络传输。","这里所有依赖都是换照dubbo缺省配置选的,这些缺省值是基于稳定性和性能考虑的。","通过mvn","配置解析。"],"maturity/maturity.html":["2.2","2.3.3以上版本(推荐使用)","advis","alibaba","broadcast","cluster","consistenthash","contain","dogfooding,注册中心本身也是一个标准的rpc服务","dubbo","dubbo协议","failback","failfast","failov","failsaf","featur","fork","grizzli","hessian","hessian协议","hessian的各版本兼容性不好,可能和应用使用的hessian冲突,dubbo内嵌了hessian3.2.1的源码","inf/spring目录下的所有spring配置","java","javassist","java原生支持","jboss的nio框架,性能较好(推荐使用)","jdk","jdk原生支持","jetti","json","jta/xa三阶段提交事务","laiwang","leastact","loadbal","log4j","matur","mina","monitor","multicast注册中心","netti","problem","proxyfactori","random","redis注册中心","registri","research","rmi协议","roundrobin","serial","simple注册中心","simple监控中心","spring","stabl","strength","sun的nio框架,应用于glassfish服务器中","test","transport","user","xx:permsize=128m","zookeeper注册中心","一次请求派发两种事件,需屏蔽无用事件","一致性hash,相同参数的请求总是发到同一提供者,当某一台提供者挂时,原本发往该提供者的请求,基于虚拟节点,平摊到其它提供者,不会引起剧烈变动","不可用","不可靠异步调用","不可靠,重启丢失","不支持权重,在容量规划时,不能通过权重把压力导向一台机器压测容量","不稳定","事件通知","事件通知,在远程调用执行前后触发","令牌验证","令牌验证,用于服务授权","伪造返回结果,可在失败时执行,或直接执行,用于服务降级","依赖于javassist.jar包,占用jvm的perm内存,perm可能要设大一些:java","依赖于zookeeper的稳定性","依赖于网络拓普和路由,跨机房有风险","偶尔会连接失败,需重建stub","分布式事务","分组聚合","分组聚合返回值,用于菜单聚合等服务","功能成熟度","动态下发配置,实现功能的开关","动态决定调用关系","压力分摊不均","去中心化,不需要安装注册中心","参数回调","参数验证","参数验证,jsr303验证框架集成","可与原生hessian互操作,基于http协议","可与原生rmi互操作,基于tcp协议","可用于生产环境","启动一个内嵌jetty,用于汇报状态","回声测试","在一个截面上碰撞的概率高,重试时,可能出现瞬间压力不均","在大文件传输时,单一连接会成为瓶颈","在客户端执行部分逻辑","基于条件表达式的路由规则,功能简单易用","基于脚本引擎的路由规则,功能强大","大量访问页面时,会影响服务器的线程和内存","失败安全,出现异常时,直接忽略,通常用于写入审计日志等操作","失败自动切换,当出现失败,重试其它服务器,通常用于读操作(推荐使用)","失败自动恢复,后台记录失败请求,定时重发,通常用于消息通知操作","如果有机器正在重启,可能会出现调用失败","存在慢的机器累积请求问题,极端情况可能产生雪崩","对性能有影响","小规模应用或开发测试环境","并发控制","并行调用多个服务器,只要一个成功即返回,通常用于实时性要求较高的读操作","广播调用所有提供者,逐个调用,任意一台报错则报错,通常用于更新提供方本地状态","延迟建立连接,调用时建立","延迟暴露","延迟暴露服务,用于等待应用加载warmup数据,或等待spring加载完成","延迟连接","异步调用","当参数对象增加字段时,需外部文件声明","待发送消息队列派发不及时,大压力下,会出现fullgc","快速失败,只发起一次调用,失败立即报错,通常用于非幂等性的写操作","性能较好,多语言支持(推荐使用)","性能较差","成熟度","支持jfreechart统计报表","支持基于客户端双写的集群方式,性能高","支持基于网络的集群方式,有广泛周边开源产品,建议使用dubbo","最少活跃调用数,相同活跃数的随机,活跃数指调用前后计数差,使慢的机器收到更少请求","有些复杂多分支条件情况,规则很难描述","本地伪装","本地存储,影响性能,受磁盘大小限制","本地存根","本地调用","条件路由规则","没有运行沙箱,脚本能力过于强大,可能成为后门","没有集群支持,可能单点故障","没有集群支持,可能单点故障,但故障后不影响rpc运行","泛化实现","泛化实现,无需业务接口类实现任意接口,用于mock平台","泛化引用","泛化调用,无需业务接口类进行远程调用,用于测试平台,开放网关桥接等","测试环境使用","点对点直连服务提供方,用于测试","特殊场景使用","用户不能控制log4j的配置,不灵活","直连提供者","策略成熟度","粘滞连接","粘滞连接,总是向同一个提供方发起请求,除非此提供方挂掉,再切换到另一台","纯文本,可跨语言解析,缺省采用fastjson解析","线程池不可扩展,filter不能拦截下一filt","结果缓存","结果缓存,用于加速请求","老牌nio框架,稳定","脚本路由规则","自动加载meta","自动配置log4j的配置,在多进程启动时,自动给日志文件按进程分目录","要求服务器时间同步,用于检查心跳过期脏数据","访问日志","访问日志,用于记录调用信息","试用","调用信息丢失","路由规则","轮循,按公约后的权重设置轮循比率","连接控制","连接数控制","通过不传送pojo的类元信息,在大量pojo传输时,性能较好","通过字节码生成代替反射,性能比较好(推荐使用)","速度慢,任意一台报错则报错","配置规则","采用nio复用单一长连接,并使用线程池并发处理请求,减少握手和加大并发效率,性能较好(推荐使用)","重试会带来更长延迟","附加参数","随机,按权重设置随机概率(推荐使用)","隐式传参","需hessian.jar支持,http短连接的开销大","需注册中心支持","需要浪费更多服务资源"],"configuration/xml.html":["(+)","3.1","actives等类似。","api使用说明如果不想使用spring配置,而希望通过api的方式进行调用,请参见:api配置","configur","loadbalance,","override:","provider.xml","providerconfig均可以缺省配置。","relation:","xml配置","上图中以timeout为例,显示了配置的查找顺序,其它retries,","其中,服务提供方配置,通过url经由注册中心传递给消费方。","协议配置,用于配置提供服务的协议信息,协议由提供方指定,消费方被动接受。","如果级别一样,则消费方优先,提供方次之。","如:","应用配置,用于配置当前应用信息,不管该应用是提供者还是消费者。","建议由服务提供方设置超时,因为一个方法需要执行多长时间,服务提供方更清楚,如果一个消费方同时引用多个服务,就不需要关心每个服务的超时设置。","引用配置,用于创建一个远程服务代理,一个引用可以指向多个注册中心。","或:(2.1.0开始支持)","所有标签者支持自定义参数,用于不同扩展点实现的特殊配置。","提供方的缺省值,当protocolconfig和serviceconfig某属性没有配置时,采用此缺省值,可选。","方法级优先,接口级次之,全局配置再次之。","方法配置,用于serviceconfig和referenceconfig指定方法级的配置信息。","服务配置,用于暴露一个服务,定义服务的元信息,一个服务可以用多个协议暴露,一个服务也可以注册到多个注册中心。","模块配置,用于配置当前模块信息,可选。","注册中心配置,用于配置连接注册中心相关信息。","注意声明:xmlns:p=\"http://www.springframework.org/schema/p\"","消费方缺省配置,当referenceconfig某属性没有配置时,采用此缺省值,可选。","理论上referenceconfig的非服务标识配置,在consumerconfig,serviceconfig,","用于指定方法参数配置。","监控中心配置,用于配置连接监控中心相关信息,可选。","示例:","配置使用说明想知道如何使用配置,请参见:快速启动","配置项说明详细配置项,请参见:配置参考手册"],"configuration/properties.html":["3.2","ddubbo.properties.file=xxx.properti","dubbo.application.name=foo","dubbo.application.owner=bar","dubbo.properti","dubbo.registry.address=10.20.153.10:9090","dubbo将自动加载classpath根目录下的dubbo.properties,可以通过jvm启动参数:","d参数优先,这样可以使用户在部署和启动时进行参数重写,比如在启动时需改变协议的端口。","jvm启动","properties最后,相当于缺省值,只有xml没有配置时,dubbo.properties的相应配置项才会生效,通常用于共享公共配置,比如应用名。","xml次之,如果在xml中有配置,则dubbo.properties中的相应配置项无效。","典型配置如:","如果classpath根目录下存在多个dubbo.properties,比如多个jar包中有dubbo.properties,dubbo会任意加载,并打印error日志,后续可能改为抛异常。","如果xml有多行同名标签配置,可用id号区分,如果没有id号将对所有同名标签生效:","如果公共配置很简单,没有多注册中心,多协议等情况,或者想多个spring容器想共享配置,可以使用dubbo.properties作为缺省配置。","将xml配置的标签名,加属性名,用点分隔,多个属性拆成多行:","属性配置","改变缺省配置位置。","映射规则:","比如:dubbo.application.name=foo等价于","比如:dubbo.protocol.rmi.port=1234等价于(协议的id没配时,缺省使用协议名作为id)","比如:dubbo.registry.address=10.20.153.10:9090等价于","比如:dubbo.registry.china.address=10.20.153.10:9090等价于","覆盖策略:"],"configuration/api.html":["(1).","(2).","(3).","(3.1).","(3.2).","...","//","3.3","=","api使用范围api仅用于openapi,","api属性含义参考api属性与配置项一对一,各属性含义,请参见:,比如:applicationconfig.setname(\"xxx\")","api配置","applic","application.setname(\"xxx\");","application.setname(\"yyy\");","applicationconfig","applicationconfig();","arraylist();","com.alibaba.dubbo.rpc.config.applicationconfig;","com.alibaba.dubbo.rpc.config.consumerconfig;","com.alibaba.dubbo.rpc.config.providerconfig;","com.alibaba.dubbo.rpc.config.referenceconfig;","com.alibaba.dubbo.rpc.config.registryconfig;","com.alibaba.dubbo.rpc.config.serviceconfig;","com.xxx.xxxservice;","com.xxx.xxxserviceimpl;","esb,","import","list","method","method.setname(\"createxxx\");","method.setretries(0);","method.settimeout(10000);","methodconfig","methodconfig();","methods.add(method);","mock等系统集成,普通服务提供方或消费方,请采用配置方式使用dubbo,请参见:","new","protocol","protocol.setname(\"dubbo\");","protocol.setport(12345);","protocol.setthreads(200);","protocolconfig","protocolconfig();","refer","reference.get();","reference.setapplication(application);","reference.setinterface(xxxservice.class);","reference.setmethods(methods);","reference.setregistry(registry);","reference.seturl(\"dubbo://10.20.130.230:20880/com.xxx.xxxservice\");","reference.setversion(\"1.0.0\");","referenceconfig","referenceconfig();","registri","registry.setaddress(\"10.20.130.230:9090\");","registry.setpassword(\"bbb\");","registry.setusername(\"aaa\");","registryconfig","registryconfig();","servic","service.export();","service.setapplication(application);","service.setinterface(xxxservice.class);","service.setprotocol(protocol);","service.setref(xxxservice);","service.setregistry(registry);","service.setversion(\"1.0.0\");","serviceconfig","serviceconfig();","test,","xxxservic","xxxserviceimpl();","其中,协议对应provider.setprotocol()的值,端口对应provider.setport()的值,","和本地bean一样使用xxxservic","多个协议可以用setprotocols()","多个注册中心可以用setregistries()","如果点对点直连,可以用reference.seturl()指定目标地址,设置url后将绕过注册中心,","对应","引用远程服务","当前应用配置","方法级设置","方法级配置","暴露及注册服务","服务实现","服务提供者","服务提供者协议配置","服务提供者暴露服务配置","服务消费者","此实例很重,封装了与注册中心的连接以及与提供者的连接,请自行缓存,否则可能造成内存和连接泄漏","此实例很重,封装了与注册中心的连接,请自行缓存,否则可能造成内存和连接泄漏","注意:referenceconfig为重对象,内部封装了与注册中心的连接,以及与服务提供方的连接","注意:serviceconfig为重对象,内部封装了与注册中心的连接,以及开启服务端口","注意:此代理对象内部封装了所有通讯细节,对象较重,请缓存复用","注:下面只列出不同的地方,其它参见上面的写法","点对点直连","特殊场景","设置方法级配置","路径对应service.setpath()的值,如果未设置path,缺省path为接口名","连接注册中心配置"],"configuration/annotation.html":["......","//","2.2.1以上版本支持","3.4","@compon","@reference(version=\"1.0.0\")","@service(version=\"1.0.0\")","baract","class","com.alibaba.dubbo.config.annotation.reference;","com.alibaba.dubbo.config.annotation.service;","fooservic","fooservice;","fooserviceimpl","implement","import","org.springframework.stereotype.component;","privat","public","scan,如果用的是spring2.0及以前版本,需配置:","spring2.5及以后版本支持compon","{","}","也可以使用:(等价于前面的:)","服务提供方注解:","服务提供方配置:","服务消费方注解:","服务消费方配置:","注解配置"],"demos/启动时检查.html":["4.1","check=\"false\"","check=\"false\",总是会返回引用,当服务恢复时,能自动连上。","check=\"tr\bue\"。如果你的spring容器是懒加载的,或者通过api编程延迟引用服务,请关闭check,否则服务临时不可用时,会抛出异常,拿到null引用,如果","ddubbo.consumer.check=fals","ddubbo.reference.check=fals","ddubbo.reference.com.foo.barservice.check=fals","ddubbo.registry.check=fals","dubbo.consumer.check=fals","dubbo.consumer.check=false,是设置check的缺省值,如果配置中有显式的声明,如:,不会受影响。","dubbo.reference.check=fals","dubbo.reference.check=false,强制改变所有reference的check值,就算配置中有声明,也会被覆盖。","dubbo.reference.com.foo.barservice.check=fals","dubbo.registry.check=fals","dubbo.registry.check=false,前面两个都是指订阅成功,但提供者列表是否为空是否报错,如果注册订阅失败时,也允许启动,需使用此选项,将在后台定时重试。","dubbo缺省会在启动时检查依赖的服务是否可用,不可用时会抛出异常,阻止spring初始化完成,以便上线时,能及早发现问题,默认","d参数","java","也可以用","也可以用dubbo.properties配置","关闭所有服务的启动时检查:","关闭某个服务的启动时检查:","关闭检查,比如,测试时,有些服务不关心,或者出现了循环依赖,必须有一方先启动。","关闭注册中心启动时检查:","可以通过","启动时检查","如果需要饥饿加载,即没有人引用也立即生成动态代理,可以配置:","引用缺省是延迟初始化的,只有引用被注入到其它bean,或被getbean()获取,才会初始化。","没有提供者时报错","注册订阅失败时报错","注意区别"],"demos/集群容错.html":["(failover集群模式生效)","4.2","broadcast","cluster","cluster将directory中的多个invoker伪装成一个invoker,对上层透明,伪装过程包含了容错逻辑,调用失败后,重试另一个。","directory代表多个invoker,可以把它看成list,但与list不同的是,它的值可能是动态变化的,比如注册中心推送变更。","failback","failfast","failov","failsaf","fork","forks=\"2\"","loadbalance负责从多个invoker中选出具体的一个用于本次调用,选的过程包含了负载均衡算法,调用失败后,需要重选","retries=\"2\"","router负责从多个invoker中按路由规则选出子集,比如读写分离,应用隔离等。","可以自行扩展集群容错策略,参见:集群扩展","可通过","各节点关系:","在集群调用失败时,dubbo提供了多种容错方案,缺省为failover重试。","失败安全,出现异常时,直接忽略。","失败自动切换,当出现失败,重试其它服务器。(缺省)","失败自动恢复,后台记录失败请求,定时重发。","并行调用多个服务器,只要一个成功即返回。","广播调用所有提供者,逐个调用,任意一台报错则报错。(2.1.0开始支持)","快速失败,只发起一次调用,失败立即报错。","或","来设置最大并行数。","来设置重试次数(不含第一次)。","这里的invoker是provider的一个可调用service的抽象,invoker封装了provider地址及service接口信息。","通常用于写入审计日志等操作。","通常用于实时性要求较高的读操作,但需要浪费更多服务资源。","通常用于消息通知操作。","通常用于读操作,但重试会带来更长延迟。","通常用于通知所有提供者更新缓存或日志等本地资源信息。","通常用于非幂等性的写操作,比如新增记录。","重试次数配置如:","集群容错","集群容错模式","集群模式配置如:"],"demos/负载均衡.html":["4.3","consistenthash","leastact","loadbal","random","roundrobin","一致性hash,相同参数的请求总是发到同一提供者。","使慢的提供者收到更少请求,因为越慢的提供者的调用前后计数差会越大。","在一个截面上碰撞的概率高,但调用量越大分布越均匀,而且按概率使用权重后也比较均匀,有利于动态调整提供者权重。","在集群负载均衡时,dubbo提供了多种均衡策略,缺省为random随机调用。可以自行扩展负载均衡策略,参见:负载均衡扩展","存在慢的提供者累积请求的问题,比如:第二台机器很慢,但没挂,当请求调到第二台时就卡在那,久而久之,所有请求都卡在调到第二台上。","当某一台提供者挂时,原本发往该提供者的请求,基于虚拟节点,平摊到其它提供者,不会引起剧烈变动。","或","最少活跃调用数,相同活跃数的随机,活跃数指调用前后计数差。","算法参见:http://en.wikipedia.org/wiki/consistent_hashing。","缺省只对第一个参数hash,如果要修改,请配置","缺省用160份虚拟节点,如果要修改,请配置","负载均衡","轮循,按公约后的权重设置轮循比率。","配置如:","随机,按权重设置随机概率。"],"demos/线程模型.html":["4.4","cach","connect","direct","dispatch","execut","fix","limit","messag","threadpool","事件处理线程说明","但如果事件处理逻辑较慢,或者需要发起新的io请求,比如需要查询数据库,则必须派发到线程池,否则io线程阻塞,将导致不能接收其它请求。","只有请求响应消息派发到线程池,其它连接断开事件,心跳等消息,直接在io线程上执行。","只请求消息派发到线程池,不含响应,响应和其它连接断开事件,心跳等消息,直接在io线程上执行。","可伸缩线程池,但池中的线程数只会增长不会收缩。(为避免收缩时突然来了大流量引起的性能问题)。","固定大小线程池,启动时建立线程,不关闭,一直持有。(缺省)","在io线程上,将连接断开事件放入队列,有序逐个执行,其它消息派发到线程池。","如果事件处理的逻辑能迅速完成,并且不会发起新的io请求,比如只是在内存中记个标识,则直接在io线程上处理更快,因为减少了线程池调度。","如果用io线程处理事件,又在事件处理过程中发起新的io请求,比如在连接事件中发起登录请求,会报“可能引发死锁”异常,但不会真死锁。","所有消息都不派发到线程池,全部在io线程上直接执行。","所有消息都派发到线程池,包括请求,响应,连接事件,断开事件,心跳等。","线程模型","缓存线程池,空闲一分钟自动删除,需要时重建。","配置如下:"],"demos/直连提供者.html":["1.0.6及以上版本支持","2.0以上版本自动加载${user.home}/dubbo","4.5","com.alibaba.xxx.xxxservice=dubbo://localhost:20890","dcom.alibaba.xxx.xxxservice=dubbo://localhost:20890","ddubbo.resolve.file=xxx.properti","ddubbo.resolve.file指定映射文件路径,此配置优先级高于中的配置,1.0.15及以上版本支持","d参数映射服务地址,如:","java","key为服务名,value为服务提供者url,此配置优先级最高,1.0.15及以上版本支持","resolve.properties文件,不需要配置","中配置url指向提供者,将绕过注册中心,多个地址用分号隔开,配置如下:","在jvm启动参数中加入","在开发及测试环境下,经常需要绕过注册中心,只测试指定服务提供者,这时候可能需要点对点直连,点对点直联方式,将以服务接口为单位,忽略注册中心的提供者列表,a接口配置点对点,不影响b接口从注册中心获取列表。","如果是线上需求需要点对点,可在","如果服务比较多,也可以用文件映射,如:","注意为了避免复杂化线上环境,不要在线上使用这个功能,只应在测试阶段使用。","然后在映射文件xxx.properties中加入:(key为服务名,value为服务提供者url)","用","直连提供者"],"demos/只订阅.html":["4.6","只订阅","或者","禁用注册配置","解决方案可以让服务提供者开发方,只订阅服务(开发的服务可能依赖其它服务),而不注册正在开发的服务,通过直连测试正在开发的服务。","问题为方便开发测试,经常会在线下共用一个所有服务可用的注册中心,这时,如果一个正在开发中的服务提供者注册,可能会影响消费者不能正常运行。"],"demos/只注册.html":["4.7","只注册","或者","禁用订阅配置","解决方案可以让服务提供者方,只注册服务到另一注册中心,而不从另一注册中心订阅服务。","问题如果有两个镜像环境,两个注册中心,有一个服务只在其中一个注册中心有部署,另一个注册中心还没来得及部署,而两个注册中心的其它应用都需要依赖此服务,所以需要将服务同时注册到两个注册中心,但却不能让此服务同时依赖两个注册中心的其它服务。"],"demos/静态服务.html":["4.8","=","extensionloader.getextensionloader(registryfactory.class).getadaptiveextension();","registri","registry.register(url.valueof(\"memcached://10.20.153.11/com.foo.barservice?category=providers&dynamic=false&application=foo\"));","registryfactori","registryfactory.getregistry(url.valueof(\"zookeeper://10.20.153.10:2181\"));","如果是一个第三方独立提供者,比如memcached等,可以直接向注册中心写入提供者地址信息,消费者正常使用:","或者","有时候希望人工管理服务提供者的上线和下线,此时需将注册中心标识为非动态管理模式","服务提供者初次注册时为禁用状态,需人工启用,断线时,将不会被自动删除,需人工禁用。","通常由脚本监控中心页面等调用","静态服务"],"demos/多协议.html":["(1)","(2)","4.9","consumer.xml","不同服务不同协议","可以自行扩展协议,参见:协议扩展","多协议","多协议暴露服务","比如:不同服务在性能上适用不同协议进行传输,比如大数据用短连接协议,小数据大并发用长连接协议","比如:需要与http客户端互操作"],"demos/多注册中心.html":["(1)","(2)","(3)","4.10","consumer.xml","不同服务使用不同注册中心","可以自行扩展注册中心,参见:注册中心扩展","多注册中心","多注册中心引用","多注册中心注册","如果只是测试环境临时需要连接两个不同注册中心,使用竖号分隔多个不同注册中心地址:","比如:crm有些服务是专门为国际站设计的,有些服务是专门为中文站设计的。","比如:crm需同时调用中文站和国际站的pc2服务,pc2在中文站和国际站均有部署,接口及版本号都一样,但连的数据库不一样。","比如:中文站有些服务来不及在青岛部署,只在杭州部署,而青岛的其它应用需要引用此服务,就可以将服务同时注册到两个注册中心。"],"demos/服务分组.html":["2.2.0以上版本支持,总是只调一个可用组的实现","4.11","任意组:","引用","当一个接口有多种实现时,可以用group区分。","服务","服务分组"],"demos/多版本.html":["4.13","不区分版本:(2.2.0以上版本支持)","再将所有消费者升级为新版本","在低压力时间段,先升级一半提供者为新版本","多版本","引用新版本","引用老版本","当一个接口实现,出现不兼容升级时,可以用版本号过渡,版本号不同的服务相互间不引用。","新版本服务","然后将剩下的一半提供者升级为新版本","老版本服务"],"demos/分组聚合.html":["4.14","examples/src/main/java/com/alibaba/dubbo/examples/merg","test","test/dubbo","代码参见:https://github.com/alibaba/dubbo/tree/master/dubbo","分组聚合","参见:合并结果扩展","合并指定分组","指定合并方法,将调用返回结果的指定方法进行合并,合并方法的参数类型必须是返回结果类型本身","指定合并策略,缺省根据返回值类型自动匹配,如果同一类型有两个合并器时,需指定合并器的名称","指定方法合并结果,其它未指定的方法,将只调用一个group","按组合并返回结果,比如菜单服务,接口一样,但有多种实现,用group区分,现在消费方需从每种group中调用一次返回结果,合并结果返回,这样就可以实现聚合菜单项。从2.1.0版本开始支持,","搜索所有分组","某个方法不合并结果,其它都合并结果","配置如:"],"demos/参数验证.html":["\"/valid","\"^\\\\s*\\\\w+(?:\\\\.{0,1}[\\\\w","'/')","(constraintviolationexception)","(rpcexcept","(validationservice)context.getbean(\"validationservice\");","+",".][a","//","1,","1.0.0.ga","2.1.0以上版本支持,","20)","4.15","4.2.0.final","7158911668568000392l;","9]+(?:[","9]+)*\\\\.[a","=","@futur","@groupsequence(update.class)","@interfac","@max(100)","@min(18)","@notnul","@notnull(group","@past","@pattern(regexp","@size(min","]+)*@[a","age)","age;","api","args)","catch","class","classpathxmlapplicationcontext","classpathxmlapplicationcontext(config);","com.alibaba.dubbo.examples.validation.api.validationparameter;","com.alibaba.dubbo.examples.validation.api.validationservice;","com.alibaba.dubbo.rpc.rpcexception;","config","constraintviolationexcept","consumer.xml\";","context","context.start();","date","delete(@min(1)","e)","e.getcause();","email)","email;","error","error\");","examples/src/main/java/com/alibaba/dubbo/examples/valid","except","expirydate)","expirydate;","final","getage()","getemail()","getexpirydate()","getlogindate()","getname()","hibern","id);","implement","import","int","interfac","java.io.serializable;","java.util.date;","javax.valid","javax.validation.constraints.future;","javax.validation.constraints.max;","javax.validation.constraints.min;","javax.validation.constraints.notnull;","javax.validation.constraints.past;","javax.validation.constraints.pattern;","javax.validation.constraints.size;","javax.validation.constraintviolationexception;","javax.validation.groupsequence;","jsr303","logindate)","logindate;","long","main(string[]","max","name)","name;","new","org.hibern","org.springframework.context.support.classpathxmlapplicationcontext;","paramet","parameter);","privat","public","return","save(@notnul","save(validationparamet","save{}","serializ","serialversionuid","set>","setage(int","setemail(str","setexpirydate(d","setlogindate(d","setname(str","static","string","system.out.println(\"valid","system.out.println(violations);","test","test/dubbo","this.ag","this.email","this.expiryd","this.logind","this.nam","throw","tri","update(validationparamet","update{}","valid","validationconsum","validationconsumer.class.getpackage().getname().replace('.',","validationparamet","validationparameter();","validationservic","validationservice.class)","validationservice.save(parameter);","validationservice.save.class)","validationservice.save.class),可选","ve","ve.getconstraintviolations();","violat","void","z0","z]+\\\\s*$\")","za","{","}","不允许为空","与方法同名接口,首字母大写,用于区分验证场景,如:@notnull(group","保存时不允许为空,更新时允许为空","关联验证示例","分组验证示例","参数标注示例","参数验证","参数验证功能是基于","参数验证示例","可以拿到一个验证错误详细信息的集合","同时验证update组规则","在客户端验证参数","在服务器端验证参数","完整示例代码参见:https://github.com/alibaba/dubbo/tree/master/dubbo","实现的,用户只需标识jsr303标准的验证annotation,并通过声明filter来实现验证。","必须为一个未来的时间","必须为一个过去的时间","抛出的是rpcexcept","最大值","最小值","直接对基本类型参数验证","缺省可按服务接口区分验证场景,如:@notnull(group","里面嵌了一个constraintviolationexcept","长度或大小范围","需要加入依赖","验证参数不为空","验证异常信息","验证方式可扩展,参见:验证扩展",",表示不更新该字段"],"demos/结果缓存.html":["2.1.0以上版本支持","4.16","examples/src/main/java/com/alibaba/dubbo/examples/cach","jcach","jsr107","lru","test","test/dubbo","threadloc","与","基于最近最少使用原则删除多余缓存,保持最热的数据被缓存。","当前线程缓存,比如一个页面渲染,用到很多portal,每个portal都要去查用户信息,通过线程缓存,可以减少这种多余访问。","或:","示例代码:https://github.com/alibaba/dubbo/tree/master/dubbo","结果缓存","结果缓存,用于加速热门数据的访问速度,dubbo提供声明式缓存,以减少用户加缓存的工作量。","缓存类型可扩展,参见:cachefactory扩展点","配置如:","集成,可以桥接各种缓存实现。"],"demos/泛化引用.html":["\"com.xxx.personimpl\");","\"java.lang.string\"","\"world\"","\"xxx\");","\"yyy\");","(genericservice)","...","//","4.17","=","applicationcontext.getbean(\"barservice\");","barservic","barservice.$invoke(\"sayhello\",","class","com.alibaba.dubbo.rpc.service.genericservice;","com.xxx;","genericservic","genericservice.$invoke(\"findperson\",","genericservice.$invoke(\"sayhello\",","getname()","getpassword()","hashmap();","implement","import","map","map.put(\"class\",","map.put(\"name\",","map.put(\"password\",","name)","name;","new","object","object[]","object[]{person});","packag","password)","password;","person","person.put(\"name\",","person.put(\"password\",","person.setname(\"xxx\");","person.setpassword(\"yyy\");","personimpl","personimpl();","privat","public","refer","reference.get();","reference.setgeneric(true);","reference.setinterface(\"com.xxx.xxxservice\");","reference.setversion(\"1.0.0\");","referenceconfig","referenceconfig();","result","return","setname(str","setpassword(str","string","string[]","string[]{\"com.xxx.person\"},","this.nam","this.password","void","{","{\"java.lang.string\"},","{\"world\"});","}","});","},","假设存在pojo如:","则pojo数据:","可用下面map表示:","基本类型以及date,list,map等不需要转换,直接调用","声明为泛化接口","如果返回pojo将自动转成map","引用远程服务","弱类型接口名","泛化引用","泛接口调用方式主要用于客户端没有api接口及模型类元的情况,参数及返回值中的所有pojo均用map表示,通常用于框架集成,比如:实现一个通用的服务测试框架,可通过genericservice调用所有服务实现。","注意:如果参数类型是接口,或者list等丢失泛型,可通过class属性指定类型。","用com.alibaba.dubbo.rpc.service.genericservice可以替代所有接口引用","用map表示pojo参数,如果返回值为pojo也将自动转成map","该实例很重量,里面封装了所有与注册中心及服务提供方连接,请缓存"],"demos/泛化实现.html":["\"","\"welcom","$invoke(str","(\"sayhello\".equals(methodname))","+","...","//","4.18","=","args)","args[0];","class","com.foo;","genericexcept","genericservic","implement","methodname,","mygenericservic","new","object","object[]","packag","parametertypes,","public","return","servic","service.export();","service.setinterface(\"com.xxx.xxxservice\");","service.setref(xxxservice);","service.setversion(\"1.0.0\");","serviceconfig","serviceconfig();","string[]","throw","xxxgenericservice();","xxxservic","{","}","弱类型接口名","指向一个通用服务实现","暴露及注册服务","泛化实现","泛接口实现方式主要用于服务器端没有api接口及模型类元的情况,参数及返回值中的所有pojo均用map表示,通常用于框架集成,比如:实现一个通用的远程服务mock框架,可通过实现genericservice接口处理所有服务请求。","用com.alibaba.dubbo.rpc.service.genericservice可以替代所有接口实现","该实例很重量,里面封装了所有与注册中心及服务提供方连接,请缓存"],"demos/回声测试.html":["(echoservice)","//","4.19","=","assert(status.equals(\"ok\"));","ctx.getbean(\"memberservice\");","echoservic","echoservice.$echo(\"ok\");","memberservic","memberservice;","statu","string","回声测试","回声测试可用性","回声测试用于检测服务是否可用,回声测试按照正常请求流程执行,能够测试整个调用是否通畅,可用于监控。","强制转型为echoservic","所有服务自动实现echoservice接口,只需将任意服务引用强制转型为echoservice,即可使用。","远程服务引用"],"demos/上下文信息.html":["(1)","(2)","...","//","4.20","=","applic","boolean","class","clientip","implement","isconsumersid","isprovidersid","public","rpccontext.getcontext().getremotehost();","rpccontext.getcontext().geturl().getparameter(\"application\");","rpccontext.getcontext().isconsumerside();","rpccontext.getcontext().isproviderside();","rpccontext是一个threadlocal的临时状态记录器,当接收到rpc请求,或发起rpc请求时,rpccontext的状态都会变化。","serverip","string","void","xxx()","xxxservic","xxxservice.xxx();","xxxserviceimpl","yyyservice.yyy();","{","}","上下文中存放的是当前调用过程中所需的环境信息。","上下文信息","中的“对应url参数”一列。","所有配置信息都将转换为url的参数,参见","服务提供方","服务方法实现","服务消费方","本端是否为提供端,这里会返回true","本端是否为消费端,这里会返回true","此时本端变成消费端,这里会返回fals","比如:a调b,b再调c,则b机器上,在b调c之前,rpccontext记录的是a调b的信息,在b调c之后,rpccontext记录的是b调c的信息。","注意","注意:每发起rpc调用,上下文状态会变化","获取当前服务配置信息,所有配置信息都将转换为url的参数","获取最后一次调用的提供方ip地址","获取调用方ip地址","远程调用","配置项一览表"],"demos/异步调用.html":["//","2.0.6及其以上版本支持","4.22","=","bar","barfutur","barfuture.get();","barservice.findbar(barid);","consumer.xml","foo","foofutur","foofuture.get();","fooservice.findfoo(fooid);","futur","return=\"false\",以减少future对象的创建和管理成本:","rpccontext.getcontext().getfuture();","sent=\"false\"","sent=\"true\"","不等待消息发出,将消息放入io队列,即刻返回。","你也可以设置是否等待消息发出:(异步总是不等待返回)","同理等待bar返回。","基于nio的非阻塞实现并行调用,客户端不需要启动多线程即可完成并行调用多个远程服务,相对多线程开销较小。","如果foo已返回,直接拿到返回值,否则线程wait住,等待foo返回后,线程会被notify唤醒。","如果foo需要5秒返回,bar需要6秒返回,实际只需等6秒,即可获取到foo和bar,进行接下来的处理。","如果你只是想异步,完全忽略返回值,可以配置","异步调用","拿到调用的future引用,当结果返回后,会被通知和设置到此future。","此时findfoo和findbar的请求同时在执行,客户端不需要启动多线程来支持并行,而是借助nio的非阻塞完成。","此调用会立即返回null","等待消息发出,消息发送失败将抛出异常。","调用代码:","配置声明:"],"demos/本地调用.html":["2.2.0","4.23","dubbo","injvm","injvm:","injvm=\"true\"","从","优先使用","协议:","定义","开始,每个服务默认都会在本地暴露。在引用服务的时候,默认优先引用本地服务。如果希望引用远程服务可以使用一下配置强制引用远程服务。","或","本地调用","本地调用,使用了injvm协议,是一个伪协议,它不开启端口,不发起远程调用,只在jvm内直接关联,但执行dubbo的filter链。","注意:服务暴露与服务引用都需要声明","自动暴露、引用本地服务","设置服务协议:","设置默认协议:"],"demos/参数回调.html":["\"","\"changed:","(1)","(2)","(3)","(callbackservice)","(throwabl","+","//","2.0.6及其以上版本支持代码参见:https://github.com/alibaba/dubbo/tree/master/dubbo","4.24",":","=",">","addlistener(str","callbacklisten","callbacklistener(){","callbacklistener.java","callbackservic","callbackservice.addlistener(\"http://10.20.160.198/wiki/display/dubbo/foo.bar\",","callbackservice.java","callbackserviceimpl","callbackserviceimpl()","callbackserviceimpl.java","callbackservicetest.java","catch","changed(str","class","classpathxmlapplicationcontext","classpathxmlapplicationcontext(\"classpath:consumer.xml\");","com.callback.callbacklistener;","com.callback.callbackservice;","com.callback.impl;","com.callback;","concurrenthashmap();","consumer.xml","context","context.getbean(\"callbackservice\");","context.start();","date());","dd","entri","entry.getvalue().changed(getchanged(entry.getkey()));","examples/src/main/java/com/alibaba/dubbo/examples/callback","final","for(map.entri","getchanged(str","hh:mm:ss\").format(new","implement","import","interfac","java.text.simpledateformat;","java.util.concurrent.concurrenthashmap;","java.util.date;","java.util.map;","key)","key,","listen","listener)","listener);","listener.changed(getchanged(key));","listeners.entryset()){","listeners.put(key,","listeners.remove(entry.getkey());","map","mm","msg)","msg);","new","packag","privat","public","return","run()","runnable()","simpledateformat(\"yyyi","string","system.out.println(\"callback1:\"","t","t)","t.printstacktrace();","t.setdaemon(true);","t.start();","test","test/dubbo","thread","thread(new","thread.sleep(5000);","tri","void","while(true)","{","}","});","共享服务接口","参数回调","参数回调方式与调用本地callback或listener相同,只需要在spring的配置文件中声明哪个参数是callback类型即可,dubbo将基于长连接生成反向代理,这样就可以从服务器端调用客户端逻辑。","发送变更通知","定时触发变更通知","服务接口示例","服务提供者","服务提供者接口实现示例","服务提供者配置示例","服务消费者","服务消费者调用示例","服务消费者配置示例","防御容错"],"demos/事件通知.html":["\"charles`son\",","(1)","(2)","(3)","(4)","(5)","(6)","(idemoservice)","(int","(nofifyimpl)","+","//for","0;","2;","4);","4.25","=","assert.assertequals(null,","async=true,表示结果是否马上返回.","callback与async功能正交分解:","case","class","consumer.xml","context.getbean(\"democallback\");","context.getbean(\"demoservice\");","demoservic","demoservice.get(requestid);","demoserviceimpl.java","error","errors.put(id,","ex);","ex,","get(int","hashmap();","id)","id);","idemoservic","idemoservice.java","implement","int","integ","interfac","map","msg);","msg,","new","nofifyimpl","normaldemoservic","notifi","notify.java","notifyimpl","notifyimpl.java","onreturn","onreturn(person","onreturn,","onreturn=\"xxx\"","onthrow(throw","onthrow三个事件,可以配置当事件发生时,通知哪个类的哪个方法。","person","person(id,","provider.xml","public","requestid","ret","ret);","ret.put(id,","return","system.out.println(\"onreturn:\"","test","test.java","test:只是用来说明callback正常被调用,业务具体实现自行决定.","void","{","}","事件通知","同步回调模式:async=fals","同步无回调","在调用之前,调用之后,出现异常时,会触发oninvoke,","异步回调模式:async=tru","异步无回调","支持版本:2.0.7之后","服务提供者与消费者共享服务接口","服务提供者实现","服务提供者配置","服务消费者callback接口及实现","组合情况:(async=fals","表示是否需要回调.","默认)",":async=fals",":async=tru"],"demos/本地存根.html":["\"容错数据\";","(barservic","(except","//","4.26","=","api.jar:","barservic","barservice)","barservice.sayhello(name);","barservice;","barservicestub","catch","class","com.foo.barservic","com.foo.barservicestub","com.foo;","e)","final","implement","name)","packag","privat","public","return","sayhello(str","string","stub必须有可传入proxy的构造函数。","this.barservic","tri","{","}","你可以在客户端做threadlocal本地缓存,或预先验证参数是否合法,等等","你可以容错,可以做任何aop拦截事项","在api旁边放一个stub实现,它实现barservice接口,并有一个传入远程barservice实例的构造函数","或","本地存根","构造函数传入真正的远程代理对象","此代码在客户端执行","远程服务后,客户端通常只剩下接口,而实现全在服务器端,但提供方有些时候想在客户端也执行部分逻辑,比如:做threadlocal缓存,提前验证参数,调用失败后伪造容错数据等等,此时就需要在api中带上stub,客户端生成proxy实例,会把proxy通过构造函数传给stub,然后把stub暴露组给用户,stub可以决定要不要去调proxy。"],"demos/本地伪装.html":["\"容错数据\";","(rpcexcept","//","4.27","=","api.jar:","barservic","barservicemock","catch","catch捕获异常,如:","class","com.foo.barservic","com.foo.barservicemock","com.foo;","e)","implement","logger.error(e);","mock是stub的一个子集,便于服务提供方在客户端执行容错逻辑,因经常需要在出现rpcexception(比如网络失败,超时等)时进行容错,而在出现业务异常(比如登录用户名密码错误)时不需要容错,如果用stub,可能就需要捕获并依赖rpcexception类,而用mock就可以不依赖rpcexception,因为它的约定就是只有出现rpcexception时才执行。","mock通常用于服务降级,比如某验权服务,当服务提供方全部挂掉后,客户端不抛出异常,而是通过mock数据返回授权失败。","name)","null;","null。","offer","offerservice.findoffer(offerid);","packag","public","return","sayhello(str","string","tri","{","}","你可以伪造容错数据,此方法只在出现rpcexception时被执行","在api旁边放一个mock实现,它实现barservice接口,并有一个无参构造函数","如果只是想简单的忽略异常,在2.0.11以上版本可用:","如果服务的消费方经常需要tri","或","本地伪装","请考虑改为mock实现,并在mock中return"],"demos/延迟暴露.html":["!1.","!在spring解析到时,就已经向外暴露了服务,而spring还在接着初始化其它bean。!如果这时有请求进来,并且服务的实现类里有调用applicationcontext.getbean()的用法。","**规避办法","4.28","spring2.x初始化死锁问题","如果不想依赖配置顺序,可以使用","如果你的服务需要warmup时间,比如初始化缓存,等待相关资源就位等,可以使用delay进行延迟暴露。","如果大量使用getbean(),相当于已经把spring退化为工厂模式在用,可以将dubbo的服务隔离单独的spring容器。","如果实在要调getbean(),可以将dubbo的配置放在spring的最后加载。","延迟5秒暴露服务","延迟到spring初始化完成后,再暴露服务:(基于spring的contextrefreshedevent事件触发暴露)","延迟暴露","强烈建议不要在服务的实现类中有applicationcontext.getbean()的调用,全部采用ioc注入的方式使用spring的bean。","而spring初始化线程,因不需要判断bean的存在,直接同步beandefinitionmap进行初始化,并同步singletonobjects写入bean实例缓存。","请求线程的applicationcontext.getbean()调用,先同步singletonobjects判断bean是否存在,不存在就同步beandefinitionmap进行初始化,并再次同步singletonobjects写入bean实例缓存。2.","这样就导致getbean线程,先锁singletonobjects,再锁beandefinitionmap,再次锁singletonobjects。而spring初始化线程,先锁beandefinitionmap,再锁singletonobjects。反向锁导致线程死锁,不能提供服务,启动不了。",",使dubbo在spring容器初始化完后,再暴露服务。"],"demos/并发控制.html":["4.29","balanc","load","优先,参见:配置的覆盖策略。","和","均衡","如果","并发控制","或","都配了actives,","配置服务的客户端的loadbalance属性为leastactive,此loadbalance会调用并发数最小的provider(consumer端并发数)。","限制com.foo.barservice的sayhello方法,服务器端并发执行(或占用线程池线程数)不能超过10个:","限制com.foo.barservice的sayhello方法,每客户端并发执行(或占用连接的请求数)不能超过10个:","限制com.foo.barservice的每个方法,服务器端并发执行(或占用线程池线程数)不能超过10个:","限制com.foo.barservice的每个方法,每客户端并发执行(或占用连接的请求数)不能超过10个:"],"demos/连接控制.html":["4.30","优先,参见:配置的覆盖策略","和","如果","或","连接控制","都配了connections,","限制客户端服务使用连接连接数:(如果是长连接,比如dubbo协议,connections表示该服务对每个提供者建立的长连接数)","限制服务器端接受的连接不能超过10个:(因为连接在server上,所以配置在provider上)"],"demos/延迟连接.html":["4.31","只对使用长连接的dubbo协议生效。","延迟连接","延迟连接,用于减少长连接数,当有调用发起时,再创建长连接。"],"demos/粘滞连接.html":["4.32","参见:延迟连接","粘滞连接","粘滞连接将自动开启延迟连接,以减少长连接数,","粘滞连接用于有状态服务,尽可能让客户端总是向同一提供者发起调用,除非该提供者挂了,再连另一台。"],"demos/令牌验证.html":["4.33","也可在服务级别设置:","令牌验证","可以全局设置开启令牌验证","在注册中心控制权限,以决定要不要下发令牌给消费者","注册中心可灵活改变授权方式,而不需修改或升级提供者","还可在协议级别设置:","防止消费者绕过注册中心访问提供者"],"demos/路由规则.html":["!=","\"));","\"=>\"之前的为消费者匹配条件,所有参数和消费者的url进行对比,当消费者满足匹配条件时,对该消费者执行后面的过滤规则。","\"=>\"之后为提供者地址列表的过滤条件,所有参数和提供者的url进行对比,消费者最终只拿到过滤后的地址列表。","\"script://0.0.0.0/com.foo.barservice?category=routers&dynamic=false&rule=\"","$","$host","(i","(invokers)\")","(暂不支持参数路由)","*","+",",","...","0.0.0.0","0;","10.20.*","10.20.153.10","10.20.153.10,10.20.153.11","10.20.153.11","10.20.153.11\")","172.22.3.*","172.22.3.1*,172.22.3.2*","172.22.3.91","172.22.3.91,172.22.3.92,172.22.3.93","172.22.3.94,172.22.3.95,172.22.3.96","172.22.3.95,172.22.3.96","172.22.3.97,172.22.3.98","2.2.0以上版本支持,","4.34","=","=>","applic","argument","bop","category=rout","com.foo.barservic","condition://","dynamic=fals","enabled=tru","extensionloader.getextensionloader(registryfactory.class).getadaptiveextension();","find*,list*,get*,is*","force=fals","function","groovi","host","host,","java.util.arraylist(invokers.size());","jruby,","kylin","method","new","organ","port","priority=1","registri","registry.register(url.valueof(\"condition://0.0.0.0/com.foo.barservice?category=routers&dynamic=false&rule=\"","registryfactori","registryfactory.getregistry(url.valueof(\"zookeeper://10.20.153.10:2181\"));","result","route(invokers)","rule=url.encode(\"host","runtime=fals","type=javascript","url.encode(\"funct","url.encode(\"http://10.20.160.198/wiki/display/dubbo/host","url本身的字段,如:protocol,","var","{","}","不等号","为重要应用提供额外的机器:","以及url上的所有参数,如:application,","以星号","以美元符","以逗号","值支持:","其中:","分隔多个值,如:host","前后台分离:","参数支持:","参数设置脚本类型,缺省为javascript。","向注册中心写入路由规则:(通常由监控中心或治理中心的页面完成)","基于条件表达式的路由规则,如:host","基于脚本引擎的路由规则,如:","如果匹配条件为空,表示对所有消费方应用,如:=>","如果用了参数路由,必须设为true,需要注意设置会影响调用的性能,可不填,缺省为flase。","如果过滤条件为空,表示禁止访问,如:host","开头,表示引用消费者参数,如:host","当路由结果为空时,是否强制执行,如果不强制执行,路由结果为空的路由规则将自动失效,可不填,缺省为flase。","排除预发布机:","提供者与消费者部署在同集群内,本机只访问本机的服务:","支持jdk脚本引擎的所有脚本,比如:javascript,","是否在每次调用时执行路由规则,否则只在提供者地址列表变更时预先执行并缓存结果,调用时直接从缓存中获取路由结果。","服务寄宿在应用上,只暴露一部分的机器,防止整个集群挂掉:","服务调用信息,如:method,","条件支持:","条件路由规则","注意:一个服务只能有一条白名单规则,否则两条规则交叉,就都被筛选掉了)","白名单:","示例:","等","等号","等,通过","结尾,表示通配,如:host","脚本没有沙箱约束,可执行任意代码,存在后门风险","脚本路由规则","表示\"不匹配\",如:host","表示\"匹配\",如:host","表示只对指定服务生效,必填。","表示对所有ip地址生效,如果只想对某个ip的生效,请填入具体ip,必填。","表示该数据为动态配置类型,必填。","表示该数据为持久数据,当注册方退出时,数据依然保存在注册中心,必填。","表示路由规则的内容,必填。","表示路由规则的类型,支持条件路由规则和脚本路由规则,可扩展,必填。","表达式:","覆盖规则是否生效,可不填,缺省生效。","规则:","读写分离:","路由规则","路由规则扩展点:路由扩展","路由规则的优先级,用于排序,优先级越大越靠前执行,可不填,缺省为0。","隔离不同机房网段:","黑名单:"],"demos/配置规则.html":["0.0.0.0","2.2.0","4.35","=","application=foo","category=configur","com.foo.barservic","dynamic=fals","enabled=tru","extensionloader.getextensionloader(registryfactory.class).getadaptiveextension();","override://","override://0.0.0.0/com.foo.barservice?category=configurators&dynamic=false&application=foo&mock=force:return+nul","override://10.20.153.10/com.foo.barservice?category=configurators&dynamic=false&disbaled=tru","override://10.20.153.10/com.foo.barservice?category=configurators&dynamic=false&loadbalance=leastact","override://10.20.153.10/com.foo.barservice?category=configurators&dynamic=false&weight=200","registri","registry.register(url.valueof(\"override://0.0.0.0/com.foo.barservice?category=configurators&dynamic=false&application=foo&timeout=1000\"));","registryfactori","registryfactory.getregistry(url.valueof(\"zookeeper://10.20.153.10:2181\"));","timeout=1000","以上版本支持","其中:","向注册中心写入动态配置覆盖规则:(通常由监控中心或治理中心的页面完成)","服务降级:(通常用于临时屏蔽某个出错的非关键服务)","示例:","禁用提供者:(通常用于临时踢除某台提供者机器,相似的,禁止消费者访问请使用路由规则)","表示只对指定应用生效,可不填,表示对所有应用生效。","表示只对指定服务生效,必填。","表示对所有ip地址生效,如果只想覆盖某个ip的数据,请填入具体ip,必填。","表示将满足以上条件的timeout参数的值覆盖为1000。如果想覆盖其它参数,直接加在override的url参数上。","表示数据采用覆盖方式,支持override和absent,可扩展,必填。","表示该数据为动态配置类型,必填。","表示该数据为持久数据,当注册方退出时,数据依然保存在注册中心,必填。","覆盖规则是否生效,可不填,缺省生效。","调整权重:(通常用于容量评估,缺省权重为100)","调整负载均衡策略:(缺省负载均衡策略为random)","配置规则"],"demos/服务降级.html":["2.2.0以上版本支持,","4.36","=","extensionloader.getextensionloader(registryfactory.class).getadaptiveextension();","mock=fail:return+nul","mock=force:return+nul","registri","registry.register(url.valueof(\"override://0.0.0.0/com.foo.barservice?category=configurators&dynamic=false&application=foo&mock=force:return+null\"));","registryfactori","registryfactory.getregistry(url.valueof(\"zookeeper://10.20.153.10:2181\"));","其中:","参见:配置规则","向注册中心写入动态配置覆盖规则:(通过由监控中心或治理中心的页面完成)","容忍不重要服务不稳定时对调用方的影响。","屏蔽不重要服务不可用时对调用方的影响。","服务降级","表示消费方对该服务的方法调用在失败后,再返回null值,不抛异常。","表示消费方对该服务的方法调用都直接返回null值,不发起远程调用。","还可以改为:"],"demos/优雅停机.html":["4.37","9","dubbo是通过jdk的shutdownhook来完成优雅停机的,所以如果用户使用\"kil","pid\"时,才会执行。","pid\"等强制关闭指令,是不会执行优雅停机的,只有通过\"kil","protocolconfig.destroyall();","优雅停机","停止时,不再发起新的调用请求,所有新的调用在客户端即报错。","停止时,先标记为不接收新请求,新请求过来时直接报错,让客户端重试其它机器。","原理","如果shutdownhook不能生效,可以自行调用:","服务提供方","服务消费方","然后,检测有没有请求的响应还没有返回,等待响应返回,除非超时,则强制关闭。","然后,检测线程池中的线程是否正在运行,如果有,等待所有线程执行完成,除非超时,则强制关闭。","设置优雅停机超时时间,缺省超时时间是10秒:(超时则强制关闭)"],"demos/主机绑定.html":["1099","11211","205.182.23.201","20880","4.38","6379","80","dubbo.protocol.dubbo.port=20880","dubbo.protocol.host=205.182.23.201","dubbo:","hessian:","http:","memcached:","redis:","rmi:","test1","webservice:","主机端口配置:","主机绑定","公网ip,比如:","可以在/etc/hosts中加入:机器名","在dubbo.xml中加入主机地址的配置:","如果是127.*等loopback地址,则扫描各网卡,获取网卡ip。","或在dubbo.properties中加入主机地址的配置:","注册的地址如果获取不正确,比如需要注册公网地址,可以:","缺省主机ip查找顺序:","缺省主机端口与协议相关:","通过localhost.getlocalhost()获取本机地址。"],"demos/日志适配.html":["2.2.1以上版本支持","4.39","ddubbo.application.logger=log4j","dubbo.application.logger=log4j","dubbo.properti","dubbo.xml","java","jcl","jdk","log4j","slf4j","可以通过以下方式配置日志输出策略","扩展点:日志适配扩展","日志适配","缺省自动查找:"],"demos/访问日志.html":["4.40","如果你想记录每一次请求信息,可开启访问日志,类似于apache的访问日志。","将访问日志输出到当前应用的log4j日志:","将访问日志输出到指定文件:","此日志量比较大,请注意磁盘容量。","访问日志"],"demos/服务容器.html":["4.41","com.alibaba.dubbo.container.main","contain","ddubbo.container=spring,jetty,log4j","dubbo.container=spring,jetty,log4j","dubbo.jetty.directory=/foo/bar","dubbo.jetty.page=log,status,system","dubbo.jetty.port=8080","dubbo.log4j.file=/foo/bar.log","dubbo.log4j.level=warn","dubbo.log4j.subdirectory=20880","dubbo.properti","d参数或者dubbo.properties中","inf/spr","inf/spring/*.xml","java","jetti","jetty,","log4j","log4j等加载,可通过container扩展点进行扩展,参见:container。配置配在java命令","meta","spring","启动一个内嵌jetty,用于汇报状态。","如:(缺省只加载spring)","容器启动","或:(通过classpath下的dubbo.properties配置传入要加载的容器)","或:(通过jvm启动参数传入要加载的容器)","或:(通过main函数参数传入要加载的容器)","服务容器","服务容器只是一个简单的main方法,并加载一个简单的spring容器,用于暴露服务。","服务容器是一个standalone的启动程序,因为后台服务不需要tomcat或jboss等web容器的功能,如果硬要用web容器去加载服务提供方,增加复杂性,也浪费资源。","服务容器的加载内容可以扩展,内置了spring,","目录下的所有","自动加载","自动配置log4j的配置,在多进程启动时,自动给日志文件按进程分目录。","配置jetty启动端口","配置spring配置加载位置:dubbo.spring.config=classpath*:meta","配置。","配置可通过jetty直接访问的目录,用于存放静态文件","配置日志子目录,用于多进程启动,避免冲突","配置日志文件路径","配置日志级别","配置显示的页面,缺省加载所有页面","配置:"],"demos/ReferenceConfig缓存.html":[");","...","......","//","2.4.0+版本,提供了简单的工具类referenceconfigcache用于缓存referenceconfig实例。","4.42","=","cach","cache.destroy(reference);","cache.get(reference);","cache.get方法中会cach","cache会持有referenceconfig,不要在外部再调用referenceconfig的destroy方法,导致cache内的referenceconfig失效!","config缓存","dubbo","keygener","new","refer","reference.setinterface(xxxservice.class);","reference.setversion(\"1.0.0\");","referenceconfig","referenceconfig();","referenceconfigcach","referenceconfigcache.getcache();","referenceconfigcache.getcache(keygener","referenceconfig实例很重,封装了与注册中心的连接以及与提供者的连接,需要缓存,否则重复生成referenceconfig可能造成性能问题并且会有内存和连接泄漏。api方式编程时,容易忽略此问题。","reference对象,并且调用referenceconfig.get方法启动referenceconfig","xxxservic","xxxservice.sayhello();","使用xxxservice对象","使用方式如下:","可以修改这个策略,在referenceconfigcache.getcache时,传一个keygenerator。详见referenceconfigcache类的方法。","注意!","消除cache中的referenceconfig,销毁referenceconfig并释放对应的资源。","缺省referenceconfigcache把相同服务group、接口、版本的referenceconfig认为是相同,缓存一份。即以服务group、接口、版本为缓存的key。"],"demos/分布式事务.html":["4.43","两阶段提交:","分布式事务","基于jta/xa规范实现。","暂未实现。"],"reference-apiconf/api.html":["&","5","api参考手册","api汇总如下:","com.alibaba.dubbo.common.url","com.alibaba.dubbo.config.annotation.refer","com.alibaba.dubbo.config.annotation.servic","com.alibaba.dubbo.config.applicationconfig","com.alibaba.dubbo.config.argumentconfig","com.alibaba.dubbo.config.consumerconfig","com.alibaba.dubbo.config.methodconfig","com.alibaba.dubbo.config.moduleconfig","com.alibaba.dubbo.config.monitorconfig","com.alibaba.dubbo.config.protocolconfig","com.alibaba.dubbo.config.providerconfig","com.alibaba.dubbo.config.referenceconfig","com.alibaba.dubbo.config.registryconfig","com.alibaba.dubbo.config.serviceconfig","com.alibaba.dubbo.rpc.rpccontext","com.alibaba.dubbo.rpc.rpcexcept","com.alibaba.dubbo.rpc.service.echoservic","com.alibaba.dubbo.rpc.service.genericexcept","com.alibaba.dubbo.rpc.service.genericservic","dubbo中除这里声明以外的接口或类,都是内部接口或扩展接口,普通用户请不要直接依赖,否则升级版本可能出现不兼容。","dubbo的常规功能,都保持零侵入,但有些功能不得不用api侵入才能实现。","上下文api","对方地址","异步调用","服务api","模型api","泛化实现","注解api","详细参见:api配置","详细参见:上下文信息","详细参见:回声测试","详细参见:泛化引用","详细参见:注解配置","配置api","隐式传参"],"reference-xmlconf/introduction.html":["5","config","config为准,列举所有配置项,其它配置方式,请参见相应转换关系:properti","config,annot","config,api","http://code.alibabatech.com/schema/dubbo/dubbo.xsd","protocol://username:password@host:port/path?key=value&key=valu","schema:","schema配置参考手册","url格式:","性能调优:表示该配置项用于调优性能,不同的选项对性能会产生影响。","所有配置最终都将转换为url表示,并由服务提供方生成,经注册中心传递给消费方,各属性对应url的参数,参见配置项一览表中的\"对应url参数\"列。","所有配置项分为三大类,参见下表中的\"作用\"一列。","服务发现:表示该配置项用于服务的注册与发现,目的是让消费方找到提供方。","服务治理:表示该配置项用于治理服务间的关系,或为开发测试提供便利条件。","注意:只有group,interface,version是服务的匹配条件,三者决定是不是同一个服务,其它配置项均为调优和治理参数。","这里以xml"],"reference-xmlconf/dubbo-service.html":["(注意:1.0不支持自定义路径,总是使用接口名,如果有1.0调2.0,配置服务路径可能不兼容)","+","0","0.0.0","1.0.0以上版本","1.0.12以上版本","1.0.14以上版本","1.0.7以上版本","100","1000","1时,表示延迟到spring容器初始化完成时暴露服务","2","2.0.0以上版本","2.0.5以上版本","2.0.7以上版本","2.0.8以上版本","5.1","accesslog","activ","async","boolean","class","class/boolean","cluster","connect","default","delay","deprec","document","dubbo:servic","dynam","execut","exporter.listen","failov","fals","filter","group","int","interfac","javassist","layer","listen","loadbal","local后缀,服务接口客户端本地代理类名,用于在客户端执行本地逻辑,如本地缓存等,该本地代理类的构造函数必须允许传入远程代理对象,构造函数如:publ","mock","mock后缀,服务接口调用失败mock实现类,该mock类必须有一个无参构造函数,与local的区别在于,local总是被执行,而mock只在出现非业务异常(比如超时,网络异常等)时执行,local在远程调用之前执行,mock在远程调用后执行。","object","owner","path","protocol","provid","proxi","random","ref","regist","registri","retri","service.filt","string","string/boolean","stub","timeout","token","true","version","weight","xxxservice)","xxxservicelocal(xxxservic","令牌验证,为空表示不开启,如果为true,表示随机生成动态令牌,否则使用静态令牌,令牌的作用是防止消费者绕过注册中心直接访问,保证注册中心的授权功能有效,如果使用点对点调用,需关闭令牌功能","作用","使用指定的协议暴露服务,在多协议时使用,值为的id属性,多个协议id用逗号分隔","兼容性","可选","向指定注册中心注册,在多个注册中心时使用,值为的id属性,多个注册中心id用逗号分隔,如果不想将该服务注册到任何registry,可将值设为n/a","对应url参数","对每个提供者的最大连接数,rmi、http、hessian等短连接协议表示限制连接数,dubbo等长连接协表示建立的长连接个数","属性","延迟注册服务时间(毫秒)","必填","性能调优","指定provider,值为的id属性","描述","是否必填","是否缺省异步执行,不可靠异步,只是忽略返回值,不阻塞执行线程","服务分组,当一个接口有多个实现,可以用分组区分","服务发现","服务对象实现引用","服务接口名","服务提供方导出服务监听器名称,多个名称用逗号分隔","服务提供方远程调用过程拦截器名称,多个名称用逗号分隔","服务提供者所在的分层。如:biz、dao、intl:web、china:acton。","服务提供者暴露服务配置:配置类:com.alibaba.dubbo.config.serviceconfig","服务提供者每服务每方法最大可并行执行请求数","服务文档url","服务是否动态注册,如果设为false,注册后将显示后disable状态,需人工启用,并且服务提供者停止时,也不会自动取消册,需人工禁用。","服务是否过时,如果设为true,消费方引用时将打印服务过时警告error日志","服务权重","服务治理","服务版本,建议使用两位数字版本,如:1.0,通常在接口不兼容时版本号才需要升级","服务负责人,用于服务治理,请填写负责人公司邮箱前缀","服务路径","标签","每服务消费者每服务每方法最大并发调用数","生成动态代理方式,可选:jdk/javassist","类型","缺使用第一个provider配置","缺省为接口名","缺省值","缺省向所有registry注册","设为true,将向logger中输出访问日志,也可填写访问日志文件路径,直接把访问日志输出到指定文件","设为true,表示使用缺省mock类名,即:接口名","设为true,表示使用缺省代理类名,即:接口名","该协议的服务是否注册到注册中心","负载均衡策略,可选值:random,roundrobin,leastactive,分别表示:随机,轮循,最少活跃调用","远程服务调用超时时间(毫秒)","远程服务调用重试次数,不包括第一次调用,不需要重试请设为0","配置关联","集群方式,可选:failover/failfast/failsafe/failback/fork",",设为"],"reference-xmlconf/dubbo-reference.html":["0","1.0.0以上版本","1.0.5以上版本","1.0.6以上版本","1.0.7以上版本","2.0.0以上版本","2.0.10以上版本","2.0.2以上版本","2.0.5以上版本","2.0.7以上版本","2.2.0以上版本","5.2","activ","async","boolean","cach","check","class","class/boolean","client","cluster","connect","default","dubbo1.0.13及其以上版本支持","dubbo2.0.0以上版本支持","dubbo2.1.0及其以上版本支持","dubbo:refer","failov","fals","filter","gener","group","id","init","int","interfac","invoker.listen","javassist","jcache等","jdk","layer","listen","loadbal","long","mock","owner","protocol","proxi","reference.filt","registri","retri","string","string/boolean","stub","threadlocal,","timeout","url","valid","version","xxxservice)","xxxservicelocal(xxxservic","从指定注册中心注册获取服务列表,在多个注册中心时使用,值为","以调用参数为key,缓存返回结果,可选:lru,","作用","兼容性","只调用指定协议的服务提供方,其它协议忽略。","可选","启动时检查提供者是否存在,true报错,false忽略","客户端传输类型设置,如dubbo协议的netty或mina。","对应url参数","对每个提供者的最大连接数,rmi、http、hessian等短连接协议表示限制连接数,dubbo等长连接协表示建立的长连接个数","属性","必填","性能调优","描述","是否启用jsr303标准注解验证,如果启用,将对方法参数上的注解进行校验","是否在afterpropertiesset()时饥饿初始化引用,否则等到有人注入或引用该实例时再初始化。","是否异步执行,不可靠异步,只是忽略返回值,不阻塞执行线程","是否必填","是否缺省泛化接口,如果为泛化接口,将返回genericservic","服力治理","服务分组,当一个接口有多个实现,可以用分组区分,必需和服务提供方一致","服务发现","服务引用beanid","服务接口名","服务接口客户端本地代理类名,用于在客户端执行本地逻辑,如本地缓存等,该本地代理类的构造函数必须允许传入远程代理对象,构造函数如:public","服务接口调用失败mock实现类名,该mock类必须有一个无参构造函数,与local的区别在于,local总是被执行,而mock只在出现非业务异常(比如超时,网络异常等)时执行,local在远程调用之前执行,mock在远程调用后执行。","服务方法调用超时时间(毫秒)","服务治理","服务消费方引用服务监听器名称,多个名称用逗号分隔","服务消费方远程调用过程拦截器名称,多个名称用逗号分隔","服务消费者引用服务配置:配置类:com.alibaba.dubbo.config.referenceconfig","服务版本,与服务提供者的版本一致","服务调用者所在的分层。如:biz、dao、intl:web、china:acton。","每服务消费者每服务每方法最大并发调用数","点对点直连服务提供者地址,将绕过注册中心","的async","的check","的connect","的gener","的id属性,多个注册中心id用逗号分隔","的loadbal","的retri","的timeout","签","类型","缺省使用","缺省值","缺省将从所有注册中心获服务列表后合并结果","调用服务负责人,用于服务治理,请填写负责人公司邮箱前缀","负载均衡策略,可选值:random,roundrobin,leastactive,分别表示:随机,轮循,最少活跃调用","远程服务调用重试次数,不包括第一次调用,不需要重试请设为0","选择动态代理实现策略,可选:javassist,","配置关联","集群方式,可选:failover/failfast/failsafe/failback/fork"],"reference-xmlconf/dubbo-protocol.html":["0","1","100","2.0.10以上版本","2.0.5以上版本","2.0.6以上版本","2.0.8以上版本","2.1.0以上版本","2.4.0+,分配的端口在协议缺省端口的基础上增长,确保端口段可控。","5.3","8","8192","88388608(=8m)","accept","accesslog","boolean","buffer","charset","client","codec","connection等","contextpath","cpu个数+1","direct,","dispatch","dubbo","dubbo:protocol","dubbo协议缺省为al","dubbo协议缺省为hessian2,rmi协议缺省为java,http协议缺省为json","dubbo协议缺省为netti","dubbo协议缺省为netty,http协议缺省为servlet","dubbo协议缺省端口为20880,rmi协议缺省端口为1099,http和hessian协议缺省端口为80","execution,","fix","heartbeat","host","id","int","iothread","io线程池大小(固定大小)","message,","name","path","payload","port","queue","regist","serial","server","string","string/boolean","telnet","thread","threadpool","transport","true","utf","中引用此id,如果id不填,缺省和name属性值一样,重复则在name后加序号。","作用","兼容性","协议beanid,可以在","协议名称","协议序列化方式,当协议支持多种序列化方式时使用,比如:dubbo协议的dubbo,hessian2,java,compactedjava,以及http协议的json等","协议的客户端实现类型,比如:dubbo协议的mina,netty等","协议的服务器端实现类型,比如:dubbo协议的mina,netty等,http协议的jetty,servlet等","协议的服务端和客户端实现类型,比如:dubbo协议的mina,netty等,可以分拆为server和client配置","协议的消息派发方式,用于指定线程模型,比如:dubbo协议的all,","协议编码方式","可选","如果配置为","对应url参数","属性","序列化编码","建议不要配置,让dubbo自动获取本机ip","心跳间隔,对于长连接,当物理层断开时,比如拔网线,tcp的fin消息来不及发送,对方收不到断开事件,此时需要心跳来帮助检查连接是否已断开","必填","性能调优","或者","所支持的telnet命令,多个命令用逗号分隔","描述","提供者上下文路径,为服务path的前缀","是否必填","服务主机名,多网卡选择或指定vip及域名时使用,为空则自动查找本机ip,","服务发现","服务提供方最大可接受连接数","服务提供者协议配置:配置类:com.alibaba.dubbo.config.protocolconfig说明:如果需要支持多协议,可以声明多个|标签,并在|中通过protocol属性指定使用的协议。","服务治理","服务端口","服务线程池大小(固定大小)","标签","没有配置port,则会分配一个没有被占用的端口。dubbo","类型","线程池类型,可选:fixed/cach","线程池队列大小,当线程池满时,排队等待执行的队列大小,建议不要设置,当线程程池时应立即失败,重试其它服务提供机器,而不是排队,除非有特殊需求。","缺省为空串","缺省值","网络读写缓冲区大小","自动查找本机ip","设为true,将向logger中输出访问日志,也可填写访问日志文件路径,直接把访问日志输出到指定文件","该协议的服务是否注册到注册中心","请求及响应数据包大小限制,单位:字节","配置关联"],"reference-xmlconf/dubbo-registry.html":["0","1.0.16以上版本","2.0.0以上版本","2.0.5以上版本","2.1.0以上版本","5.4","5000","60000","9090","address","boolean","check","dubbo","dubbo:registri","dynam","file","http,","id","int","local三种协议,分别表示,dubbo地址,http地址,本地注册中心","netti","password","port","protocol","regist","registry.fil","registry.sess","registry.timeout","registry.transport","registry.wait","session","string","subscrib","timeout","transport","true","usernam","wait","中引用此id","作用","使用文件缓存注册中心地址列表及服务提供者列表,应用重启时将基于此文件恢复,注意:两个注册中心不能使用同一文件存储","停止时等待通知完成时间(毫秒)","兼容性","可选","对应url参数","属性","必填","性能调优","或","描述","是否向此注册中心注册服务,如果设为false,将只订阅,不注册","是否向此注册中心订阅服务,如果设为false,将只注册,不订阅","是否必填","服务发现","服务是否动态注册,如果设为false,注册后将显示后disable状态,需人工启用,并且服务提供者停止时,也不会自动取消册,需人工禁用。","服务治理","标签","注册中心不存在时,是否报错","注册中心会话超时时间(毫秒),用于检测提供者非正常断线后的脏数据,比如用心跳检测的实现,此时间就是心跳间隔,不同注册中心实现不一样。","注册中心引用beanid,可以在","注册中心服务器地址,如果地址没有端口缺省为9090,同一集群内的多个地址用逗号分隔,如:ip:port,ip:port,不同集群的注册中心,请配置多个","注册中心缺省端口,当address没有带端口时使用此端口做为缺省值","注册中心请求超时时间(毫秒)","注册中心配置:配置类:com.alibaba.dubbo.config.registryconfig说明:如果有多个不同的注册中心,可以声明多个|标签,并在|或|的registry属性指定使用的注册中心。","注同中心地址协议,支持dubbo,","登录注册中心密码,如果注册中心不需要验证可不填","登录注册中心用户名,如果注册中心不需要验证可不填","类型","缺省值","网络传输方式,可选mina,netti","配置关联"],"reference-xmlconf/dubbo-monitor.html":["1.0.16以上版本","2.0.9以上版本","5.5",">","address","dubbo","dubbo:monitor","n/a","protocol","string","作用","兼容性","可选","对应url参数","属性","描述","是否必填","服务治理","标签","监控中心协议,如果为protocol=\"registry\",表示从注册中心发现监控中心地址,否则直连监控中心。","监控中心配置:配置类:com.alibaba.dubbo.config.monitorconfig","直连监控中心服务器地址,address=\"10.20.130.230:12080\"","类型","缺省值"],"reference-xmlconf/dubbo-application.html":["1.0.16以上版本","2.0.0以上版本","2.0.5以上版本","2.0.7以上版本","2.1.0以上版本","2.2.0以上版本","5.6","applic","application.vers","architectur","compil","dubbo:appl","environ","javassist","java字节码编译器,用于动态类的生成,可选:jdk或javassist","logger","name","organ","owner","slf4j","string","version","作用","兼容性","可选","对应url参数","属性","应用信息配置:配置类:com.alibaba.dubbo.config.applicationconfig","应用环境,如:develop/test/product,不同环境使用不同的缺省值,以及作为只用于开发测试功能的限制条件","应用负责人,用于服务治理,请填写负责人公司邮箱前缀","当前应用名称,用于注册中心计算应用间依赖关系,注意:消费者和提供者应用名不要一样,此参数不是匹配条件,你当前项目叫什么名字就填什么,和提供者消费者角色无关,比如:kylin应用调用了morgan应用的服务,则kylin项目配成kylin,morgan项目配成morgan,可能kylin也提供其它服务给别人使用,但kylin项目永远配成kylin,这样注册中心将显示kylin依赖于morgan","当前应用的版本","必填","性能优化","描述","日志输出方式,可选:slf4j,jcl,log4j,jdk","是否必填","服务治理","标签","用于服务分层对应的架构。如,intl、china。不同的架构使用不同的分层。","类型","组织名称(bu或部门),用于注册中心区分服务来源,此配置项建议不要使用autoconfig,直接写死在配置中,比如china,intl,itu,crm,asc,dw,aliexpress等","缺省值"],"reference-xmlconf/dubbo-module.html":["2.2.0以上版本","5.7","dubbo:modul","modul","module.vers","name","organ","owner","string","version","作用","兼容性","可选","对应url参数","属性","当前模块名称,用于注册中心计算模块间依赖关系","当前模块的版本","必填","描述","是否必填","服务治理","标签","模块信息配置:","模块负责人,用于服务治理,请填写负责人公司邮箱前缀","类型","组织名称(bu或部门),用于注册中心区分服务来源,此配置项建议不要使用autoconfig,直接写死在配置中,比如china,intl,itu,crm,asc,dw,aliexpress等","缺省值","配置类:com.alibaba.dubbo.config.moduleconfig"],"reference-xmlconf/dubbo-provider.html":["+","0","0.0.0","1","1.0.16以上版本","100","1000","1时,表示延迟到spring容器初始化完成时暴露服务","2","2.0.0以上版本","2.0.5以上版本","2.0.6以上版本","2.0.7以上版本","5.8","8","8192","88388608(=8m)","accept","accesslog","activ","async","boolean","buffer","charset","client","cluster","codec","connect","contextpath","cpu","default","default.act","default.async","default.clust","default.connect","default.loadbal","default.retri","default.timeout","delay","deprec","document","dubbo","dubbo:provid","dubbo协议缺省为hessian2,rmi协议缺省为java,http协议缺省为json","dubbo协议缺省为netti","dubbo协议缺省为netty,http协议缺省为servlet","dynam","execut","exporter.listen","failov","fals","filter","fix","group","host","id","int","iothread","io线程池,接收网络读写中断,以及序列化和反序列化,不处理业务,业务线程池参见threads配置,此线程池和cpu相关,不建议配置。","javassist","layer","listen","loadbal","local后缀。","mock","mock后缀。","owner","path","payload","protocol","proxi","queue","random","registri","retri","serial","server","service.filt","string","string/boolean","stub","telnet","thread","threadpool","timeout","token","true","utf","version","weight","中引用此id","令牌验证,为空表示不开启,如果为true,表示随机生成动态令牌","作用","兼容性","协议beanid,可以在","协议名称","协议序列化方式,当协议支持多种序列化方式时使用,比如:dubbo协议的dubbo,hessian2,java,compactedjava,以及http协议的json,xml等","协议的客户端实现类型,比如:dubbo协议的mina,netty等","协议的服务器端实现类型,比如:dubbo协议的mina,netty等,http协议的jetty,servlet等","协议编码方式","可选","向指定注册中心注册,在多个注册中心时使用,值为","对应url参数","对每个提供者的最大连接数,rmi、http、hessian等短连接协议表示限制连接数,dubbo等长连接协表示建立的长连接个数","属性","序列化编码","延迟注册服务时间(毫秒)","性能调优","所支持的telnet命令,多个命令用逗号分隔","描述","提供者上下文路径,为服务path的前缀","是否为缺省协议,用于多协议","是否必填","是否缺省异步执行,不可靠异步,只是忽略返回值,不阻塞执行线程","服务主机名,多网卡选择或指定vip及域名时使用,为空则自动查找本机ip,建议不要配置,让dubbo自动获取本机ip","服务分组,当一个接口有多个实现,可以用分组区分","服务发现","服务提供方导出服务监听器名称,多个名称用逗号分隔","服务提供方远程调用过程拦截器名称,多个名称用逗号分隔","服务提供者所在的分层。如:biz、dao、intl:web、china:acton。","服务提供者最大可接受连接数","服务提供者每服务每方法最大可并行执行请求数","服务提供者缺省值配置:配置类:com.alibaba.dubbo.config.providerconfig说明:该标签为|和|标签的缺省值设置。","服务文档url","服务是否动态注册,如果设为false,注册后将显示后disable状态,需人工启用,并且服务提供者停止时,也不会自动取消册,需人工禁用。","服务是否过时,如果设为true,消费方引用时将打印服务过时警告error日志","服务权重","服务治理","服务版本,建议使用两位数字版本,如:1.0,通常在接口不兼容时版本号才需要升级","服务线程池大小(固定大小)","服务负责人,用于服务治理,请填写负责人公司邮箱前缀","标签","每服务消费者每服务每方法最大并发调用数","生成动态代理方式,可选:jdk/javassist","的id属性,多个注册中心id用逗号分隔,如果不想将该服务注册到任何registry,可将值设为n/a","类型","线程池类型,可选:fixed/cach","线程池队列大小,当线程池满时,排队等待执行的队列大小,建议不要设置,当线程程池时应立即失败,重试其它服务提供机器,而不是排队,除非有特殊需求。","缺省为空串","缺省值","缺省向所有registry注册","网络读写缓冲区大小","自动查找本机ip","设为true,将向logger中输出访问日志,也可填写访问日志文件路径,直接把访问日志输出到指定文件","设为true,表示使用缺省mock类名,即:接口名","设为true,表示使用缺省代理类名,即:接口名","请求及响应数据包大小限制,单位:字节","负载均衡策略,可选值:random,roundrobin,leastactive,分别表示:随机,轮循,最少活跃调用","远程服务调用超时时间(毫秒)","远程服务调用重试次数,不包括第一次调用,不需要重试请设为0","配置关联","集群方式,可选:failover/failfast/failsafe/failback/fork",",设为"],"reference-xmlconf/dubbo-consumer.html":["0","1.0.16以上版本","100","1000","2","2.0.0以上版本","2.0.10以上版本","2.0.5以上版本","2.0.7以上版本","5.9","activ","async","boolean","cach","check","cluster","connect","default.act","default.async","default.clust","default.connect","default.loadbal","default.retri","default.timeout","dubbo2.1.0及其以上版本支持","dubbo:consum","failov","fals","filter","gener","init","int","invoker.listen","javassist","jcache等","layer","listen","loadbal","owner","proxi","random","reference.filt","registri","retri","string","string/boolean","threadlocal,","timeout","true","valid","以调用参数为key,缓存返回结果,可选:lru,","作用","兼容性","可选","向指定注册中心注册,在多个注册中心时使用,值为","启动时检查提供者是否存在,true报错,false忽略","对应url参数","属性","性能调优","描述","是否启用jsr303标准注解验证,如果启用,将对方法参数上的注解进行校验","是否在afterpropertiesset()时饥饿初始化引用,否则等到有人注入或引用该实例时再初始化。","是否必填","是否缺省异步执行,不可靠异步,只是忽略返回值,不阻塞执行线程","是否缺省泛化接口,如果为泛化接口,将返回genericservic","服务治理","服务消费方引用服务监听器名称,多个名称用逗号分隔","服务消费方远程调用过程拦截器名称,多个名称用逗号分隔","服务消费者缺省值配置:配置类:com.alibaba.dubbo.config.consumerconfig说明:该标签为|标签的缺省值设置。","服务调用者所在的分层。如:biz、dao、intl:web、china:acton。","标签","每个服务对每个提供者的最大连接数,rmi、http、hessian等短连接协议支持此配置,dubbo协议长连接不支持此配置","每服务消费者每服务每方法最大并发调用数","生成动态代理方式,可选:jdk/javassist","的id属性,多个注册中心id用逗号分隔,如果不想将该服务注册到任何registry,可将值设为n/a","类型","缺省值","缺省向所有registry注册","调用服务负责人,用于服务治理,请填写负责人公司邮箱前缀","负载均衡策略,可选值:random,roundrobin,leastactive,分别表示:随机,轮循,最少活跃调用","远程服务调用超时时间(毫秒)","远程服务调用重试次数,不包括第一次调用,不需要重试请设为0","配置关联","集群方式,可选:failover/failfast/failsafe/failback/fork"],"reference-xmlconf/dubbo-method.html":[".activ",".async",".cach",".deprec",".execut",".loadbal",".retri",".return",".sent",".sticki",".timeout",".valid","0","1.0.8以上版本","1.0.9以上版本","2.0.0以上版本","2.0.5以上版本","2.0.6以上版本","5.10","activ","async","attribute属性,不在url中体现","boolean","cach","deprec","dubbo2.1.0及其以上版本支持","dubbo:method","execut","fals","int","jcache等","loadbal","name","oninvok","onreturn","onthrow","retri","return","sent","sticki","string","string/boolean","threadlocal,","timeout","true","valid","以调用参数为key,缓存返回结果,可选:lru,","作为","作用","兼容性","可选","子标签时有效","对应url参数","属性","异步调用时,标记sent=true时,表示网络已发出数据","必填","性能调优","描述","方法名","方法执行前拦截","方法执行有异常拦截","方法执行返回后拦截","方法级配置:配置类:com.alibaba.dubbo.config.methodconfig说明:该标签为|或|的子标签,用于控制到方法级,","方法调用是否需要返回值,async设置为true时才生效,如果设置为true,则返回future,或回调onreturn等方法,如果设置为false,则请求发送成功后直接返回nul","方法调用超时时间(毫秒)","是否启用jsr303标准注解验证,如果启用,将对方法参数上的注解进行校验","是否异步执行,不可靠异步,只是忽略返回值,不阻塞执行线程","是否必填","服务方法是否过时,此属性只在","服务治理","标签","标识","每服务每方法最大使用线程数限制","每服务消费者最大并发调用限制","比如:","的async","的retri","类型","缺省为","缺省为的loadbal","缺省为的timeout","缺省值","设置true","该接口上的所有方法使用同一个provider.如果需要更复杂的规则,请使用用路由","负载均衡策略,可选值:random,roundrobin,leastactive,分别表示:随机,轮循,最少活跃调用","远程服务调用重试次数,不包括第一次调用,不需要重试请设为0",",此属性只在"],"reference-xmlconf/dubbo-argument.html":[".retri","/>","2.0.6以上版本","5.11","boolean","callback","callback=\"true\"","dubbo:argu","index","index=\"0\"","int","name=\"findxxx\"","retries=\"2\">","string","timeout=\"3000\"","type","|<dubbo:argu","|<dubbo:method","|<dubbo:method>","与index二选一","作用","兼容性","参数是否为callback接口,如果为callback,服务提供方将生成反向代理,可以从服务提供方反向调用消费方,通常用于事件推送.","可选","对应url参数","属性","必填","描述","方法参数配置:配置类:com.alibaba.dubbo.config.argumentconfig说明:该标签为|的子标签,用于方法参数的特征描述,比如:","方法名","是否必填","服务治理","标签","标识","类型","缺省值","通过参数类型查找参数的index"],"reference-xmlconf/dubbo-parameter.html":["2.0.0以上版本","5.12","dubbo:paramet","key","string","valu","也可以:","作用","兼容性","对应url参数","属性","必填","描述","是否必填","服务治理","标签","比如:","类型","缺省值","路由参数值","路由参数键","选项参数配置:配置类:java.util.map说明:该标签为|或|或|或|或|的子标签,用于配置自定义参数,该配置项将作为扩展点设置自定义参数使用。"],"reference-protocol/introduction.html":["6","协议参考手册","各协议的性能情况,请参见:性能测试报告","性能测试报告","推荐使用dubbo协议"],"reference-protocol/dubbo.html":["(1)","(2)","/","14。如果能接受,可以考虑使用,否则网络将成为瓶颈。","262。单个消费者调用单个服务提供者的tps(每秒处理事务数)最大为:7mbyte","500kbyte","6.1","=",">b","all,","a和b的属性","cach","calendar等接口,只能用jdk自带的实现,因为hessian会做特殊处理,自定义实现类中的属性值都会丢失。","connect","date,","direct,","dispatcher:","dubbo,","dubbo.properti","dubbo.service.protocol=dubbo","dubbo://","dubbo协议缺省每服务每提供者每消费者使用单一长连接,如果数据量较大,可以使用多个连接。","dubbo缺省协议不适合传送大数据量的服务,比如传文件,传视频等,除非请求量很低。","dubbo缺省协议采用单一长连接和nio异步通讯,适合于小数据量大并发的服务调用,以及服务消费者机器数远大于服务提供者机器数的情况。","execution,","fixed,","grizzi","hessian2,","hessian序列化,只传成员属性值和值的类型,不传方法或静态变量,兼容情况:(由吴亚军提供)","java,","json","map,","message,","mina,","netty,","number,","serialid","serialization:","threadpool:","transporter:","|","不抛异常,a多的那","不抛异常,b正常接","不相同","个属性的值,b没有,","为什么不能传大包?","为什么要消费者比提供者个数多?","为什么采用异步单一长连接?","为防止被大量连接撑挂,可在服务提供方限制大接收连接数,以实现服务提供方自我保护。","传输协议:tcp","传输方式:nio异步传输","其他正常","出来的枚举进行传输","参数及返回值不能自定义实现list,","参数及返回值需实现serializable接口","名相同,但类型不相同","因dubbo协议采用单一长连接,假设网络为千兆网卡(1024mbit=128mbyte),根据测试经验数据每条连接最多只能压满7mbyte(不同的环境可能不一样,供参考),理论上1个服务提供者需要20个服务消费者才能压满网卡。","因dubbo协议采用单一长连接,如果每次请求的数据包大小为500kbyte,假设网络为千兆网卡(1024mbit=128mbyte),每条连接最大7mbyte(不同的环境可能不一样,供参考),单个服务提供者的tps(每秒处理事务数)最大为:128mbyt","因为服务的现状大都是服务提供者少,通常只有几台机器,而服务的消费者多,可能整个网站都在访问该服务,比如morgan的提供者只有6台提供者,却有上百台消费者,每天有1.5亿次调用,如果采用常规的hessian服务,服务提供者很容易就被压跨,通过单一连接,保证单一消费者不会压死提供者,长连接,减少连接握手验证等,并使用异步io,复用线程池,防止c10k问题。","多出来的枚举进行传输","多端口:","属性(或者说类b少一种","属性)|","序列化:hessian二进制序列化","总结:会抛异常的情况:枚举值一边多一种,一边少一种,正好使用了差别的那种,或者属性名相同,类型不同","总结:服务器端和客户端对领域对象并不需要完全一致,而是按照最大匹配原则。","情况","或","抛异常","接口增加方法,对客户端无影响,如果该方法不是客户端需要的,客户端不需要重新部署。输入参数和结果集中增加属性,对客户端无影响,如果客户端并不需要新属性,不用重新部署。","收数据","数据通讯","枚举a多一种","枚举(或者说b少一种","枚举),a不使用","枚举),a使用多","正常传输","类a多一种","约束:","结果","缺省协议,使用基于mina1.1.7+hessian3.2.1的tbremoting交互。","表示该服务使用jvm共享长连接。(缺省)","表示该服务使用独立两条长连接。","表示该服务使用独立长连接。","设置服务协议:","设置默认协议:","输入参数和结果集属性名变化,对客户端序列化无影响,但是如果客户端不重新部署,不管输入还是输出,属性名变化的属性值是获取不到的。","连接个数:单连接","连接方式:长连接","适用场景:常规远程服务方法调用","适用范围:传入传出参数数据包较小(建议小于100k),消费者比提供者个数多,单一消费者无法压满提供者,尽量不要用dubbo协议传输大文件或超大字符串。","配置:"],"reference-protocol/rmi.html":["(1)","(2)","(3)","3.2.2版本","4.1版本新版本的common","6.2","collections3","collections4","collections包(dubbo不会依赖这个包,请排查自己的应用有没有使用)的情况下,存在反序列化安全风险。","collections解决了该问题","dsun.rmi.transport.tcp.responsetimeout=3000","dsun.rmi.transport.tcp.responsetimeout=3000,参见下面的rmi配置","dubbo.properti","dubbo.service.protocol=rmi","dubbo配置中的超时时间对rmi无效,需使用java启动参数设置:","http://download.oracle.com/docs/cd/e17409_01/javase/6/docs/technotes/guides/rmi/sunrmiproperties.html","java","java标准的远程调用协议","rmi","rmi//","rmi协议采用jdk标准的java.rmi.*实现,采用阻塞式短连接和jdk标准序列化方式。","rmi配置:","spring","传输协议:tcp","传输方式:同步传输","但如果设置了","兼容性:","协议:","参数及返回值需实现serializable接口","多端口:","如果服务接口没有继承java.rmi.remote接口","如果服务接口继承了java.rmi.remote接口,可以和原生rmi互操作,即:","如果正在使用rmi提供服务给外部访问(公司内网环境应该不会有攻击风险),同时应用里依赖了老的common","定义","将common","序列化:java标准二进制序列化","或者提供方用标准rmi暴露服务,消费方用dubbo的rmi协议调用。","提供者用dubbo的rmi协议暴露服务,消费者直接用标准rmi接口调用,","更多rmi优化参数请查看:","约束:","缺省dubbo将自动生成一个com.xxx.xxxservice$remote的接口,并继承java.rmi.remote接口,并以此接口暴露服务,","设置服务协议:","设置默认协议:","请升级到","请检查应用:","连接个数:多连接","连接方式:短连接","适用场景:常规远程服务方法调用,与原生rmi服务互操作","适用范围:传入传出参数数据包大小混合,消费者与提供者个数差不多,可传文件。","配置:",",将不生成$remote接口,而使用spring的rmiinvocationhandler接口暴露服务,和spring兼容。"],"reference-protocol/hessian.html":["(1)","(2)","4.0.7","6.3","calendar等接口,只能用jdk自带的实现,因为hessian会做特殊处理,自定义实现类中的属性值都会丢失。","com.caucho","date,","hessian","hessian://","hessian协议用于集成hessian的服务,hessian底层采用http通讯,采用servlet暴露服务,dubbo缺省内嵌jetty作为服务器实现。","map,","number,","rpc","servic","传输协议:http","传输方式:同步传输","依赖:","协议:","参数及返回值不能自定义实现list,","参数及返回值需实现serializable接口","可以和原生hessian服务互操作,即:","基于hessian的远程调用协议。","多端口:","定义","序列化:hessian二进制序列化","或者提供方用标准hessian暴露服务,消费方用dubbo的hessian协议调用。","提供者用dubbo的hessian协议暴露服务,消费者直接用标准hessian接口调用,","是caucho开源的一个","框架,其通讯效率高于webservice和java自带的序列化。","直连:","约束:","设置","设置默认协议:","连接个数:多连接","连接方式:短连接","适用场景:页面传输,文件传输,或与原生hessian服务互操作","适用范围:传入传出参数数据包较大,提供者比消费者个数多,提供者压力较大,可传文件。","配置:"],"reference-protocol/http.html":["(1)","(2)","(default)","(recommend)","/*","1","2.3.0以上版本支持","6.4","bridg","com.alibaba.dubbo.remoting.http.servlet.dispatcherservlet","dubbo","dubbo.xml:","h4.","http://","jetti","server:","servlet","web.xml:","传输协议:http","传输方式:同步传输","协议的上下文路径必须与servlet应用的上下文路径相同。","协议的端口必须与servlet容器的端口相同,","参数及返回值需符合bean规范","基于http表单的远程调用协议。参见:http协议使用说明","序列化:表单序列化","注意,如果使用servlet派发请求:","约束:","连接个数:多连接","连接方式:短连接","适用场景:需同时给应用程序和浏览器js使用的服务。","适用范围:传入传出参数数据包大小混合,提供者比消费者个数多,可用浏览器查看,可用表单或url传入参数,暂不支持传文件。","配置:","采用spring的httpinvoker实现"],"reference-protocol/webservice.html":["(1)","(2)","(default)","(recommend)","/*","1","2.3.0以上版本支持。","2.6.1","6.5","bridg","com.alibaba.dubbo.remoting.http.servlet.dispatcherservlet","cxf","cxf是apache开源的一个rpc框架:http://cxf.apache.org,由xfire和celtix合并而来","default","defin","directli","dubbo","frontend","h4.","hessian","http","http实现。","jetti","multi","org.apache.cxf","port:","protocol:","provider:","rt","server:","servic","servlet","set","simpl","simple和transport","transport","web.xml:","webservice://","wsdl:http://10.20.153.10:8080/com.foo.helloworld?wsdl","。","传输协议:http","传输方式:同步传输","依赖:","协议的上下文路径必须与servlet应用的上下文路径相同。","协议的端口必须与servlet容器的端口相同,","参数及返回值需实现serializable接口","参数尽量使用基本类型和pojo。","可以和原生webservice服务互操作,即:","基于cxf的frontend","基于webservice的远程调用协议:","序列化:soap文本序列化","或者提供方用标准webservice暴露服务,消费方用dubbo的webservice协议调用。","提供者用dubbo的webservice协议暴露服务,消费者直接用标准webservice接口调用,","注意,如果使用servlet派发请求:","约束:","连接个数:多连接","连接方式:短连接","适用场景:系统集成,跨语言调用。","配置:"],"reference-protocol/thrift.html":["(不能在协议中传递null值)","0.8.0","2.3.0以上版本支持。","6.6","compiler编译生成相应的java代码,后续版本中会在这方面做一些增强。","dubbo","libthrift","name,mag","number等。使用dubbo","org.apache.thrift","rpc","rpc/dubbo","thrift","thrift/src/test/java/com/alibaba/dubbo/rpc/protocol/thrift/exampl","thrift://","thrift不支持数据类型:null值","thrift协议同样需要使用thrift的idl","依赖:","协议是对","原生协议的扩展,在原生协议的基础上添加了一些额外的头信息,比如servic","当前","所有服务共用一个端口:(与原生thrift不兼容)","支持的","是facebook捐给apache的一个rpc框架","示例:https://github.com/alibaba/dubbo/tree/master/dubbo"],"reference-protocol/memcached.html":["2.3.0以上版本支持。","6.7","=","delete(key)。","extensionloader.getextensionloader(registryfactory.class).getadaptiveextension();","memcach","memcached://","registri","registry.register(url.valueof(\"memcached://10.20.153.11/com.foo.barservice?category=providers&dynamic=false&application=foo&group=member&loadbalance=consistenthash\"));","registryfactori","registryfactory.getregistry(url.valueof(\"zookeeper://10.20.153.10:2181\"));","set(key,","value),","也可以使用自定义接口:","可以通过脚本或监控中心手工填写表单注册memcached服务的地址:","如果方法名和memcached的标准方法名不相同,则需要配置映射关系:(其中\"p:xxx\"为spring的标准p标签)","或者,点对点直连:","方法名建议和memcached的标准方法名相同,即:get(key),","是一个高效的kv缓存服务器。","然后在客户端使用时,不需要感知memcached的地址:"],"reference-protocol/redis.html":["2.3.0以上版本支持。","6.8","=","delet(key)。","extensionloader.getextensionloader(registryfactory.class).getadaptiveextension();","redi","redis://","registri","registry.register(url.valueof(\"redis://10.20.153.11/com.foo.barservice?category=providers&dynamic=false&application=foo&group=member&loadbalance=consistenthash\"));","registryfactori","registryfactory.getregistry(url.valueof(\"zookeeper://10.20.153.10:2181\"));","set(key,","value),","也可以使用自定义接口:","如果方法名和redis的标准方法名不相同,则需要配置映射关系:(其中\"p:xxx\"为spring的标准p标签)","或者,点对点直连:","方法名建议和redis的标准方法名相同,即:get(key),","是一个高效的kv存储服务器。","然后在客户端使用时,不需要感知redis的地址:"],"reference-registry/introduction.html":["7","推荐使用zookeeper注册中心","注册中心参考手册"],"reference-registry/multicast.html":["224.0.0.0","239.255.255.255","7.1","multicast注册中心","不需要启动任何中心节点,只要广播地址一样,就可以互相发现。","为了减少广播量,dubbo缺省使用单播发送提供者地址信息给消费者,如果一个机器上同时启了多个消费者进程,消费者需声明unicast=false,否则只会有一个消费者能收到消息:","或","提供方启动时广播自己的地址。","提供方收到订阅请求时,单播自己的地址给订阅者,如果设置了unicast=false,则广播给订阅者。","消费方启动时广播订阅请求。","消费方收到提供方地址时,连接该地址进行rpc调用。","组播受网络结构限制,只适合小规模应用或开发阶段使用。组播地址段:"],"reference-registry/zookeeper.html":["*","0.1","1.1.10","2.3.3以上版本的zookeeper注册中心客户端。","3.3.3","7.2","com.github.sgroschupf","com.netflix.cur","curat","dubbo.registry.client=cur","dubbo.registry.client=zkcli","framework","hadoop的子项目,是一个树型的目录服务,支持变更推送,适合作为dubbo服务的注册中心,工业强度较高,可用于生产环境,并推荐使用。","org.apache.zookeep","quick","registri","start","zkclient","zookeep","zookeeper://10.20.153.10:2181?client=cur","zookeeper://10.20.153.10:2181?client=zkcli","zookeeper单机配置:","zookeeper安装安装方式参见:","zookeeper安装手册,只需搭一个原生的zookeep","zookeeper注册中心","zookeeper说明zookeep","zookeeper集群配置:","中provider和consumer里的conf/dubbo.properties中的dubbo.registry.addrss的值改为zookeeper://127.0.0.1:2181即可使用。","从2.2.0版本开始缺省为zkclient实现,以提升zookeeper客户端的健状性。zkclient是datameer开源的一个zookeeper客户端实现,开源比较早,参见:https://github.com/sgroschupf/zkcli","从2.3.0版本开始支持可选curator实现。cur","兼容性声明因2.0.8最初设计的zookeeper存储结构不能扩充不同类型的数据,2.0.9版本做了调整,所以不兼容,需全部改用2.0.9版本才行,以后的版本会保持兼容2.0.9。2.2.0版本改为基于zkclient实现,需增加zkclient的依赖包,2.3.0版本增加了基于curator的实现,作为可选实现策略。","可通过","可靠性声明阿里内部并没有采用zookeeper做为注册中心,而是使用自己实现的基于数据库的注册中心,即:zookeeper注册中心并没有在阿里内部长时间运行的可靠性保障,此zookeeper桥接实现只为开源版本提供,其可靠性依赖于zookeeper本身的可靠性。","号通配符","同一zookeeper,分成多组注册中心:","向/dubbo/com.foo.barservice/providers目录下写入自己的url地址。","在provider和consumer中增加zookeeper客户端jar包依赖:","如果需要改为curator实现,请配置:","建议使用dubbo","当会话过期时,能自动恢复注册数据,以及订阅请求。","当提供者出现断电等异常停机时,注册中心能自动删除提供者信息。","当注册中心重启时,能自动恢复注册数据,以及订阅请求。","当设置","或直接下载:http://repo1.maven.org/maven2/com/github/sgroschupf/zkcli","或直接下载:http://repo1.maven.org/maven2/com/netflix/curator/cur","或直接下载:http://repo1.maven.org/maven2/org/apache/zookeeper/zookeep","或:","支持","支持zkclient和curator两种zookeeper客户端实现:","支持以下功能:","时,记录失败注册和订阅请求,后台定时重试。","是apacah","是netflix开源的一个zookeeper客户端实现,比较活跃。","服务器,并将","服务提供者启动时:","服务消费者启动时:","流程说明:","监控中心启动时:","缺省配置:","订阅/dubbo/com.foo.barservice/providers目录下的提供者url地址。并向/dubbo/com.foo.barservice/consumers目录下写入自己的url地址。","订阅/dubbo/com.foo.barservice目录下的所有提供者和消费者url地址。","设置zookeeper登录信息。","设置zookeeper的根节点,不设置将使用无根树。","需依赖:",",可订阅服务的所有分组和所有版本的提供者。"],"reference-registry/redis.html":["7.3","failover:","map中的key为url地址。","map中的value为过期时间,用于判断脏数据,脏数据由监控中心删除。(注意:服务器时间必需同步,否则过期检测会不准确)","quick","redi","redis安装手册,只需搭一个原生的redis服务器,并将","redis注册中心","redis过期数据","registri","replicate:","start","subscribe,","unregister,","unregister事件。","unsubscribe。","中provider和consumer里的conf/dubbo.properties中的dubbo.registry.addrss的值改为redis://127.0.0.1:6379即可使用。","主key为服务名和类型。","从2.1.0版本开始支持","使用redis的key/map结构存储数据","使用redis的publish/subscribe事件通知数据变更","只写入和读取任意一台,失败时重试另一台,需要服务器端自行配置数据同步。","可通过","可靠性声明","在客户端同时写入所有服务器,只读取单台,服务器端不需要同步,注册中心集群增大,性能压力也会更大。","并向channel:/dubbo/com.foo.barservice/providers发送register事件。","并向key:/dubbo/com.foo.barservice/providers下,添加当前消费者的地址。","或","数据结构:","是一个高效的kv存储服务器。安装方式参见:","普通消费者直接订阅指定服务提供者的key,只会收到指定服务的register,","服务提供方启动时,向key:/dubbo/com.foo.barservice/providers下,添加当前提供者的地址。","服务消费方启动时,从channel:/dubbo/com.foo.barservice/providers订阅register和unregister事件。","服务消费方收到register和unregister事件后,从key:/dubbo/com.foo.barservice/providers下获取提供者地址列表。","服务监控中心启动时,从channel:/dubbo/*订阅register和unregister,以及subscribe和unsubsribe事件。","服务监控中心收到register和unregister事件后,从key:/dubbo/com.foo.barservice/providers下获取提供者地址列表。","服务监控中心收到subscribe和unsubsribe事件后,从key:/dubbo/com.foo.barservice/consumers下获取消费者地址列表。","监控中心通过psubscribe功能订阅/dubbo/*,会收到所有服务的所有变更事件。","设置redis中key的前缀,缺省为dubbo。","设置redis集群策略,缺省为failover。","调用过程:","选项:","通过事件的值区分事件类型:register,","通过心跳的方式检测脏数据,服务器时间必须相同,并且对服务器有一定压力。","配置","阿里内部并没有采用redis做为注册中心,而是使用自己实现的基于数据库的注册中心,即:redis注册中心并没有在阿里内部长时间运行的可靠性保障,此redis桥接实现只为开源版本提供,其可靠性依赖于redis本身的可靠性。"],"reference-registry/simple.html":["7.4","dogfooding注册中心本身就是一个普通的dubbo服务,可以减少第三方依赖,使整体通讯方式一致。","export","or:","refer","registri","service:","simpl","simple注册中心","适用性说明此simpleregistryservice只是简单实现,不支持集群,可作为自定义注册中心的参考,但不适合直接用于生产环境。"],"reference-telnet/telnet.html":["\"value\"}):","(chang","(list","(print","/:","1","100:","10:","2.0.6以上版本支持","20880","20880:","8","cd","clear","clear:","connections)","count","debug:","default","dubbo2.0.5以上版本服务提供端口支持telnet命令,","echo","exit","exit:","help","help:","invok","l","l:","localhost","log","logger的日志级别","logger的最后100字符的日志","ls","ls:","methods)","nc","port","ps","ps:","pwd","pwd:","server","servic","service)","statu","status:","status命令所检查的资源也可以扩展,参见:扩展参考手册。","telnet","telnet命令参考手册","telnet命令可以扩展,参见:扩展参考手册。","trace","work","xxx:","xxxmethod","xxxmethod({\"prop\":","xxxmethod:","xxxservic","xxxservice.xxxmethod({\"prop\":","xxxservice:","|","使用如:","修改dubbo","取消缺省服务。","或者:","改变缺省服务,当设置了缺省服务,凡是需要输入服务名作为参数的命令,都可以省略服务参数。","显示telnet命帮助信息。","显示xxx命令的详细帮助信息。","显示当前缺省服务。","显示服务列表。","显示服务地址列表。","显示服务的方法列表。","显示服务的方法详细信息列表。","显示服务端口列表。","显示服务详细信息列表。","显示汇总状态,该状态将汇总所有资源的状态,当全部ok时则显示ok,只要有一个error则显示error,只要有一个warn则显示warn。","显示状态列表。","显示端口上的连接信息。","显示端口上的连接详细信息。","查看file","清除屏幕上的内容。","清除屏幕上的指定行数的内容。","统计10次服务任意方法的调用情况。","统计10次服务方法的调用情况。","统计1次服务任意方法的调用情况。","统计1次服务方法的调用情况。","调用服务的方法(自动查找包含此方法的服务)。","调用服务的方法。","跟踪10次服务任意方法的调用情况。","跟踪10次服务方法的调用情况。","跟踪1次服务任意方法的调用情况。","跟踪1次服务方法的调用情况","退出当前telnet命令行。"],"reference-maven/maven.html":["(尚未发布)","9","dapplication=xxx","dpackage=com.alibaba.xxx","dport=9099","dservice=xxxservice,yyyservic","dubbo:cr","dubbo:registri","dversion=1.0.0","maven插件参考手册","mvn","以缺省的9090端口启动一个简易注册中心","样例:以指定的9099端口启动一个简易注册中心","样例:生成指定接口和版本的服务提供者应用","生成demo服务提供者应用"],"best-practice.html":["10","catch应该加上合适的回滚边界上。","catch起来。tri","disable。","query(map),这样的接口没有明确语义,会给后期维护带来不便。","reference.xml","不建议使用过于抽象的通用接口,如:map","不要只是因为是dubbo调用,而把调用tri","兼容性","分包","各协议的兼容性不同,参见:","如果担心性能问题,在必要时,可以通过override掉异常类的fillinstacktrace()方法为空方法,使其不拷贝栈信息,","如果是业务种类,以后明显会有类型增加,不建议用enum,可以用string代替。","如果是在传入参数中用了enum,并新增了enum值,建议先升级服务提供方,这样服务消费方不会传入新值。","如果是在返回值中用了enum,并新增了enum值,建议先升级服务消费方,这样服务提供方不会返回新值。","如果是完备集,可以用enum,比如:enable,","如果需要,也可以考虑在api包中放置一份spring的引用配置,这样使用方,只需在spring加载过程中引用此配置即可,配置建议放在模块的包目录下,以免冲突,如:com/alibaba/china/xxx/dubbo","对于输入参数的校验逻辑在provider端要有。如有性能上的考虑,服务实现者可以考虑在api包上加上服务stub类来完成检验。","序列化","建议使用两位版本号,因为第三位版本号通常表示兼容升级,只有不兼容时才需要变更服务版本。","建议使用异常汇报错误,而不是返回错误码,异常信息能携带更多信息,以及语义更友好,","建议将服务接口,服务模型,服务异常等均放在api包中,因为服务模型及异常也是api的一部分,同时,这样做也符合分包原则:重用发布等价原则(rep),共同重用原则(crp)","异常","当不兼容时,先升级一半提供者为新版本,再将消费者全部升为新版本,然后将剩下的一半提供者升为新版本。","服务化最佳实践","服务协议","服务参数及返回值不建议使用接口,因为数据模型抽象的意义不大,并且序列化需要接口实现类的元信息,并不能起到隐藏实现的意图。","服务参数及返回值建议使用pojo对象,即通过set,get方法表示属性的对象。","服务参数及返回值都必需是byvalue的,而不能是byref的,消费方和提供方的参数或返回值引用并不是同一个,只是值相同,dubbo不支持引用远程对象。","服务接口增加方法,或服务模型增加字段,可向后兼容,删除方法或删除字段,将不兼容,枚举类型新增字段也不兼容,需通过变更版本号升级。","服务接口尽可能大粒度,每个服务方法应代表一个功能,而不是某功能的一个步骤,否则将面临分布式事务问题,dubbo暂未提供分布式事务支持。","服务接口建议以业务场景为单位划分,并对相近业务做抽象,防止接口数量爆炸","服务提供方不应将dao或sql等异常抛给消费方,应在服务实现中对消费方不关心的异常进行包装,否则可能出现消费方无法反序列化相应异常。","枚举值","查询方法不建议抛出checked异常,否则调用方在查询时将过多的try...catch,并且不能进行有效处理,","每个接口都应定义版本号,为后续不兼容升级提供可能,如:","版本","粒度","调用"],"recommend.html":["((echoservice)memberservice).$echo(“ok”));","1","11","2)","20880","activ","asserteqauls(“ok”,","code的配置值(见dubbo配置参考手册)","consumer端配置","dragoon监控服务在注册中心上的状态:http://dubbo","dubbo.properti","dubbo2中所有的配置项都可以spring配置中,并且可以针对单个服务配置。","dubbo:service、dubbo:reference没有配置负责人,则使用dubbo:application设置的负责人。","dubbo配置参考手册","execut","fail","grep","hard","loadbal","l,其中的20880为服务端口","nc","ok","provid","provider上可以配置的provider端属性有:","provider上尽量多配置consumer端的属性,让provider实现者一开始就思考provider服务特点、服务质量的问题。","provider上配置合理的provider端属性","ps:","reference配置负责人","reg1.hst.xyi.cn.alidc.net:8080/status/com.alibaba.morgan.member.memberservice:1.0.5","retri","service配置负责人","statu","thread","timeout","timeout可以在多处设置,配置项及覆盖规则详见:","wc","|","一个服务提供者并行执行请求上限,即当provider对一个服务的并发调用到上限后,新调用会wait(consumer可能到超时)。在方法上配置(dubbo:method","不要使用dubbo.properties文件配置,推荐使用对应xml配置","中的key名alibaba.intl.commons.dubbo.service.allow.no.provid","中的key名dubbo.service.max.thread.threads.s","中的说明。","优于","优于全局配置,最后是dubbo","作服务的提供者,比服务使用方更清楚服务性能参数,如调用的超时时间,合理的重试次数,等等","使用dragoon的http监控项监控注册中心上服务提供方","使用固定端口暴露服务,而不要使用随机端口","全局配置项值,对应dubbo.properties中的key名dubbo.service.invoke.timeout","其它的参数(retries、loadbalance、actives等)的覆盖策略也一样。","原因如下:","可以在多个配置项设置超时,由上至下覆盖(即上面的优先),示例如下:","在dubbo1中需要在dubbo.properties文件中的配置项,dubbo2中配置示例如下:","在provider上尽量多配置consumer端属性","在provider可以配置的consumer端属性有:","在provider配置后,consumer不配置则会使用provider的配置值,即provider配置可以作为consumer的缺省值。否则,consumer会使用consumer端的全局设置,这对于provider不可控的,并且往往是不合理的。","在方法上配置(dubbo:method","失败重试次数,缺省是2(表示加上第一次调用,会调用3次)","如","如完全不配置使用dubbo缺省值,参见","如果有多个应用进程注意不要使用同一个文件,避免内容被覆盖。","对应","对应dubbo.properties中的key名dubbo.application.nam","对应dubbo.properties中的key名dubbo.registry.address","对应dubbo.properties中的key名dubbo.service.protocol、dubbo.service.server.port","应用名","应用配置负责人、组织","推荐用法","提供者列表缓存文件","提供者端特定接口的配置","提供者端特定方法的配置","文件的路径,应用可以根据需要调整,保证这个文件不会在发布过程中被清除。","方法级配置别优于接口级别,即小scope优先","方法调用超时","有了这项配置后,当应用重启过程中,dubbo注册中心不可用时则应用会从这个缓存文件读取服务提供者列表的信息,进一步保证应用可靠性。","服务提供方,使用dragoon的telnet或shell监控项","服务提供者列表","服务提供者协议、服务的监听端口","服务消费方,通过将服务强制转型为echoservice,并调用$echo()测试该服务的提供者是可用","服务线程池大小","注册中心地址","注册中心的列表","注意:","消费者启动时,没有提供者是否抛异常fast","消费者端,最大并发调用限制,即当consumer对一个服务的并发调用到上限后,新调用会wait直到超时。","监控服务提供者端口状态:echo","监控配置","目前有负责人信息和组织信息(用于区分站点)。有问题时便于的找到服务的负责人,至少写两个人以便备份。负责人和组织的信息可以在注册中心的上看到。","确保注册中心上有该服务的存在。","示例:","详细配置说明参见:dubbo配置参考手册","调用超时","负载均衡算法(有多个provider时,如何挑选provider调用),缺省是随机(random)。还可以有轮询(roundrobin)、最不活跃优先(leastactive,指从consumer端并发调用最好的provider,可以减少的反应慢的provider的调用,因为反应更容易累积并发的调用)","这个文件会缓存:","这样在注册中心推送有延迟的情况下,消费者通过缓存列表也能调用到原地址,保证调用成功。","配置","配置上dubbo缓存文件","配置上管理信息","配置方法如下:","配置的覆盖规则:1)",")则并发限制针对方法,在接口上配置(dubbo:service),则并发限制针对服务。"],"capacity-plan.html":["12","以下数据供参考:","使用12台网站标配机器提供服务(8核cpu,8g内存)","使用8台网站标配机器提供服务(8核cpu,8g内存)","使用dubbo的产品授权服务项目","使用dubbo的会员服务项目","容量规划","平均响应时间1.4到2.8毫秒,网络开销约占1.0到1.1毫秒(和数据包大小有关)","平均响应时间2.3到2.5毫秒,网络开销约占1.5到1.6毫秒(和数据包大小有关)","平均负载在1以下(对于8核cpu负载很低)","每天接收3亿次远程调用","每天接收4亿次远程调用"],"benchmark.html":["(demoservice)","13","=","benchmark压缩包,并解压","demoservic","demoservice.sendrequest(\"hello\");","invoke(servicefactori","object","public","return","servicefactory)","servicefactory.get(demoservice.class);","{","}","下载","和服务的api包放到dubbo.benchmark/lib目录下","基准测试工具包","如想测试dubbo的不同版本,直接替换lib下的dubbo的jar包即可。","实现invoke方法,通过servicefactory创建本地接口代理,并实现自己的业务逻辑,如下","实现父类的构造函数","导入自己服务的接口api包和dubbo.benchmark.jar(解压dubbo.benchmark.tar.gz,在lib目录下)","将demo.benchmark.jar","将自己的benchmark工程打成jar包,如demo.benchmark.jar","新建一个benchmark工程,如demo.benchmark","新建一个类,实现abstractclientrunn","运行run.bat(windows)或run.sh(linux)","配置duubo.properti","阅读readme.txt(内容如下,请以压缩包内的为准)"],"perf-test.html":["\"1.6.0_18\"","(build","(dubbo序列化+netty)","(hessian2序列化+mina)","(hessian2序列化+netty)","/dev/sda:","/user","0.6","0.64","0.67","0.79","0.79m","0.8","0.81","0.9","0.9m","1.04","1.15","1.37","1.6.0_18","10.75","10.92","1000","10000","100000","1000000","1011.97","1024","1031.28","10813.5","11.94","11136.02","11426.83","11940","11994","12.22","128","128.el5xen","1293","13.56","13620","14","14402","15.19","15.83","15096","16","16.0","17.51","180","1925.33","1962.7","1966","1k","1k数据","2.0.61","2.0和1.0默认对比百分比","2.0性能不低于1.0,2.0和1.0互调用的性能无明显下降。","2.27ghz","2.6.18","2.9","20.00","20.62","200k","2417.7","2461.79","25","27.49","3","30.8","324.2","3247.1","3349.88","34.12","36.30","362.92","4","4.0.5.ga","4.1","4.82","4096mb","5","5.03","5.1","5.13","50k","52.05","52.68","56.92","569.5","597.9","6.25","628.06","64","6g","7.68","75","8179.08","8192","8919.27","9.61","9.79",":","@","b07)","b13,","bh620","bit","cach","cpu","cpu、内存、网络、磁盘、文件句柄占用平稳。通过","dubbo1","dubbo1(hessian2序列化+mina","dubbo1(hessian2序列化+mina)","dubbo2","dubbo2.0的性能测试结论为通过,从性能、内存占用和稳定性上都有了提高和改进。由其是内存管理由于将mina换成netty,大大减少了1.0版本在高并发大数据下的内存大锯齿。如下图:","dubbo2.0相比较dubbo1.0(默认使用的都是hessian2序列化)性能均有提升(除了50k","dubbo序列化相比hessian2序列化百分比","dubbo的设计目的是为了满足高并发小数据量的rpc调用,在大数据量下的性能表现并不好,建议使用rmi或http协议。","duplex.","e5520","environ","eth0:","full","gb","guide/images/50kres.png","hardwar","hessian","hotspot(tm)","httpd","http(json序列化)","info:","intel(r)","java","java(tm)","jboss","jvm内存运行稳定,无oom,堆内存中无不合理的大对象的占用。通过","kb","keepal","keepalivetimeout","link","maxclient","maxkeepaliverequest","maxrequestsperchild","maxsparethread","mbps,","memori","memory:","minsparethread","mix","mode)","model","name","peth0:","pojo","pojo(嵌套的复杂person对象),不做任何处理,原样返回","processor_count","respons","rmi","runtim","se","server","serverlimit","size","size:","startserv","string","string其余皆通过","string场景","string),详见第五章的性能数据。","system","tecal","threadlimit","threadsperchild","total","tp","tps成功平均值","up","version","vm","x86_64","xeon(r)","xmn256m","xms2g","xmx2g","xss256k","xx:+cmsparallelremarken","xx:+disableexplicitgc","xx:+usecmscompactatfullcollect","xx:+usecmsinitiatingoccupancyonli","xx:+useconcmarksweepgc","xx:+usefastaccessormethod","xx:cmsinitiatingoccupancyfraction=70","xx:largepagesizeinbytes=128m","xx:permsize=128m","上述场景在dubbo1.0\\dubbo2.0(hessian2序列化)\\dubbo2.0(dubbo序列化)\\rmi\\hessian3.2.0\\http(json序列化)进行10分钟的性能测试。","业务线程负载均衡。通过","主要考察序列化和网络io的性能,因此服务端无任何业务逻辑。取10并发是考虑到http协议在高并发下对cpu的使用率较高可能会先打到瓶颈。","传入1k","传入1kstring,不做任何处理,原样返回","传入1kstring,在服务器段循环1w次,每次重新生成一个随机数然后进行拼装。考察业务线程是否能够分配到每个cpu上。","传入200kstring,不做任何处理,原样返回","传入50kstring,不做任何处理,原样返回","关键参数","内存","内核","出于兼容性考虑默认的序列化方式和1.0保持一致使用hessian2,如对性能有更高要求可以使用dubbo序列化,由其是在处理复杂对象时,在大数据量下能获得50%的提升(但此时已不建议使用dubbo协议)。","同时调用1个参数为string(5k)方法,1个参数为person对象的方法,1个参数为map(值为3个person)的方法,持续运行50小时。","响应时间","响应时间成功平均值(ms)","在稳定性场景的基础上,将提供者和消费者布置成均为2台(一台机器2个实例),且string的参数从20byte到200k,每隔10分钟随机变换。","场景","场景名称","场景名称:1k","场景名称:200k","场景名称:50k","场景名称:pojo","存在的问题:在50k数据的时候2.0性能不如1.0,怀疑可能是缓冲区设置的问题,下版本会进一步确认。","实际值","对应指标名称","并发场景(20并发)","性能分析评估","性能对比分析(新旧环境、不同数据量级等)","性能测试场景(10并发)","性能测试报告","整体性能相比1.0有了提升,平均提升10%,使用dubbo2.0新增的dubbo序列化还能获得10%~50%的性能提升,详见下面的性能数据。","无频繁线程锁,线程数平稳。通过","是","是否满足期望(是/否)","期望值范围","期望性能指标(量化)","期望运行状况(非量化,可选)","本次性能测试考察的是dubbo本身的性能,实际使用过程中的性能有待应用来验证。","本次性能测试,测试了dubbo2.0所有支持的协议在不同大小和数据类型下的表现,并与dubbo1.0进行了对比。","机型","测试分析","测试局限性分析(可选)","测试环境","测试目的","测试结果","测试脚本","测试说明","由于dubbo本身的性能占用都在毫秒级,占的基数很小,性能提升可能对应用整体的性能变化不大。","由于邮件篇幅所限没有列出所有的监控图,如需获得可在大力神平台上查询。","硬件部署与参数调整","磁盘","稳定性场景(20并发)","稳定性测试中由于将底层通信框架从mina换成netty,old区对象的增长大大减少,50小时运行,增长不到200m,无fullgc。(可以确认为mina在高并发下的设计缺陷)","网络","软件名称及版本","软件架构","除了50k","高压力场景(20并发)"],"coveragence.html":["(2.0.12)","02","03","15","2012","测试覆盖率报告","统计于"]},"length":88},"tokenStore":{"root":{"0":{"2":{"docs":{"coveragence.html":{"ref":"coveragence.html","tf":0.16666666666666666}}},"3":{"docs":{"coveragence.html":{"ref":"coveragence.html","tf":0.16666666666666666}}},"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.011904761904761904},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.014634146341463415},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.01675977653631285},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.014084507042253521}},".":{"0":{"docs":{},".":{"0":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}},".":{"0":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762},"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}},"docs":{}}},"docs":{}}},"1":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464},"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}},"4":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}},"6":{"4":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"7":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"7":{"9":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.006289308176100629}},"m":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"docs":{}},"8":{"1":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}},".":{"0":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464},"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":0.04}}},"docs":{}}},"9":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}},"m":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"docs":{}},";":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931},"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"perf-test.html":{"ref":"perf-test.html","tf":0.006289308176100629}}},"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}},":":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.014388489208633094}}}},"1":{"1":{"docs":{},".":{"9":{"7":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"docs":{}},"2":{"4":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"3":{"1":{"docs":{},".":{"2":{"8":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"docs":{}},"8":{"1":{"3":{"docs":{},".":{"5":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}}},"docs":{}},"docs":{}},"9":{"9":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.03333333333333333}}},"docs":{}},"docs":{"best-practice.html":{"ref":"best-practice.html","tf":5}},".":{"2":{"0":{"docs":{},".":{"1":{"5":{"3":{"docs":{},".":{"1":{"0":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.02857142857142857}},",":{"1":{"0":{"docs":{},".":{"2":{"0":{"docs":{},".":{"1":{"5":{"3":{"docs":{},".":{"1":{"1":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.014285714285714285}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"1":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.009523809523809525}},"\"":{"docs":{},")":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.009523809523809525}}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{},"*":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}},"docs":{}},"7":{"5":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"9":{"2":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}},":":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.02877697841726619}}}},"1":{"1":{"3":{"6":{"docs":{},".":{"0":{"2":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"2":{"1":{"1":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.03333333333333333}}},"docs":{}},"docs":{}},"4":{"2":{"6":{"docs":{},".":{"8":{"3":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"9":{"4":{"0":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"9":{"4":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.006289308176100629}}},"docs":{}},"docs":{}},"docs":{"recommend.html":{"ref":"recommend.html","tf":5}},".":{"9":{"4":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"2":{"8":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}},".":{"docs":{},"e":{"docs":{},"l":{"5":{"docs":{},"x":{"docs":{},"e":{"docs":{},"n":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}},"docs":{}}}}},"9":{"3":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{"capacity-plan.html":{"ref":"capacity-plan.html","tf":5}},".":{"2":{"2":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"3":{"6":{"2":{"0":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}},"docs":{"benchmark.html":{"ref":"benchmark.html","tf":5}},".":{"5":{"6":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"4":{"4":{"0":{"2":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}},"docs":{"perf-test.html":{"ref":"perf-test.html","tf":5}},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"能":{"docs":{},"接":{"docs":{},"受":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"考":{"docs":{},"虑":{"docs":{},"使":{"docs":{},"用":{"docs":{},",":{"docs":{},"否":{"docs":{},"则":{"docs":{},"网":{"docs":{},"络":{"docs":{},"将":{"docs":{},"成":{"docs":{},"为":{"docs":{},"瓶":{"docs":{},"颈":{"docs":{},"。":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}}}}}}}}}}}}}}}}}}},"5":{"0":{"9":{"6":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}},"docs":{"coveragence.html":{"ref":"coveragence.html","tf":5}},".":{"1":{"9":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"8":{"3":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"6":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.006289308176100629}},".":{"0":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}}},"7":{"2":{"docs":{},".":{"2":{"2":{"docs":{},".":{"3":{"docs":{},".":{"1":{"docs":{},"*":{"docs":{},",":{"1":{"7":{"2":{"docs":{},".":{"2":{"2":{"docs":{},".":{"3":{"docs":{},".":{"2":{"docs":{},"*":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}},"docs":{}}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}}},"9":{"1":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}},",":{"1":{"7":{"2":{"docs":{},".":{"2":{"2":{"docs":{},".":{"3":{"docs":{},".":{"9":{"2":{"docs":{},",":{"1":{"7":{"2":{"docs":{},".":{"2":{"2":{"docs":{},".":{"3":{"docs":{},".":{"9":{"3":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"4":{"docs":{},",":{"1":{"7":{"2":{"docs":{},".":{"2":{"2":{"docs":{},".":{"3":{"docs":{},".":{"9":{"5":{"docs":{},",":{"1":{"7":{"2":{"docs":{},".":{"2":{"2":{"docs":{},".":{"3":{"docs":{},".":{"9":{"6":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.009523809523809525}}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"5":{"docs":{},",":{"1":{"7":{"2":{"docs":{},".":{"2":{"2":{"docs":{},".":{"3":{"docs":{},".":{"9":{"6":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"7":{"docs":{},",":{"1":{"7":{"2":{"docs":{},".":{"2":{"2":{"docs":{},".":{"3":{"docs":{},".":{"9":{"8":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{},"*":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.009523809523809525}}}}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{},".":{"5":{"1":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"8":{"0":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"9":{"2":{"5":{"docs":{},".":{"3":{"3":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"docs":{}},"6":{"2":{"docs":{},".":{"7":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}}},"6":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}},"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358},"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547},"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}},".":{"0":{"4":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{},".":{"0":{"docs":{},".":{"docs":{},"g":{"docs":{},"a":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464},"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.011904761904761904},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.013513513513513514}}}}}}},"1":{"2":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968}}}}}}},"3":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}},"4":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968}}}}}}},"6":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.016129032258064516},"reference-xmlconf/dubbo-monitor.html":{"ref":"reference-xmlconf/dubbo-monitor.html","tf":0.03571428571428571},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.013966480446927373},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.03333333333333333}}}}}}},"docs":{}},"5":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}}},"6":{"docs":{},"及":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{},"支":{"docs":{},"持":{"docs":{"demos/直连提供者.html":{"ref":"demos/直连提供者.html","tf":0.05263157894736842}}}}}}}}},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}}},"7":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}}},"8":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.014084507042253521}}}}}}},"9":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}},"docs":{}}},"1":{"5":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{"preface/background.html":{"ref":"preface/background.html","tf":5}},".":{"1":{"0":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464},"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}},"docs":{}},"7":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}},"8":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}},"docs":{}}},"2":{"docs":{"preface/requirements.html":{"ref":"preface/requirements.html","tf":5}}},"3":{"7":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":5}},".":{"6":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}},"docs":{}}},"4":{"docs":{"preface/usage.html":{"ref":"preface/usage.html","tf":5}},".":{"1":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}},"docs":{}}},"6":{"docs":{},".":{"0":{"docs":{},"_":{"1":{"8":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}},",":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}},"时":{"docs":{},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"延":{"docs":{},"迟":{"docs":{},"到":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"容":{"docs":{},"器":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"完":{"docs":{},"成":{"docs":{},"时":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"服":{"docs":{},"务":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}}}}}}}}}}},"k":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.006289308176100629}},"数":{"docs":{},"据":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.006289308176100629}}}}}},"2":{"0":{"0":{"docs":{},"k":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.006289308176100629}}}},"1":{"2":{"docs":{"coveragence.html":{"ref":"coveragence.html","tf":0.16666666666666666}}},"docs":{}},"5":{"docs":{},".":{"1":{"8":{"2":{"docs":{},".":{"2":{"3":{"docs":{},".":{"2":{"0":{"1":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.03333333333333333}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"8":{"8":{"0":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.03333333333333333},"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.014388489208633094},"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}},":":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.014388489208633094}}}},"docs":{}},"docs":{}},"docs":{},")":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}},".":{"0":{"0":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"6":{"2":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"2":{"4":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{"reference-registry/multicast.html":{"ref":"reference-registry/multicast.html","tf":0.09090909090909091}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}},"3":{"9":{"docs":{},".":{"2":{"5":{"5":{"docs":{},".":{"2":{"5":{"5":{"docs":{},".":{"2":{"5":{"5":{"docs":{"reference-registry/multicast.html":{"ref":"reference-registry/multicast.html","tf":0.09090909090909091}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"4":{"1":{"7":{"docs":{},".":{"7":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}}},"docs":{}},"6":{"1":{"docs":{},".":{"7":{"9":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"5":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"6":{"2":{"docs":{},"。":{"docs":{},"单":{"docs":{},"个":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"调":{"docs":{},"用":{"docs":{},"单":{"docs":{},"个":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"的":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},"(":{"docs":{},"每":{"docs":{},"秒":{"docs":{},"处":{"docs":{},"理":{"docs":{},"事":{"docs":{},"务":{"docs":{},"数":{"docs":{},")":{"docs":{},"最":{"docs":{},"大":{"docs":{},"为":{"docs":{},":":{"7":{"docs":{},"m":{"docs":{},"b":{"docs":{},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"7":{"docs":{},".":{"4":{"9":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}},".":{"0":{"docs":{},".":{"0":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.03968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.036036036036036036},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.07258064516129033},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.029411764705882353},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.013966480446927373},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.013333333333333334},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.014084507042253521},"reference-xmlconf/dubbo-parameter.html":{"ref":"reference-xmlconf/dubbo-parameter.html","tf":0.07692307692307693}}}}}}},"1":{"0":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}},"docs":{}},"2":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}}},"5":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.047619047619047616},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.02252252252252252},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.0975609756097561},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.024193548387096774},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.0893854748603352},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.04666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.02112676056338028}}}}}}},"6":{"1":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{},"及":{"docs":{},"其":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{},"支":{"docs":{},"持":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.021739130434782608}},"代":{"docs":{},"码":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"/":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.04225352112676056},"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.07894736842105263}},"支":{"docs":{},"持":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}},"7":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}},"8":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805}}}}}}},"9":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{"reference-xmlconf/dubbo-monitor.html":{"ref":"reference-xmlconf/dubbo-monitor.html","tf":0.03571428571428571}}}}}}},"docs":{}},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{},"自":{"docs":{},"动":{"docs":{},"加":{"docs":{},"载":{"docs":{},"$":{"docs":{},"{":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"h":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"}":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{"demos/直连提供者.html":{"ref":"demos/直连提供者.html","tf":0.05263157894736842}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"1":{"docs":{},".":{"0":{"docs":{},"默":{"docs":{},"认":{"docs":{},"对":{"docs":{},"比":{"docs":{},"百":{"docs":{},"分":{"docs":{},"比":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.012578616352201259}}}}}}}}}},"docs":{}}},"docs":{}},"性":{"docs":{},"能":{"docs":{},"不":{"docs":{},"低":{"docs":{},"于":{"1":{"docs":{},".":{"0":{"docs":{},",":{"2":{"docs":{},".":{"0":{"docs":{},"和":{"1":{"docs":{},".":{"0":{"docs":{},"互":{"docs":{},"调":{"docs":{},"用":{"docs":{},"的":{"docs":{},"性":{"docs":{},"能":{"docs":{},"无":{"docs":{},"明":{"docs":{},"显":{"docs":{},"下":{"docs":{},"降":{"docs":{},"。":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}},"1":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":5}},".":{"0":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176}},"支":{"docs":{},"持":{"docs":{"demos/结果缓存.html":{"ref":"demos/结果缓存.html","tf":0.058823529411764705}},",":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}},"4":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}},"docs":{}}},"2":{"7":{"docs":{},"g":{"docs":{},"h":{"docs":{},"z":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}},"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":5}},".":{"0":{"docs":{"demos/本地调用.html":{"ref":"demos/本地调用.html","tf":0.0625},"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.029411764705882353},"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.10256410256410256}},"支":{"docs":{},"持":{"docs":{},",":{"docs":{},"总":{"docs":{},"是":{"docs":{},"只":{"docs":{},"调":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"用":{"docs":{},"组":{"docs":{},"的":{"docs":{},"实":{"docs":{},"现":{"docs":{"demos/服务分组.html":{"ref":"demos/服务分组.html","tf":0.2}}}}}}}}}}}}}}},",":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762},"demos/服务降级.html":{"ref":"demos/服务降级.html","tf":0.05}}}}}}}}}},"1":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{},"支":{"docs":{},"持":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.029411764705882353},"demos/日志适配.html":{"ref":"demos/日志适配.html","tf":0.07692307692307693}}}}}}}}},"docs":{}}},"3":{"docs":{},".":{"0":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{},"支":{"docs":{},"持":{"docs":{"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353}},"。":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358},"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":0.04},"reference-protocol/memcached.html":{"ref":"reference-protocol/memcached.html","tf":0.047619047619047616},"reference-protocol/redis.html":{"ref":"reference-protocol/redis.html","tf":0.05}}}}}}}}}},"3":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{},"(":{"docs":{},"推":{"docs":{},"荐":{"docs":{},"使":{"docs":{},"用":{"docs":{},")":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}},"的":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"。":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"4":{"docs":{},".":{"0":{"docs":{},"+":{"docs":{},"版":{"docs":{},"本":{"docs":{},",":{"docs":{},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{},"工":{"docs":{},"具":{"docs":{},"类":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"用":{"docs":{},"于":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.02127659574468085}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"分":{"docs":{},"配":{"docs":{},"的":{"docs":{},"端":{"docs":{},"口":{"docs":{},"在":{"docs":{},"协":{"docs":{},"议":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"端":{"docs":{},"口":{"docs":{},"的":{"docs":{},"基":{"docs":{},"础":{"docs":{},"上":{"docs":{},"增":{"docs":{},"长":{"docs":{},",":{"docs":{},"确":{"docs":{},"保":{"docs":{},"端":{"docs":{},"口":{"docs":{},"段":{"docs":{},"可":{"docs":{},"控":{"docs":{},"。":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"5":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}},"6":{"docs":{},".":{"1":{"8":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.029850746268656716}}},"docs":{}}},"9":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},";":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}},")":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}},"3":{"0":{"docs":{},".":{"8":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}}},"2":{"4":{"7":{"docs":{},".":{"1":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}}},"docs":{},".":{"2":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}}},"docs":{}},"3":{"4":{"9":{"docs":{},".":{"8":{"8":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"4":{"docs":{},".":{"1":{"2":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"6":{"2":{"docs":{},".":{"9":{"2":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"docs":{},".":{"3":{"0":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}},".":{"1":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464},"configuration/xml.html":{"ref":"configuration/xml.html","tf":5}}},"2":{"docs":{"configuration/properties.html":{"ref":"configuration/properties.html","tf":5}},".":{"1":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}},"2":{"docs":{},"版":{"docs":{},"本":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}},"docs":{}}},"3":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":5}},".":{"3":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464},"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}},"docs":{}}},"4":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":5}}},"docs":{}}},"4":{"0":{"9":{"6":{"docs":{},"m":{"docs":{},"b":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}},"docs":{}},"docs":{}},"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}},".":{"0":{"docs":{},".":{"5":{"docs":{},".":{"docs":{},"g":{"docs":{},"a":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}},"7":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464},"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564}}},"docs":{}}},"1":{"0":{"docs":{"demos/多注册中心.html":{"ref":"demos/多注册中心.html","tf":5}}},"1":{"docs":{"demos/服务分组.html":{"ref":"demos/服务分组.html","tf":5}}},"3":{"docs":{"demos/多版本.html":{"ref":"demos/多版本.html","tf":5}}},"4":{"docs":{"demos/分组聚合.html":{"ref":"demos/分组聚合.html","tf":5}}},"5":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":5}}},"6":{"docs":{"demos/结果缓存.html":{"ref":"demos/结果缓存.html","tf":5}}},"7":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":5}}},"8":{"docs":{"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":5}}},"9":{"docs":{"demos/回声测试.html":{"ref":"demos/回声测试.html","tf":5}}},"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":5},"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}},".":{"2":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}},"docs":{}},"版":{"docs":{},"本":{"docs":{},"新":{"docs":{},"版":{"docs":{},"本":{"docs":{},"的":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}}}}}}}}}}}},"2":{"0":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":5}}},"2":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":5}}},"3":{"docs":{"demos/本地调用.html":{"ref":"demos/本地调用.html","tf":5}}},"4":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":5}}},"5":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":5}}},"6":{"docs":{"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":5}}},"7":{"docs":{"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":5}}},"8":{"docs":{"demos/延迟暴露.html":{"ref":"demos/延迟暴露.html","tf":5}}},"9":{"docs":{"demos/并发控制.html":{"ref":"demos/并发控制.html","tf":5}}},"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":5}},".":{"0":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464},"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}},"docs":{}}},"3":{"0":{"docs":{"demos/连接控制.html":{"ref":"demos/连接控制.html","tf":5}}},"1":{"docs":{"demos/延迟连接.html":{"ref":"demos/延迟连接.html","tf":5}}},"2":{"docs":{"demos/粘滞连接.html":{"ref":"demos/粘滞连接.html","tf":5}}},"3":{"docs":{"demos/令牌验证.html":{"ref":"demos/令牌验证.html","tf":5}}},"4":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":5}}},"5":{"docs":{"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":5}}},"6":{"docs":{"demos/服务降级.html":{"ref":"demos/服务降级.html","tf":5}}},"7":{"docs":{"demos/优雅停机.html":{"ref":"demos/优雅停机.html","tf":5}}},"8":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":5}}},"9":{"docs":{"demos/日志适配.html":{"ref":"demos/日志适配.html","tf":5}}},"docs":{"demos/负载均衡.html":{"ref":"demos/负载均衡.html","tf":5}}},"4":{"0":{"docs":{"demos/访问日志.html":{"ref":"demos/访问日志.html","tf":5}}},"1":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":5}}},"2":{"docs":{"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":3.333333333333333}}},"3":{"docs":{"demos/分布式事务.html":{"ref":"demos/分布式事务.html","tf":5}}},"docs":{"demos/线程模型.html":{"ref":"demos/线程模型.html","tf":5}}},"5":{"docs":{"demos/直连提供者.html":{"ref":"demos/直连提供者.html","tf":5}}},"6":{"docs":{"demos/只订阅.html":{"ref":"demos/只订阅.html","tf":5}}},"7":{"docs":{"demos/只注册.html":{"ref":"demos/只注册.html","tf":5}}},"8":{"2":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{"demos/静态服务.html":{"ref":"demos/静态服务.html","tf":5}}},"9":{"docs":{"demos/多协议.html":{"ref":"demos/多协议.html","tf":5}}},"docs":{}},")":{"docs":{},";":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}},"5":{"0":{"0":{"0":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}},"docs":{},"k":{"docs":{},"b":{"docs":{},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.017543859649122806}}}}}}}},"docs":{},"k":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.006289308176100629}}}},"2":{"docs":{},".":{"0":{"5":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"6":{"8":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"6":{"9":{"docs":{},".":{"5":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}}},"docs":{},".":{"9":{"2":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"9":{"7":{"docs":{},".":{"9":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}}},"docs":{}},"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":5},"reference-xmlconf/introduction.html":{"ref":"reference-xmlconf/introduction.html","tf":5},"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}},".":{"0":{"3":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"1":{"0":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":5}}},"1":{"docs":{"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":5}}},"2":{"docs":{"reference-xmlconf/dubbo-parameter.html":{"ref":"reference-xmlconf/dubbo-parameter.html","tf":5}}},"3":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":5},"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"2":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":5}}},"3":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":5}}},"4":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":5}}},"5":{"docs":{"reference-xmlconf/dubbo-monitor.html":{"ref":"reference-xmlconf/dubbo-monitor.html","tf":5}}},"6":{"docs":{"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":5}}},"7":{"docs":{"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":5}}},"8":{"docs":{"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":5}}},"9":{"docs":{"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":5}}},"docs":{}}},"6":{"0":{"0":{"0":{"0":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}},"docs":{}},"docs":{}},"docs":{}},"2":{"8":{"docs":{},".":{"0":{"6":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"docs":{}},"3":{"7":{"9":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.03333333333333333}}},"docs":{}},"docs":{}},"4":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.006289308176100629}}},"docs":{"reference-protocol/introduction.html":{"ref":"reference-protocol/introduction.html","tf":5}},".":{"1":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":5}},".":{"2":{"6":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}},"docs":{}},"docs":{}}},"2":{"5":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":5}}},"3":{"docs":{"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":5}}},"4":{"docs":{"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":5}}},"5":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":5}}},"6":{"docs":{"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":5}}},"7":{"docs":{"reference-protocol/memcached.html":{"ref":"reference-protocol/memcached.html","tf":5}}},"8":{"docs":{"reference-protocol/redis.html":{"ref":"reference-protocol/redis.html","tf":5}}},"docs":{}},"g":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"7":{"1":{"5":{"8":{"9":{"1":{"1":{"6":{"6":{"8":{"5":{"6":{"8":{"0":{"0":{"0":{"3":{"9":{"2":{"docs":{},"l":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"5":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{"reference-registry/introduction.html":{"ref":"reference-registry/introduction.html","tf":5}},".":{"1":{"docs":{"reference-registry/multicast.html":{"ref":"reference-registry/multicast.html","tf":5}}},"2":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":5}}},"3":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":5}}},"4":{"docs":{"reference-registry/simple.html":{"ref":"reference-registry/simple.html","tf":5}}},"6":{"8":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"8":{"0":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.1}}},"1":{"7":{"9":{"docs":{},".":{"0":{"8":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"docs":{}},"9":{"2":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}},"8":{"3":{"8":{"8":{"6":{"0":{"8":{"docs":{},"(":{"docs":{},"=":{"8":{"docs":{},"m":{"docs":{},")":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}},"docs":{}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"9":{"1":{"9":{"docs":{},".":{"2":{"7":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":5}}},"9":{"0":{"9":{"0":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}},"docs":{}},"docs":{}},"docs":{"demos/优雅停机.html":{"ref":"demos/优雅停机.html","tf":0.07142857142857142},"reference-maven/maven.html":{"ref":"reference-maven/maven.html","tf":5}},"]":{"docs":{},"+":{"docs":{},"(":{"docs":{},"?":{"docs":{},":":{"docs":{},"[":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}},")":{"docs":{},"*":{"docs":{},"\\":{"docs":{},"\\":{"docs":{},".":{"docs":{},"[":{"docs":{},"a":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}},".":{"6":{"1":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"7":{"9":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.009009009009009009},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931},"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.027777777777777776},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.013513513513513514},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.03902439024390244},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.03225806451612903},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.036312849162011177},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.02666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.028169014084507043},"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421}},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":10}}}}}}}},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.009009009009009009},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.011363636363636364},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.013793103448275862},"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}},"g":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.027586206896551724}}},"l":{"docs":{},"(":{"docs":{},"r":{"docs":{},")":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}},"f":{"docs":{},"/":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"目":{"docs":{},"录":{"docs":{},"下":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"配":{"docs":{},"置":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}},"/":{"docs":{},"*":{"docs":{},".":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}}}}}}}}}}}},"o":{"docs":{},":":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}},"j":{"docs":{},"v":{"docs":{},"m":{"docs":{"demos/本地调用.html":{"ref":"demos/本地调用.html","tf":0.0625}},":":{"docs":{"demos/本地调用.html":{"ref":"demos/本地调用.html","tf":0.0625}}},"=":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{"demos/本地调用.html":{"ref":"demos/本地调用.html","tf":0.0625}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.013333333333333334}}}},"v":{"docs":{},"o":{"docs":{},"k":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.02158273381294964}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}}}}},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421}},"=":{"docs":{},"\"":{"0":{"docs":{},"\"":{"docs":{"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421}}}},"docs":{}}}}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.05851063829787234},"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.08823529411764706},"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.05405405405405406},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.03409090909090909}}}}},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.029411764705882353},"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818},"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.013793103448275862},"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818},"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}}}}}}}}}},"d":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}},")":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.020689655172413793}},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.020689655172413793}}}},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.020689655172413793}},"e":{"docs":{},".":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.023809523809523808}}}}}}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095}}}}}}}},"线":{"docs":{},"程":{"docs":{},"池":{"docs":{},"大":{"docs":{},"小":{"docs":{},"(":{"docs":{},"固":{"docs":{},"定":{"docs":{},"大":{"docs":{},"小":{"docs":{},")":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805}}}}}}}}}},",":{"docs":{},"接":{"docs":{},"收":{"docs":{},"网":{"docs":{},"络":{"docs":{},"读":{"docs":{},"写":{"docs":{},"中":{"docs":{},"断":{"docs":{},",":{"docs":{},"以":{"docs":{},"及":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},"和":{"docs":{},"反":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},",":{"docs":{},"不":{"docs":{},"处":{"docs":{},"理":{"docs":{},"业":{"docs":{},"务":{"docs":{},",":{"docs":{},"业":{"docs":{},"务":{"docs":{},"线":{"docs":{},"程":{"docs":{},"池":{"docs":{},"参":{"docs":{},"见":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"s":{"docs":{},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"此":{"docs":{},"线":{"docs":{},"程":{"docs":{},"池":{"docs":{},"和":{"docs":{},"c":{"docs":{},"p":{"docs":{},"u":{"docs":{},"相":{"docs":{},"关":{"docs":{},",":{"docs":{},"不":{"docs":{},"建":{"docs":{},"议":{"docs":{},"配":{"docs":{},"置":{"docs":{},"。":{"docs":{"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"如":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}},"果":{"docs":{"demos/并发控制.html":{"ref":"demos/并发控制.html","tf":0.06666666666666667},"demos/连接控制.html":{"ref":"demos/连接控制.html","tf":0.14285714285714285}},"你":{"docs":{},"正":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"作":{"docs":{},"为":{"docs":{},"你":{"docs":{},"业":{"docs":{},"务":{"docs":{},"工":{"docs":{},"程":{"docs":{},"的":{"docs":{},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},"通":{"docs":{},"信":{"docs":{},"框":{"docs":{},"架":{"docs":{},",":{"docs":{},"这":{"docs":{},"将":{"docs":{},"是":{"docs":{},"你":{"docs":{},"的":{"docs":{},"参":{"docs":{},"考":{"docs":{},"手":{"docs":{},"册":{"docs":{"./":{"ref":"./","tf":0.5}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"只":{"docs":{},"是":{"docs":{},"想":{"docs":{},"异":{"docs":{},"步":{"docs":{},",":{"docs":{},"完":{"docs":{},"全":{"docs":{},"忽":{"docs":{},"略":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"配":{"docs":{},"置":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.021739130434782608}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},"需":{"docs":{},"要":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"m":{"docs":{},"u":{"docs":{},"p":{"docs":{},"时":{"docs":{},"间":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"缓":{"docs":{},"存":{"docs":{},",":{"docs":{},"等":{"docs":{},"待":{"docs":{},"相":{"docs":{},"关":{"docs":{},"资":{"docs":{},"源":{"docs":{},"就":{"docs":{},"位":{"docs":{},"等":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{},"进":{"docs":{},"行":{"docs":{},"延":{"docs":{},"迟":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"。":{"docs":{"demos/延迟暴露.html":{"ref":"demos/延迟暴露.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"想":{"docs":{},"记":{"docs":{},"录":{"docs":{},"每":{"docs":{},"一":{"docs":{},"次":{"docs":{},"请":{"docs":{},"求":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"可":{"docs":{},"开":{"docs":{},"启":{"docs":{},"访":{"docs":{},"问":{"docs":{},"日":{"docs":{},"志":{"docs":{},",":{"docs":{},"类":{"docs":{},"似":{"docs":{},"于":{"docs":{},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"的":{"docs":{},"访":{"docs":{},"问":{"docs":{},"日":{"docs":{},"志":{"docs":{},"。":{"docs":{"demos/访问日志.html":{"ref":"demos/访问日志.html","tf":0.25}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"或":{"docs":{},",":{"docs":{},"以":{"docs":{},"及":{"docs":{},",":{"docs":{},"则":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"。":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}},"则":{"docs":{},"换":{"docs":{},"成":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},".":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{},"或":{"docs":{},"g":{"docs":{},"r":{"docs":{},"i":{"docs":{},"z":{"docs":{},"z":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{},"。":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"和":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"的":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"则":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"。":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"o":{"docs":{},"线":{"docs":{},"程":{"docs":{},"处":{"docs":{},"理":{"docs":{},"事":{"docs":{},"件":{"docs":{},",":{"docs":{},"又":{"docs":{},"在":{"docs":{},"事":{"docs":{},"件":{"docs":{},"处":{"docs":{},"理":{"docs":{},"过":{"docs":{},"程":{"docs":{},"中":{"docs":{},"发":{"docs":{},"起":{"docs":{},"新":{"docs":{},"的":{"docs":{},"i":{"docs":{},"o":{"docs":{},"请":{"docs":{},"求":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"在":{"docs":{},"连":{"docs":{},"接":{"docs":{},"事":{"docs":{},"件":{"docs":{},"中":{"docs":{},"发":{"docs":{},"起":{"docs":{},"登":{"docs":{},"录":{"docs":{},"请":{"docs":{},"求":{"docs":{},",":{"docs":{},"会":{"docs":{},"报":{"docs":{},"“":{"docs":{},"可":{"docs":{},"能":{"docs":{},"引":{"docs":{},"发":{"docs":{},"死":{"docs":{},"锁":{"docs":{},"”":{"docs":{},"异":{"docs":{},"常":{"docs":{},",":{"docs":{},"但":{"docs":{},"不":{"docs":{},"会":{"docs":{},"真":{"docs":{},"死":{"docs":{},"锁":{"docs":{},"。":{"docs":{"demos/线程模型.html":{"ref":"demos/线程模型.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"了":{"docs":{},"参":{"docs":{},"数":{"docs":{},"路":{"docs":{},"由":{"docs":{},",":{"docs":{},"必":{"docs":{},"须":{"docs":{},"设":{"docs":{},"为":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},",":{"docs":{},"需":{"docs":{},"要":{"docs":{},"注":{"docs":{},"意":{"docs":{},"设":{"docs":{},"置":{"docs":{},"会":{"docs":{},"影":{"docs":{},"响":{"docs":{},"调":{"docs":{},"用":{"docs":{},"的":{"docs":{},"性":{"docs":{},"能":{"docs":{},",":{"docs":{},"可":{"docs":{},"不":{"docs":{},"填":{"docs":{},",":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"为":{"docs":{},"f":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"。":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"则":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"。":{"docs":{},"可":{"docs":{},"选":{"docs":{},"依":{"docs":{},"赖":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}}}},"有":{"docs":{},"机":{"docs":{},"器":{"docs":{},"正":{"docs":{},"在":{"docs":{},"重":{"docs":{},"启":{"docs":{},",":{"docs":{},"可":{"docs":{},"能":{"docs":{},"会":{"docs":{},"出":{"docs":{},"现":{"docs":{},"调":{"docs":{},"用":{"docs":{},"失":{"docs":{},"败":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}},"多":{"docs":{},"个":{"docs":{},"应":{"docs":{},"用":{"docs":{},"进":{"docs":{},"程":{"docs":{},"注":{"docs":{},"意":{"docs":{},"不":{"docs":{},"要":{"docs":{},"使":{"docs":{},"用":{"docs":{},"同":{"docs":{},"一":{"docs":{},"个":{"docs":{},"文":{"docs":{},"件":{"docs":{},",":{"docs":{},"避":{"docs":{},"免":{"docs":{},"内":{"docs":{},"容":{"docs":{},"被":{"docs":{},"覆":{"docs":{},"盖":{"docs":{},"。":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"级":{"docs":{},"别":{"docs":{},"一":{"docs":{},"样":{"docs":{},",":{"docs":{},"则":{"docs":{},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},"优":{"docs":{},"先":{"docs":{},",":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"次":{"docs":{},"之":{"docs":{},"。":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"根":{"docs":{},"目":{"docs":{},"录":{"docs":{},"下":{"docs":{},"存":{"docs":{},"在":{"docs":{},"多":{"docs":{},"个":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"多":{"docs":{},"个":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{},"包":{"docs":{},"中":{"docs":{},"有":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"会":{"docs":{},"任":{"docs":{},"意":{"docs":{},"加":{"docs":{},"载":{"docs":{},",":{"docs":{},"并":{"docs":{},"打":{"docs":{},"印":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"日":{"docs":{},"志":{"docs":{},",":{"docs":{},"后":{"docs":{},"续":{"docs":{},"可":{"docs":{},"能":{"docs":{},"改":{"docs":{},"为":{"docs":{},"抛":{"docs":{},"异":{"docs":{},"常":{"docs":{},"。":{"docs":{"configuration/properties.html":{"ref":"configuration/properties.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"有":{"docs":{},"多":{"docs":{},"行":{"docs":{},"同":{"docs":{},"名":{"docs":{},"标":{"docs":{},"签":{"docs":{},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"可":{"docs":{},"用":{"docs":{},"i":{"docs":{},"d":{"docs":{},"号":{"docs":{},"区":{"docs":{},"分":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"没":{"docs":{},"有":{"docs":{},"i":{"docs":{},"d":{"docs":{},"号":{"docs":{},"将":{"docs":{},"对":{"docs":{},"所":{"docs":{},"有":{"docs":{},"同":{"docs":{},"名":{"docs":{},"标":{"docs":{},"签":{"docs":{},"生":{"docs":{},"效":{"docs":{},":":{"docs":{"configuration/properties.html":{"ref":"configuration/properties.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"公":{"docs":{},"共":{"docs":{},"配":{"docs":{},"置":{"docs":{},"很":{"docs":{},"简":{"docs":{},"单":{"docs":{},",":{"docs":{},"没":{"docs":{},"有":{"docs":{},"多":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},",":{"docs":{},"多":{"docs":{},"协":{"docs":{},"议":{"docs":{},"等":{"docs":{},"情":{"docs":{},"况":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"想":{"docs":{},"多":{"docs":{},"个":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"容":{"docs":{},"器":{"docs":{},"想":{"docs":{},"共":{"docs":{},"享":{"docs":{},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"作":{"docs":{},"为":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"配":{"docs":{},"置":{"docs":{},"。":{"docs":{"configuration/properties.html":{"ref":"configuration/properties.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"点":{"docs":{},"对":{"docs":{},"点":{"docs":{},"直":{"docs":{},"连":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{},"指":{"docs":{},"定":{"docs":{},"目":{"docs":{},"标":{"docs":{},"地":{"docs":{},"址":{"docs":{},",":{"docs":{},"设":{"docs":{},"置":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"后":{"docs":{},"将":{"docs":{},"绕":{"docs":{},"过":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},",":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"需":{"docs":{},"要":{"docs":{},"饥":{"docs":{},"饿":{"docs":{},"加":{"docs":{},"载":{"docs":{},",":{"docs":{},"即":{"docs":{},"没":{"docs":{},"有":{"docs":{},"人":{"docs":{},"引":{"docs":{},"用":{"docs":{},"也":{"docs":{},"立":{"docs":{},"即":{"docs":{},"生":{"docs":{},"成":{"docs":{},"动":{"docs":{},"态":{"docs":{},"代":{"docs":{},"理":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"配":{"docs":{},"置":{"docs":{},":":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}}}}}}}}}}}}}}}}}}}}}}}}}}}},"改":{"docs":{},"为":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"实":{"docs":{},"现":{"docs":{},",":{"docs":{},"请":{"docs":{},"配":{"docs":{},"置":{"docs":{},":":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"考":{"docs":{},"虑":{"docs":{},"在":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"包":{"docs":{},"中":{"docs":{},"放":{"docs":{},"置":{"docs":{},"一":{"docs":{},"份":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"的":{"docs":{},"引":{"docs":{},"用":{"docs":{},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"这":{"docs":{},"样":{"docs":{},"使":{"docs":{},"用":{"docs":{},"方":{"docs":{},",":{"docs":{},"只":{"docs":{},"需":{"docs":{},"在":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"加":{"docs":{},"载":{"docs":{},"过":{"docs":{},"程":{"docs":{},"中":{"docs":{},"引":{"docs":{},"用":{"docs":{},"此":{"docs":{},"配":{"docs":{},"置":{"docs":{},"即":{"docs":{},"可":{"docs":{},",":{"docs":{},"配":{"docs":{},"置":{"docs":{},"建":{"docs":{},"议":{"docs":{},"放":{"docs":{},"在":{"docs":{},"模":{"docs":{},"块":{"docs":{},"的":{"docs":{},"包":{"docs":{},"目":{"docs":{},"录":{"docs":{},"下":{"docs":{},",":{"docs":{},"以":{"docs":{},"免":{"docs":{},"冲":{"docs":{},"突":{"docs":{},",":{"docs":{},"如":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"/":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"/":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"事":{"docs":{},"件":{"docs":{},"处":{"docs":{},"理":{"docs":{},"的":{"docs":{},"逻":{"docs":{},"辑":{"docs":{},"能":{"docs":{},"迅":{"docs":{},"速":{"docs":{},"完":{"docs":{},"成":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"不":{"docs":{},"会":{"docs":{},"发":{"docs":{},"起":{"docs":{},"新":{"docs":{},"的":{"docs":{},"i":{"docs":{},"o":{"docs":{},"请":{"docs":{},"求":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"只":{"docs":{},"是":{"docs":{},"在":{"docs":{},"内":{"docs":{},"存":{"docs":{},"中":{"docs":{},"记":{"docs":{},"个":{"docs":{},"标":{"docs":{},"识":{"docs":{},",":{"docs":{},"则":{"docs":{},"直":{"docs":{},"接":{"docs":{},"在":{"docs":{},"i":{"docs":{},"o":{"docs":{},"线":{"docs":{},"程":{"docs":{},"上":{"docs":{},"处":{"docs":{},"理":{"docs":{},"更":{"docs":{},"快":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"减":{"docs":{},"少":{"docs":{},"了":{"docs":{},"线":{"docs":{},"程":{"docs":{},"池":{"docs":{},"调":{"docs":{},"度":{"docs":{},"。":{"docs":{"demos/线程模型.html":{"ref":"demos/线程模型.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"1":{"2":{"7":{"docs":{},".":{"docs":{},"*":{"docs":{},"等":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"地":{"docs":{},"址":{"docs":{},",":{"docs":{},"则":{"docs":{},"扫":{"docs":{},"描":{"docs":{},"各":{"docs":{},"网":{"docs":{},"卡":{"docs":{},",":{"docs":{},"获":{"docs":{},"取":{"docs":{},"网":{"docs":{},"卡":{"docs":{},"i":{"docs":{},"p":{"docs":{},"。":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.03333333333333333}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{},"线":{"docs":{},"上":{"docs":{},"需":{"docs":{},"求":{"docs":{},"需":{"docs":{},"要":{"docs":{},"点":{"docs":{},"对":{"docs":{},"点":{"docs":{},",":{"docs":{},"可":{"docs":{},"在":{"docs":{"demos/直连提供者.html":{"ref":"demos/直连提供者.html","tf":0.05263157894736842}}}}}}}}}}}}}},"一":{"docs":{},"个":{"docs":{},"第":{"docs":{},"三":{"docs":{},"方":{"docs":{},"独":{"docs":{},"立":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"d":{"docs":{},"等":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"直":{"docs":{},"接":{"docs":{},"向":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"写":{"docs":{},"入":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"地":{"docs":{},"址":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"正":{"docs":{},"常":{"docs":{},"使":{"docs":{},"用":{"docs":{},":":{"docs":{"demos/静态服务.html":{"ref":"demos/静态服务.html","tf":0.07142857142857142}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"业":{"docs":{},"务":{"docs":{},"种":{"docs":{},"类":{"docs":{},",":{"docs":{},"以":{"docs":{},"后":{"docs":{},"明":{"docs":{},"显":{"docs":{},"会":{"docs":{},"有":{"docs":{},"类":{"docs":{},"型":{"docs":{},"增":{"docs":{},"加":{"docs":{},",":{"docs":{},"不":{"docs":{},"建":{"docs":{},"议":{"docs":{},"用":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"代":{"docs":{},"替":{"docs":{},"。":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"在":{"docs":{},"传":{"docs":{},"入":{"docs":{},"参":{"docs":{},"数":{"docs":{},"中":{"docs":{},"用":{"docs":{},"了":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},",":{"docs":{},"并":{"docs":{},"新":{"docs":{},"增":{"docs":{},"了":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"值":{"docs":{},",":{"docs":{},"建":{"docs":{},"议":{"docs":{},"先":{"docs":{},"升":{"docs":{},"级":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},",":{"docs":{},"这":{"docs":{},"样":{"docs":{},"服":{"docs":{},"务":{"docs":{},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},"不":{"docs":{},"会":{"docs":{},"传":{"docs":{},"入":{"docs":{},"新":{"docs":{},"值":{"docs":{},"。":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"中":{"docs":{},"用":{"docs":{},"了":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},",":{"docs":{},"并":{"docs":{},"新":{"docs":{},"增":{"docs":{},"了":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"值":{"docs":{},",":{"docs":{},"建":{"docs":{},"议":{"docs":{},"先":{"docs":{},"升":{"docs":{},"级":{"docs":{},"服":{"docs":{},"务":{"docs":{},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},",":{"docs":{},"这":{"docs":{},"样":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"不":{"docs":{},"会":{"docs":{},"返":{"docs":{},"回":{"docs":{},"新":{"docs":{},"值":{"docs":{},"。":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"完":{"docs":{},"备":{"docs":{},"集":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},":":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}}}}}}}}}}}},"服":{"docs":{},"务":{"docs":{},"比":{"docs":{},"较":{"docs":{},"多":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"文":{"docs":{},"件":{"docs":{},"映":{"docs":{},"射":{"docs":{},",":{"docs":{},"如":{"docs":{},":":{"docs":{"demos/直连提供者.html":{"ref":"demos/直连提供者.html","tf":0.05263157894736842}}}}}}}}}}}}}}}}},"的":{"docs":{},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},"经":{"docs":{},"常":{"docs":{},"需":{"docs":{},"要":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}}}}}}}}}}}}},"接":{"docs":{},"口":{"docs":{},"没":{"docs":{},"有":{"docs":{},"继":{"docs":{},"承":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},".":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{},"接":{"docs":{},"口":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}},"继":{"docs":{},"承":{"docs":{},"了":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},".":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{},"接":{"docs":{},"口":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"和":{"docs":{},"原":{"docs":{},"生":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"互":{"docs":{},"操":{"docs":{},"作":{"docs":{},",":{"docs":{},"即":{"docs":{},":":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"只":{"docs":{},"是":{"docs":{},"测":{"docs":{},"试":{"docs":{},"环":{"docs":{},"境":{"docs":{},"临":{"docs":{},"时":{"docs":{},"需":{"docs":{},"要":{"docs":{},"连":{"docs":{},"接":{"docs":{},"两":{"docs":{},"个":{"docs":{},"不":{"docs":{},"同":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"竖":{"docs":{},"号":{"docs":{},"分":{"docs":{},"隔":{"docs":{},"多":{"docs":{},"个":{"docs":{},"不":{"docs":{},"同":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"地":{"docs":{},"址":{"docs":{},":":{"docs":{"demos/多注册中心.html":{"ref":"demos/多注册中心.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"想":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{},"忽":{"docs":{},"略":{"docs":{},"异":{"docs":{},"常":{"docs":{},",":{"docs":{},"在":{"2":{"docs":{},".":{"0":{"docs":{},".":{"1":{"1":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{},"可":{"docs":{},"用":{"docs":{},":":{"docs":{"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}},"返":{"docs":{},"回":{"docs":{},"p":{"docs":{},"o":{"docs":{},"j":{"docs":{},"o":{"docs":{},"将":{"docs":{},"自":{"docs":{},"动":{"docs":{},"转":{"docs":{},"成":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"已":{"docs":{},"返":{"docs":{},"回":{"docs":{},",":{"docs":{},"直":{"docs":{},"接":{"docs":{},"拿":{"docs":{},"到":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},",":{"docs":{},"否":{"docs":{},"则":{"docs":{},"线":{"docs":{},"程":{"docs":{},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"住":{"docs":{},",":{"docs":{},"等":{"docs":{},"待":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"返":{"docs":{},"回":{"docs":{},"后":{"docs":{},",":{"docs":{},"线":{"docs":{},"程":{"docs":{},"会":{"docs":{},"被":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"y":{"docs":{},"唤":{"docs":{},"醒":{"docs":{},"。":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.021739130434782608}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"需":{"docs":{},"要":{"5":{"docs":{},"秒":{"docs":{},"返":{"docs":{},"回":{"docs":{},",":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"需":{"docs":{},"要":{"6":{"docs":{},"秒":{"docs":{},"返":{"docs":{},"回":{"docs":{},",":{"docs":{},"实":{"docs":{},"际":{"docs":{},"只":{"docs":{},"需":{"docs":{},"等":{"6":{"docs":{},"秒":{"docs":{},",":{"docs":{},"即":{"docs":{},"可":{"docs":{},"获":{"docs":{},"取":{"docs":{},"到":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"和":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},",":{"docs":{},"进":{"docs":{},"行":{"docs":{},"接":{"docs":{},"下":{"docs":{},"来":{"docs":{},"的":{"docs":{},"处":{"docs":{},"理":{"docs":{},"。":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.021739130434782608}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}},"docs":{}}}}}}}}}}},"docs":{}}}}}},"不":{"docs":{},"想":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"配":{"docs":{},"置":{"docs":{},"顺":{"docs":{},"序":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{"demos/延迟暴露.html":{"ref":"demos/延迟暴露.html","tf":0.06666666666666667}}}}}}}}}}}}}}},"大":{"docs":{},"量":{"docs":{},"使":{"docs":{},"用":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},",":{"docs":{},"相":{"docs":{},"当":{"docs":{},"于":{"docs":{},"已":{"docs":{},"经":{"docs":{},"把":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"退":{"docs":{},"化":{"docs":{},"为":{"docs":{},"工":{"docs":{},"厂":{"docs":{},"模":{"docs":{},"式":{"docs":{},"在":{"docs":{},"用":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"将":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},"隔":{"docs":{},"离":{"docs":{},"单":{"docs":{},"独":{"docs":{},"的":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"容":{"docs":{},"器":{"docs":{},"。":{"docs":{"demos/延迟暴露.html":{"ref":"demos/延迟暴露.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"在":{"docs":{},"要":{"docs":{},"调":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"将":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"的":{"docs":{},"配":{"docs":{},"置":{"docs":{},"放":{"docs":{},"在":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"的":{"docs":{},"最":{"docs":{},"后":{"docs":{},"加":{"docs":{},"载":{"docs":{},"。":{"docs":{"demos/延迟暴露.html":{"ref":"demos/延迟暴露.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"匹":{"docs":{},"配":{"docs":{},"条":{"docs":{},"件":{"docs":{},"为":{"docs":{},"空":{"docs":{},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"对":{"docs":{},"所":{"docs":{},"有":{"docs":{},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},"应":{"docs":{},"用":{"docs":{},",":{"docs":{},"如":{"docs":{},":":{"docs":{},"=":{"docs":{},">":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}}}}}}},"过":{"docs":{},"滤":{"docs":{},"条":{"docs":{},"件":{"docs":{},"为":{"docs":{},"空":{"docs":{},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"禁":{"docs":{},"止":{"docs":{},"访":{"docs":{},"问":{"docs":{},",":{"docs":{},"如":{"docs":{},":":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{},"u":{"docs":{},"t":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"不":{"docs":{},"能":{"docs":{},"生":{"docs":{},"效":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"自":{"docs":{},"行":{"docs":{},"调":{"docs":{},"用":{"docs":{},":":{"docs":{"demos/优雅停机.html":{"ref":"demos/优雅停机.html","tf":0.07142857142857142}}}}}}}}}}}}}}}}}}}}}}}}}},"配":{"docs":{},"置":{"docs":{},"为":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805}}}}},"正":{"docs":{},"在":{"docs":{},"使":{"docs":{},"用":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"提":{"docs":{},"供":{"docs":{},"服":{"docs":{},"务":{"docs":{},"给":{"docs":{},"外":{"docs":{},"部":{"docs":{},"访":{"docs":{},"问":{"docs":{},"(":{"docs":{},"公":{"docs":{},"司":{"docs":{},"内":{"docs":{},"网":{"docs":{},"环":{"docs":{},"境":{"docs":{},"应":{"docs":{},"该":{"docs":{},"不":{"docs":{},"会":{"docs":{},"有":{"docs":{},"攻":{"docs":{},"击":{"docs":{},"风":{"docs":{},"险":{"docs":{},")":{"docs":{},",":{"docs":{},"同":{"docs":{},"时":{"docs":{},"应":{"docs":{},"用":{"docs":{},"里":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"了":{"docs":{},"老":{"docs":{},"的":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"方":{"docs":{},"法":{"docs":{},"名":{"docs":{},"和":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"d":{"docs":{},"的":{"docs":{},"标":{"docs":{},"准":{"docs":{},"方":{"docs":{},"法":{"docs":{},"名":{"docs":{},"不":{"docs":{},"相":{"docs":{},"同":{"docs":{},",":{"docs":{},"则":{"docs":{},"需":{"docs":{},"要":{"docs":{},"配":{"docs":{},"置":{"docs":{},"映":{"docs":{},"射":{"docs":{},"关":{"docs":{},"系":{"docs":{},":":{"docs":{},"(":{"docs":{},"其":{"docs":{},"中":{"docs":{},"\"":{"docs":{},"p":{"docs":{},":":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"\"":{"docs":{},"为":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"的":{"docs":{},"标":{"docs":{},"准":{"docs":{},"p":{"docs":{},"标":{"docs":{},"签":{"docs":{},")":{"docs":{"reference-protocol/memcached.html":{"ref":"reference-protocol/memcached.html","tf":0.047619047619047616}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"的":{"docs":{},"标":{"docs":{},"准":{"docs":{},"方":{"docs":{},"法":{"docs":{},"名":{"docs":{},"不":{"docs":{},"相":{"docs":{},"同":{"docs":{},",":{"docs":{},"则":{"docs":{},"需":{"docs":{},"要":{"docs":{},"配":{"docs":{},"置":{"docs":{},"映":{"docs":{},"射":{"docs":{},"关":{"docs":{},"系":{"docs":{},":":{"docs":{},"(":{"docs":{},"其":{"docs":{},"中":{"docs":{},"\"":{"docs":{},"p":{"docs":{},":":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"\"":{"docs":{},"为":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"的":{"docs":{},"标":{"docs":{},"准":{"docs":{},"p":{"docs":{},"标":{"docs":{},"签":{"docs":{},")":{"docs":{"reference-protocol/redis.html":{"ref":"reference-protocol/redis.html","tf":0.05}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"担":{"docs":{},"心":{"docs":{},"性":{"docs":{},"能":{"docs":{},"问":{"docs":{},"题":{"docs":{},",":{"docs":{},"在":{"docs":{},"必":{"docs":{},"要":{"docs":{},"时":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"掉":{"docs":{},"异":{"docs":{},"常":{"docs":{},"类":{"docs":{},"的":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},"方":{"docs":{},"法":{"docs":{},"为":{"docs":{},"空":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"使":{"docs":{},"其":{"docs":{},"不":{"docs":{},"拷":{"docs":{},"贝":{"docs":{},"栈":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}},"(":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"只":{"docs":{},"加":{"docs":{},"载":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}}}}}}}}}}}}},"完":{"docs":{},"全":{"docs":{},"不":{"docs":{},"配":{"docs":{},"置":{"docs":{},"使":{"docs":{},"用":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"值":{"docs":{},",":{"docs":{},"参":{"docs":{},"见":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}},"想":{"docs":{},"测":{"docs":{},"试":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"的":{"docs":{},"不":{"docs":{},"同":{"docs":{},"版":{"docs":{},"本":{"docs":{},",":{"docs":{},"直":{"docs":{},"接":{"docs":{},"替":{"docs":{},"换":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"下":{"docs":{},"的":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"的":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{},"包":{"docs":{},"即":{"docs":{},"可":{"docs":{},"。":{"docs":{"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"这":{"docs":{},"篇":{"docs":{},"文":{"docs":{},"档":{"docs":{},"详":{"docs":{},"细":{"docs":{},"描":{"docs":{},"述":{"docs":{},"了":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"的":{"docs":{},"使":{"docs":{},"用":{"docs":{},",":{"docs":{},"基":{"docs":{},"本":{"docs":{},"涵":{"docs":{},"盖":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"功":{"docs":{},"能":{"docs":{},"特":{"docs":{},"性":{"docs":{},"。":{"docs":{"./":{"ref":"./","tf":0.5}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"里":{"docs":{},"所":{"docs":{},"有":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"都":{"docs":{},"是":{"docs":{},"换":{"docs":{},"照":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"配":{"docs":{},"置":{"docs":{},"选":{"docs":{},"的":{"docs":{},",":{"docs":{},"这":{"docs":{},"些":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"值":{"docs":{},"是":{"docs":{},"基":{"docs":{},"于":{"docs":{},"稳":{"docs":{},"定":{"docs":{},"性":{"docs":{},"和":{"docs":{},"性":{"docs":{},"能":{"docs":{},"考":{"docs":{},"虑":{"docs":{},"的":{"docs":{},"。":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},"是":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"调":{"docs":{},"用":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"的":{"docs":{},"抽":{"docs":{},"象":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},"封":{"docs":{},"装":{"docs":{},"了":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"地":{"docs":{},"址":{"docs":{},"及":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"接":{"docs":{},"口":{"docs":{},"信":{"docs":{},"息":{"docs":{},"。":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"以":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"reference-xmlconf/introduction.html":{"ref":"reference-xmlconf/introduction.html","tf":0.06666666666666667}}}}}}},"样":{"docs":{},"就":{"docs":{},"导":{"docs":{},"致":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"线":{"docs":{},"程":{"docs":{},",":{"docs":{},"先":{"docs":{},"锁":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},",":{"docs":{},"再":{"docs":{},"锁":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},",":{"docs":{},"再":{"docs":{},"次":{"docs":{},"锁":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"。":{"docs":{},"而":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"线":{"docs":{},"程":{"docs":{},",":{"docs":{},"先":{"docs":{},"锁":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},",":{"docs":{},"再":{"docs":{},"锁":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"。":{"docs":{},"反":{"docs":{},"向":{"docs":{},"锁":{"docs":{},"导":{"docs":{},"致":{"docs":{},"线":{"docs":{},"程":{"docs":{},"死":{"docs":{},"锁":{"docs":{},",":{"docs":{},"不":{"docs":{},"能":{"docs":{},"提":{"docs":{},"供":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"启":{"docs":{},"动":{"docs":{},"不":{"docs":{},"了":{"docs":{},"。":{"docs":{"demos/延迟暴露.html":{"ref":"demos/延迟暴露.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"在":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"推":{"docs":{},"送":{"docs":{},"有":{"docs":{},"延":{"docs":{},"迟":{"docs":{},"的":{"docs":{},"情":{"docs":{},"况":{"docs":{},"下":{"docs":{},",":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"通":{"docs":{},"过":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"列":{"docs":{},"表":{"docs":{},"也":{"docs":{},"能":{"docs":{},"调":{"docs":{},"用":{"docs":{},"到":{"docs":{},"原":{"docs":{},"地":{"docs":{},"址":{"docs":{},",":{"docs":{},"保":{"docs":{},"证":{"docs":{},"调":{"docs":{},"用":{"docs":{},"成":{"docs":{},"功":{"docs":{},"。":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"个":{"docs":{},"文":{"docs":{},"件":{"docs":{},"会":{"docs":{},"缓":{"docs":{},"存":{"docs":{},":":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}},"分":{"docs":{},"布":{"docs":{},"式":{"docs":{},"服":{"docs":{},"务":{"docs":{},"架":{"docs":{},"构":{"docs":{"preface/background.html":{"ref":"preface/background.html","tf":0.07692307692307693}}}}}},"事":{"docs":{},"务":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/分布式事务.html":{"ref":"demos/分布式事务.html","tf":5}}}}}},"组":{"docs":{},"聚":{"docs":{},"合":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/分组聚合.html":{"ref":"demos/分组聚合.html","tf":5}},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"菜":{"docs":{},"单":{"docs":{},"聚":{"docs":{},"合":{"docs":{},"等":{"docs":{},"服":{"docs":{},"务":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}},"验":{"docs":{},"证":{"docs":{},"示":{"docs":{},"例":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}},"隔":{"docs":{},"多":{"docs":{},"个":{"docs":{},"值":{"docs":{},",":{"docs":{},"如":{"docs":{},":":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}},"包":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}},"单":{"docs":{},"一":{"docs":{},"应":{"docs":{},"用":{"docs":{},"架":{"docs":{},"构":{"docs":{"preface/background.html":{"ref":"preface/background.html","tf":0.07692307692307693}}}}}}}},"垂":{"docs":{},"直":{"docs":{},"应":{"docs":{},"用":{"docs":{},"架":{"docs":{},"构":{"docs":{},"`":{"docs":{},"`":{"docs":{"preface/background.html":{"ref":"preface/background.html","tf":0.07692307692307693}}}}}}}}}},"当":{"docs":{},"垂":{"docs":{},"直":{"docs":{},"应":{"docs":{},"用":{"docs":{},"越":{"docs":{},"来":{"docs":{},"越":{"docs":{},"多":{"docs":{},",":{"docs":{},"应":{"docs":{},"用":{"docs":{},"之":{"docs":{},"间":{"docs":{},"交":{"docs":{},"互":{"docs":{},"不":{"docs":{},"可":{"docs":{},"避":{"docs":{},"免":{"docs":{},",":{"docs":{},"将":{"docs":{},"核":{"docs":{},"心":{"docs":{},"业":{"docs":{},"务":{"docs":{},"抽":{"docs":{},"取":{"docs":{},"出":{"docs":{},"来":{"docs":{},",":{"docs":{},"作":{"docs":{},"为":{"docs":{},"独":{"docs":{},"立":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"逐":{"docs":{},"渐":{"docs":{},"形":{"docs":{},"成":{"docs":{},"稳":{"docs":{},"定":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},"中":{"docs":{},"心":{"docs":{},",":{"docs":{},"使":{"docs":{},"前":{"docs":{},"端":{"docs":{},"应":{"docs":{},"用":{"docs":{},"能":{"docs":{},"更":{"docs":{},"快":{"docs":{},"速":{"docs":{},"的":{"docs":{},"响":{"docs":{},"应":{"docs":{},"多":{"docs":{},"变":{"docs":{},"的":{"docs":{},"市":{"docs":{},"场":{"docs":{},"需":{"docs":{},"求":{"docs":{},"。":{"docs":{"preface/background.html":{"ref":"preface/background.html","tf":0.07692307692307693}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"服":{"docs":{},"务":{"docs":{},"越":{"docs":{},"来":{"docs":{},"越":{"docs":{},"多":{"docs":{},",":{"docs":{},"容":{"docs":{},"量":{"docs":{},"的":{"docs":{},"评":{"docs":{},"估":{"docs":{},",":{"docs":{},"小":{"docs":{},"服":{"docs":{},"务":{"docs":{},"资":{"docs":{},"源":{"docs":{},"的":{"docs":{},"浪":{"docs":{},"费":{"docs":{},"等":{"docs":{},"问":{"docs":{},"题":{"docs":{},"逐":{"docs":{},"渐":{"docs":{},"显":{"docs":{},"现":{"docs":{},",":{"docs":{},"此":{"docs":{},"时":{"docs":{},"需":{"docs":{},"增":{"docs":{},"加":{"docs":{},"一":{"docs":{},"个":{"docs":{},"调":{"docs":{},"度":{"docs":{},"中":{"docs":{},"心":{"docs":{},"基":{"docs":{},"于":{"docs":{},"访":{"docs":{},"问":{"docs":{},"压":{"docs":{},"力":{"docs":{},"实":{"docs":{},"时":{"docs":{},"管":{"docs":{},"理":{"docs":{},"集":{"docs":{},"群":{"docs":{},"容":{"docs":{},"量":{"docs":{},",":{"docs":{},"提":{"docs":{},"高":{"docs":{},"集":{"docs":{},"群":{"docs":{},"利":{"docs":{},"用":{"docs":{},"率":{"docs":{},"。":{"docs":{"preface/background.html":{"ref":"preface/background.html","tf":0.07692307692307693}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"时":{"docs":{},",":{"docs":{},"服":{"docs":{},"务":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"配":{"docs":{},"置":{"docs":{},"管":{"docs":{},"理":{"docs":{},"变":{"docs":{},"得":{"docs":{},"非":{"docs":{},"常":{"docs":{},"困":{"docs":{},"难":{"docs":{},",":{"docs":{},"f":{"5":{"docs":{},"硬":{"docs":{},"件":{"docs":{},"负":{"docs":{},"载":{"docs":{},"均":{"docs":{},"衡":{"docs":{},"器":{"docs":{},"的":{"docs":{},"单":{"docs":{},"点":{"docs":{},"压":{"docs":{},"力":{"docs":{},"也":{"docs":{},"越":{"docs":{},"来":{"docs":{},"越":{"docs":{},"大":{"docs":{},"。":{"docs":{},"此":{"docs":{},"时":{"docs":{},"需":{"docs":{},"要":{"docs":{},"一":{"docs":{},"个":{"docs":{},"服":{"docs":{},"务":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},",":{"docs":{},"动":{"docs":{},"态":{"docs":{},"的":{"docs":{},"注":{"docs":{},"册":{"docs":{},"和":{"docs":{},"发":{"docs":{},"现":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"使":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"位":{"docs":{},"置":{"docs":{},"透":{"docs":{},"明":{"docs":{},"。":{"docs":{"preface/requirements.html":{"ref":"preface/requirements.html","tf":0.09090909090909091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"集":{"docs":{},"群":{"docs":{},"规":{"docs":{},"模":{"docs":{},"进":{"docs":{},"一":{"docs":{},"步":{"docs":{},"扩":{"docs":{},"大":{"docs":{},",":{"docs":{},"带":{"docs":{},"动":{"docs":{},"i":{"docs":{},"t":{"docs":{},"治":{"docs":{},"理":{"docs":{},"结":{"docs":{},"构":{"docs":{},"进":{"docs":{},"一":{"docs":{},"步":{"docs":{},"升":{"docs":{},"级":{"docs":{},",":{"docs":{},"需":{"docs":{},"要":{"docs":{},"实":{"docs":{},"现":{"docs":{},"动":{"docs":{},"态":{"docs":{},"部":{"docs":{},"署":{"docs":{},",":{"docs":{},"进":{"docs":{},"行":{"docs":{},"流":{"docs":{},"动":{"docs":{},"计":{"docs":{},"算":{"docs":{},",":{"docs":{},"现":{"docs":{},"有":{"docs":{},"分":{"docs":{},"布":{"docs":{},"式":{"docs":{},"服":{"docs":{},"务":{"docs":{},"架":{"docs":{},"构":{"docs":{},"不":{"docs":{},"会":{"docs":{},"带":{"docs":{},"来":{"docs":{},"阻":{"docs":{},"力":{"docs":{},":":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"网":{"docs":{},"站":{"docs":{},"流":{"docs":{},"量":{"docs":{},"很":{"docs":{},"小":{"docs":{},"时":{"docs":{},",":{"docs":{},"只":{"docs":{},"需":{"docs":{},"一":{"docs":{},"个":{"docs":{},"应":{"docs":{},"用":{"docs":{},",":{"docs":{},"将":{"docs":{},"所":{"docs":{},"有":{"docs":{},"功":{"docs":{},"能":{"docs":{},"都":{"docs":{},"部":{"docs":{},"署":{"docs":{},"在":{"docs":{},"一":{"docs":{},"起":{"docs":{},",":{"docs":{},"以":{"docs":{},"减":{"docs":{},"少":{"docs":{},"部":{"docs":{},"署":{"docs":{},"节":{"docs":{},"点":{"docs":{},"和":{"docs":{},"成":{"docs":{},"本":{"docs":{},"。":{"docs":{"preface/background.html":{"ref":"preface/background.html","tf":0.07692307692307693}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"访":{"docs":{},"问":{"docs":{},"量":{"docs":{},"逐":{"docs":{},"渐":{"docs":{},"增":{"docs":{},"大":{"docs":{},",":{"docs":{},"单":{"docs":{},"一":{"docs":{},"应":{"docs":{},"用":{"docs":{},"增":{"docs":{},"加":{"docs":{},"机":{"docs":{},"器":{"docs":{},"带":{"docs":{},"来":{"docs":{},"的":{"docs":{},"加":{"docs":{},"速":{"docs":{},"度":{"docs":{},"越":{"docs":{},"来":{"docs":{},"越":{"docs":{},"小":{"docs":{},",":{"docs":{},"将":{"docs":{},"应":{"docs":{},"用":{"docs":{},"拆":{"docs":{},"成":{"docs":{},"互":{"docs":{},"不":{"docs":{},"相":{"docs":{},"干":{"docs":{},"的":{"docs":{},"几":{"docs":{},"个":{"docs":{},"应":{"docs":{},"用":{"docs":{},",":{"docs":{},"以":{"docs":{},"提":{"docs":{},"升":{"docs":{},"效":{"docs":{},"率":{"docs":{},"。":{"docs":{"preface/background.html":{"ref":"preface/background.html","tf":0.07692307692307693}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"进":{"docs":{},"一":{"docs":{},"步":{"docs":{},"发":{"docs":{},"展":{"docs":{},",":{"docs":{},"服":{"docs":{},"务":{"docs":{},"间":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"关":{"docs":{},"系":{"docs":{},"变":{"docs":{},"得":{"docs":{},"错":{"docs":{},"踪":{"docs":{},"复":{"docs":{},"杂":{"docs":{},",":{"docs":{},"甚":{"docs":{},"至":{"docs":{},"分":{"docs":{},"不":{"docs":{},"清":{"docs":{},"哪":{"docs":{},"个":{"docs":{},"应":{"docs":{},"用":{"docs":{},"要":{"docs":{},"在":{"docs":{},"哪":{"docs":{},"个":{"docs":{},"应":{"docs":{},"用":{"docs":{},"之":{"docs":{},"前":{"docs":{},"启":{"docs":{},"动":{"docs":{},",":{"docs":{},"架":{"docs":{},"构":{"docs":{},"师":{"docs":{},"都":{"docs":{},"不":{"docs":{},"能":{"docs":{},"完":{"docs":{},"整":{"docs":{},"的":{"docs":{},"描":{"docs":{},"述":{"docs":{},"应":{"docs":{},"用":{"docs":{},"的":{"docs":{},"架":{"docs":{},"构":{"docs":{},"关":{"docs":{},"系":{"docs":{},"。":{"docs":{},"这":{"docs":{},"时":{"docs":{},",":{"docs":{},"需":{"docs":{},"要":{"docs":{},"自":{"docs":{},"动":{"docs":{},"画":{"docs":{},"出":{"docs":{},"应":{"docs":{},"用":{"docs":{},"间":{"docs":{},"的":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"关":{"docs":{},"系":{"docs":{},"图":{"docs":{},",":{"docs":{},"以":{"docs":{},"帮":{"docs":{},"助":{"docs":{},"架":{"docs":{},"构":{"docs":{},"师":{"docs":{},"理":{"docs":{},"清":{"docs":{},"理":{"docs":{},"关":{"docs":{},"系":{"docs":{},"。":{"docs":{},"(":{"3":{"docs":{},")":{"docs":{"preface/requirements.html":{"ref":"preface/requirements.html","tf":0.09090909090909091}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"参":{"docs":{},"数":{"docs":{},"对":{"docs":{},"象":{"docs":{},"增":{"docs":{},"加":{"docs":{},"字":{"docs":{},"段":{"docs":{},"时":{"docs":{},",":{"docs":{},"需":{"docs":{},"外":{"docs":{},"部":{"docs":{},"文":{"docs":{},"件":{"docs":{},"声":{"docs":{},"明":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}},"前":{"docs":{"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":0.04}},"应":{"docs":{},"用":{"docs":{},"配":{"docs":{},"置":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.010638297872340425}}}},"名":{"docs":{},"称":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"计":{"docs":{},"算":{"docs":{},"应":{"docs":{},"用":{"docs":{},"间":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"关":{"docs":{},"系":{"docs":{},",":{"docs":{},"注":{"docs":{},"意":{"docs":{},":":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"和":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"应":{"docs":{},"用":{"docs":{},"名":{"docs":{},"不":{"docs":{},"要":{"docs":{},"一":{"docs":{},"样":{"docs":{},",":{"docs":{},"此":{"docs":{},"参":{"docs":{},"数":{"docs":{},"不":{"docs":{},"是":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"条":{"docs":{},"件":{"docs":{},",":{"docs":{},"你":{"docs":{},"当":{"docs":{},"前":{"docs":{},"项":{"docs":{},"目":{"docs":{},"叫":{"docs":{},"什":{"docs":{},"么":{"docs":{},"名":{"docs":{},"字":{"docs":{},"就":{"docs":{},"填":{"docs":{},"什":{"docs":{},"么":{"docs":{},",":{"docs":{},"和":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"角":{"docs":{},"色":{"docs":{},"无":{"docs":{},"关":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},":":{"docs":{},"k":{"docs":{},"y":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"应":{"docs":{},"用":{"docs":{},"调":{"docs":{},"用":{"docs":{},"了":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"a":{"docs":{},"n":{"docs":{},"应":{"docs":{},"用":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"则":{"docs":{},"k":{"docs":{},"y":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"项":{"docs":{},"目":{"docs":{},"配":{"docs":{},"成":{"docs":{},"k":{"docs":{},"y":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},",":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"a":{"docs":{},"n":{"docs":{},"项":{"docs":{},"目":{"docs":{},"配":{"docs":{},"成":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"a":{"docs":{},"n":{"docs":{},",":{"docs":{},"可":{"docs":{},"能":{"docs":{},"k":{"docs":{},"y":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"也":{"docs":{},"提":{"docs":{},"供":{"docs":{},"其":{"docs":{},"它":{"docs":{},"服":{"docs":{},"务":{"docs":{},"给":{"docs":{},"别":{"docs":{},"人":{"docs":{},"使":{"docs":{},"用":{"docs":{},",":{"docs":{},"但":{"docs":{},"k":{"docs":{},"y":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"项":{"docs":{},"目":{"docs":{},"永":{"docs":{},"远":{"docs":{},"配":{"docs":{},"成":{"docs":{},"k":{"docs":{},"y":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},",":{"docs":{},"这":{"docs":{},"样":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"将":{"docs":{},"显":{"docs":{},"示":{"docs":{},"k":{"docs":{},"y":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"于":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"a":{"docs":{},"n":{"docs":{"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"版":{"docs":{},"本":{"docs":{"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176}}}}}}},"线":{"docs":{},"程":{"docs":{},"缓":{"docs":{},"存":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"一":{"docs":{},"个":{"docs":{},"页":{"docs":{},"面":{"docs":{},"渲":{"docs":{},"染":{"docs":{},",":{"docs":{},"用":{"docs":{},"到":{"docs":{},"很":{"docs":{},"多":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},",":{"docs":{},"每":{"docs":{},"个":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"都":{"docs":{},"要":{"docs":{},"去":{"docs":{},"查":{"docs":{},"用":{"docs":{},"户":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"通":{"docs":{},"过":{"docs":{},"线":{"docs":{},"程":{"docs":{},"缓":{"docs":{},"存":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"减":{"docs":{},"少":{"docs":{},"这":{"docs":{},"种":{"docs":{},"多":{"docs":{},"余":{"docs":{},"访":{"docs":{},"问":{"docs":{},"。":{"docs":{"demos/结果缓存.html":{"ref":"demos/结果缓存.html","tf":0.058823529411764705}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"模":{"docs":{},"块":{"docs":{},"名":{"docs":{},"称":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"计":{"docs":{},"算":{"docs":{},"模":{"docs":{},"块":{"docs":{},"间":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"关":{"docs":{},"系":{"docs":{"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.02564102564102564}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"版":{"docs":{},"本":{"docs":{"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.02564102564102564}}}}}}}},"某":{"docs":{},"一":{"docs":{},"台":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"挂":{"docs":{},"时":{"docs":{},",":{"docs":{},"原":{"docs":{},"本":{"docs":{},"发":{"docs":{},"往":{"docs":{},"该":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"的":{"docs":{},"请":{"docs":{},"求":{"docs":{},",":{"docs":{},"基":{"docs":{},"于":{"docs":{},"虚":{"docs":{},"拟":{"docs":{},"节":{"docs":{},"点":{"docs":{},",":{"docs":{},"平":{"docs":{},"摊":{"docs":{},"到":{"docs":{},"其":{"docs":{},"它":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},",":{"docs":{},"不":{"docs":{},"会":{"docs":{},"引":{"docs":{},"起":{"docs":{},"剧":{"docs":{},"烈":{"docs":{},"变":{"docs":{},"动":{"docs":{},"。":{"docs":{"demos/负载均衡.html":{"ref":"demos/负载均衡.html","tf":0.041666666666666664}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"一":{"docs":{},"个":{"docs":{},"接":{"docs":{},"口":{"docs":{},"有":{"docs":{},"多":{"docs":{},"种":{"docs":{},"实":{"docs":{},"现":{"docs":{},"时":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"区":{"docs":{},"分":{"docs":{},"。":{"docs":{"demos/服务分组.html":{"ref":"demos/服务分组.html","tf":0.2}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"现":{"docs":{},",":{"docs":{},"出":{"docs":{},"现":{"docs":{},"不":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"升":{"docs":{},"级":{"docs":{},"时":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"版":{"docs":{},"本":{"docs":{},"号":{"docs":{},"过":{"docs":{},"渡":{"docs":{},",":{"docs":{},"版":{"docs":{},"本":{"docs":{},"号":{"docs":{},"不":{"docs":{},"同":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},"相":{"docs":{},"互":{"docs":{},"间":{"docs":{},"不":{"docs":{},"引":{"docs":{},"用":{"docs":{},"。":{"docs":{"demos/多版本.html":{"ref":"demos/多版本.html","tf":0.1111111111111111}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"路":{"docs":{},"由":{"docs":{},"结":{"docs":{},"果":{"docs":{},"为":{"docs":{},"空":{"docs":{},"时":{"docs":{},",":{"docs":{},"是":{"docs":{},"否":{"docs":{},"强":{"docs":{},"制":{"docs":{},"执":{"docs":{},"行":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"不":{"docs":{},"强":{"docs":{},"制":{"docs":{},"执":{"docs":{},"行":{"docs":{},",":{"docs":{},"路":{"docs":{},"由":{"docs":{},"结":{"docs":{},"果":{"docs":{},"为":{"docs":{},"空":{"docs":{},"的":{"docs":{},"路":{"docs":{},"由":{"docs":{},"规":{"docs":{},"则":{"docs":{},"将":{"docs":{},"自":{"docs":{},"动":{"docs":{},"失":{"docs":{},"效":{"docs":{},",":{"docs":{},"可":{"docs":{},"不":{"docs":{},"填":{"docs":{},",":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"为":{"docs":{},"f":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"。":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"会":{"docs":{},"话":{"docs":{},"过":{"docs":{},"期":{"docs":{},"时":{"docs":{},",":{"docs":{},"能":{"docs":{},"自":{"docs":{},"动":{"docs":{},"恢":{"docs":{},"复":{"docs":{},"注":{"docs":{},"册":{"docs":{},"数":{"docs":{},"据":{"docs":{},",":{"docs":{},"以":{"docs":{},"及":{"docs":{},"订":{"docs":{},"阅":{"docs":{},"请":{"docs":{},"求":{"docs":{},"。":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}}}}}},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"出":{"docs":{},"现":{"docs":{},"断":{"docs":{},"电":{"docs":{},"等":{"docs":{},"异":{"docs":{},"常":{"docs":{},"停":{"docs":{},"机":{"docs":{},"时":{"docs":{},",":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"能":{"docs":{},"自":{"docs":{},"动":{"docs":{},"删":{"docs":{},"除":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"信":{"docs":{},"息":{"docs":{},"。":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"重":{"docs":{},"启":{"docs":{},"时":{"docs":{},",":{"docs":{},"能":{"docs":{},"自":{"docs":{},"动":{"docs":{},"恢":{"docs":{},"复":{"docs":{},"注":{"docs":{},"册":{"docs":{},"数":{"docs":{},"据":{"docs":{},",":{"docs":{},"以":{"docs":{},"及":{"docs":{},"订":{"docs":{},"阅":{"docs":{},"请":{"docs":{},"求":{"docs":{},"。":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}}}}}}}},"设":{"docs":{},"置":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}},"不":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"时":{"docs":{},",":{"docs":{},"先":{"docs":{},"升":{"docs":{},"级":{"docs":{},"一":{"docs":{},"半":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"为":{"docs":{},"新":{"docs":{},"版":{"docs":{},"本":{"docs":{},",":{"docs":{},"再":{"docs":{},"将":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"全":{"docs":{},"部":{"docs":{},"升":{"docs":{},"为":{"docs":{},"新":{"docs":{},"版":{"docs":{},"本":{"docs":{},",":{"docs":{},"然":{"docs":{},"后":{"docs":{},"将":{"docs":{},"剩":{"docs":{},"下":{"docs":{},"的":{"docs":{},"一":{"docs":{},"半":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"升":{"docs":{},"为":{"docs":{},"新":{"docs":{},"版":{"docs":{},"本":{"docs":{},"。":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"此":{"docs":{},"时":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"加":{"docs":{},"速":{"docs":{},"前":{"docs":{},"端":{"docs":{},"页":{"docs":{},"面":{"docs":{},"开":{"docs":{},"发":{"docs":{},"的":{"docs":{},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"框":{"docs":{},"架":{"docs":{},"(":{"docs":{},"m":{"docs":{},"v":{"docs":{},"c":{"docs":{},")":{"docs":{},"是":{"docs":{},"关":{"docs":{},"键":{"docs":{},"。":{"docs":{"preface/background.html":{"ref":"preface/background.html","tf":0.07692307692307693}}}}}}}}}}}}}}}}}}}}}}}}},"提":{"docs":{},"高":{"docs":{},"业":{"docs":{},"务":{"docs":{},"复":{"docs":{},"用":{"docs":{},"及":{"docs":{},"整":{"docs":{},"合":{"docs":{},"的":{"docs":{},"分":{"docs":{},"布":{"docs":{},"式":{"docs":{},"服":{"docs":{},"务":{"docs":{},"框":{"docs":{},"架":{"docs":{},"(":{"docs":{},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},")":{"docs":{},"是":{"docs":{},"关":{"docs":{},"键":{"docs":{},"。":{"docs":{"preface/background.html":{"ref":"preface/background.html","tf":0.07692307692307693}}}}}}}}}}}}}}}}}}}}}}}}}},"机":{"docs":{},"器":{"docs":{},"利":{"docs":{},"用":{"docs":{},"率":{"docs":{},"的":{"docs":{},"资":{"docs":{},"源":{"docs":{},"调":{"docs":{},"度":{"docs":{},"和":{"docs":{},"治":{"docs":{},"理":{"docs":{},"中":{"docs":{},"心":{"docs":{},"(":{"docs":{},"s":{"docs":{},"o":{"docs":{},"a":{"docs":{},")":{"docs":{},"是":{"docs":{},"关":{"docs":{},"键":{"docs":{},"。":{"docs":{"preface/background.html":{"ref":"preface/background.html","tf":0.07692307692307693}}}}}}}}}}}}}}}}}}}}}}}}}}}},"简":{"docs":{},"化":{"docs":{},"增":{"docs":{},"删":{"docs":{},"改":{"docs":{},"查":{"docs":{},"工":{"docs":{},"作":{"docs":{},"量":{"docs":{},"的":{"docs":{},"数":{"docs":{},"据":{"docs":{},"访":{"docs":{},"问":{"docs":{},"框":{"docs":{},"架":{"docs":{},"(":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},")":{"docs":{},"是":{"docs":{},"关":{"docs":{},"键":{"docs":{},"。":{"docs":{"preface/background.html":{"ref":"preface/background.html","tf":0.07692307692307693}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"本":{"docs":{},"端":{"docs":{},"变":{"docs":{},"成":{"docs":{},"消":{"docs":{},"费":{"docs":{},"端":{"docs":{},",":{"docs":{},"这":{"docs":{},"里":{"docs":{},"会":{"docs":{},"返":{"docs":{},"回":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"和":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"的":{"docs":{},"请":{"docs":{},"求":{"docs":{},"同":{"docs":{},"时":{"docs":{},"在":{"docs":{},"执":{"docs":{},"行":{"docs":{},",":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"启":{"docs":{},"动":{"docs":{},"多":{"docs":{},"线":{"docs":{},"程":{"docs":{},"来":{"docs":{},"支":{"docs":{},"持":{"docs":{},"并":{"docs":{},"行":{"docs":{},",":{"docs":{},"而":{"docs":{},"是":{"docs":{},"借":{"docs":{},"助":{"docs":{},"n":{"docs":{},"i":{"docs":{},"o":{"docs":{},"的":{"docs":{},"非":{"docs":{},"阻":{"docs":{},"塞":{"docs":{},"完":{"docs":{},"成":{"docs":{},"。":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.021739130434782608}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"例":{"docs":{},"很":{"docs":{},"重":{"docs":{},",":{"docs":{},"封":{"docs":{},"装":{"docs":{},"了":{"docs":{},"与":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"的":{"docs":{},"连":{"docs":{},"接":{"docs":{},"以":{"docs":{},"及":{"docs":{},"与":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"的":{"docs":{},"连":{"docs":{},"接":{"docs":{},",":{"docs":{},"请":{"docs":{},"自":{"docs":{},"行":{"docs":{},"缓":{"docs":{},"存":{"docs":{},",":{"docs":{},"否":{"docs":{},"则":{"docs":{},"可":{"docs":{},"能":{"docs":{},"造":{"docs":{},"成":{"docs":{},"内":{"docs":{},"存":{"docs":{},"和":{"docs":{},"连":{"docs":{},"接":{"docs":{},"泄":{"docs":{},"漏":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.015957446808510637}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"请":{"docs":{},"自":{"docs":{},"行":{"docs":{},"缓":{"docs":{},"存":{"docs":{},",":{"docs":{},"否":{"docs":{},"则":{"docs":{},"可":{"docs":{},"能":{"docs":{},"造":{"docs":{},"成":{"docs":{},"内":{"docs":{},"存":{"docs":{},"和":{"docs":{},"连":{"docs":{},"接":{"docs":{},"泄":{"docs":{},"漏":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"调":{"docs":{},"用":{"docs":{},"会":{"docs":{},"立":{"docs":{},"即":{"docs":{},"返":{"docs":{},"回":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.043478260869565216}}}}}}}}}}}}},"代":{"docs":{},"码":{"docs":{},"在":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"执":{"docs":{},"行":{"docs":{"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818}}}}}}}}}},"日":{"docs":{},"志":{"docs":{},"量":{"docs":{},"比":{"docs":{},"较":{"docs":{},"大":{"docs":{},",":{"docs":{},"请":{"docs":{},"注":{"docs":{},"意":{"docs":{},"磁":{"docs":{},"盘":{"docs":{},"容":{"docs":{},"量":{"docs":{},"。":{"docs":{"demos/访问日志.html":{"ref":"demos/访问日志.html","tf":0.25}}}}}}}}}}}}}}}}}},"流":{"docs":{},"动":{"docs":{},"计":{"docs":{},"算":{"docs":{},"架":{"docs":{},"构":{"docs":{"preface/background.html":{"ref":"preface/background.html","tf":0.07692307692307693}}}}}}},"程":{"docs":{},"说":{"docs":{},"明":{"docs":{},":":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}},"背":{"docs":{},"景":{"docs":{"preface/background.html":{"ref":"preface/background.html","tf":5}}}},"随":{"docs":{},"着":{"docs":{},"互":{"docs":{},"联":{"docs":{},"网":{"docs":{},"的":{"docs":{},"发":{"docs":{},"展":{"docs":{},",":{"docs":{},"网":{"docs":{},"站":{"docs":{},"应":{"docs":{},"用":{"docs":{},"的":{"docs":{},"规":{"docs":{},"模":{"docs":{},"不":{"docs":{},"断":{"docs":{},"扩":{"docs":{},"大":{"docs":{},",":{"docs":{},"常":{"docs":{},"规":{"docs":{},"的":{"docs":{},"垂":{"docs":{},"直":{"docs":{},"应":{"docs":{},"用":{"docs":{},"架":{"docs":{},"构":{"docs":{},"已":{"docs":{},"无":{"docs":{},"法":{"docs":{},"应":{"docs":{},"对":{"docs":{},",":{"docs":{},"分":{"docs":{},"布":{"docs":{},"式":{"docs":{},"服":{"docs":{},"务":{"docs":{},"架":{"docs":{},"构":{"docs":{},"以":{"docs":{},"及":{"docs":{},"流":{"docs":{},"动":{"docs":{},"计":{"docs":{},"算":{"docs":{},"架":{"docs":{},"构":{"docs":{},"势":{"docs":{},"在":{"docs":{},"必":{"docs":{},"行":{"docs":{},",":{"docs":{},"亟":{"docs":{},"需":{"docs":{},"一":{"docs":{},"个":{"docs":{},"治":{"docs":{},"理":{"docs":{},"系":{"docs":{},"统":{"docs":{},"确":{"docs":{},"保":{"docs":{},"架":{"docs":{},"构":{"docs":{},"有":{"docs":{},"条":{"docs":{},"不":{"docs":{},"紊":{"docs":{},"的":{"docs":{},"演":{"docs":{},"进":{"docs":{},"。":{"docs":{"preface/background.html":{"ref":"preface/background.html","tf":0.07692307692307693}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"机":{"docs":{},",":{"docs":{},"按":{"docs":{},"权":{"docs":{},"重":{"docs":{},"设":{"docs":{},"置":{"docs":{},"随":{"docs":{},"机":{"docs":{},"概":{"docs":{},"率":{"docs":{},"(":{"docs":{},"推":{"docs":{},"荐":{"docs":{},"使":{"docs":{},"用":{"docs":{},")":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}},"。":{"docs":{"demos/负载均衡.html":{"ref":"demos/负载均衡.html","tf":0.041666666666666664}}}}}}}}}}}}}}},"(":{"1":{"docs":{},")":{"docs":{"preface/requirements.html":{"ref":"preface/requirements.html","tf":0.09090909090909091},"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549},"demos/多协议.html":{"ref":"demos/多协议.html","tf":0.1111111111111111},"demos/多注册中心.html":{"ref":"demos/多注册中心.html","tf":0.06666666666666667},"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931},"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403},"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549},"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564},"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}},".":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}},"2":{"docs":{},")":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549},"demos/多协议.html":{"ref":"demos/多协议.html","tf":0.1111111111111111},"demos/多注册中心.html":{"ref":"demos/多注册中心.html","tf":0.06666666666666667},"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931},"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403},"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549},"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564},"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}},".":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}},".":{"0":{"docs":{},".":{"1":{"2":{"docs":{},")":{"docs":{"coveragence.html":{"ref":"coveragence.html","tf":0.16666666666666666}}}},"docs":{}},"docs":{}}},"docs":{}}},"3":{"docs":{},")":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549},"demos/多注册中心.html":{"ref":"demos/多注册中心.html","tf":0.06666666666666667},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931},"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}},".":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}},".":{"1":{"docs":{},")":{"docs":{},".":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}},"2":{"docs":{},")":{"docs":{},".":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}},"docs":{}}},"4":{"docs":{},")":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}},"5":{"docs":{},")":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}},"6":{"docs":{},")":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}},"docs":{},"+":{"docs":{},")":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.08333333333333333}}}},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"集":{"docs":{},"群":{"docs":{},"模":{"docs":{},"式":{"docs":{},"生":{"docs":{},"效":{"docs":{},")":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},")":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003},"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},")":{"docs":{"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},")":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},")":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}}}}}}},"\"":{"docs":{},"s":{"docs":{},"a":{"docs":{},"y":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"\"":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"(":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},")":{"docs":{"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},")":{"docs":{"demos/回声测试.html":{"ref":"demos/回声测试.html","tf":0.045454545454545456}}}}}}}}}}}}},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818}}}}}}}},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.011363636363636364}}}}}}}}}},"i":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},")":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}}}}}},"n":{"docs":{},"t":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}},"v":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{},"\"":{"docs":{},")":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"f":{"docs":{},"y":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},")":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}}}}},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818}}}}}}}}}},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.006289308176100629}}}}}}},"暂":{"docs":{},"不":{"docs":{},"支":{"docs":{},"持":{"docs":{},"参":{"docs":{},"数":{"docs":{},"路":{"docs":{},"由":{"docs":{},")":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}},"注":{"docs":{},"意":{"docs":{},":":{"1":{"docs":{},".":{"0":{"docs":{},"不":{"docs":{},"支":{"docs":{},"持":{"docs":{},"自":{"docs":{},"定":{"docs":{},"义":{"docs":{},"路":{"docs":{},"径":{"docs":{},",":{"docs":{},"总":{"docs":{},"是":{"docs":{},"使":{"docs":{},"用":{"docs":{},"接":{"docs":{},"口":{"docs":{},"名":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"有":{"1":{"docs":{},".":{"0":{"docs":{},"调":{"2":{"docs":{},".":{"0":{"docs":{},",":{"docs":{},"配":{"docs":{},"置":{"docs":{},"服":{"docs":{},"务":{"docs":{},"路":{"docs":{},"径":{"docs":{},"可":{"docs":{},"能":{"docs":{},"不":{"docs":{},"兼":{"docs":{},"容":{"docs":{},")":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},")":{"docs":{"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}},"m":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},")":{"docs":{"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}}}}}}}}}}}}},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},"+":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},")":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.012578616352201259}}}}}}}}}}}}}}}}},"不":{"docs":{},"能":{"docs":{},"在":{"docs":{},"协":{"docs":{},"议":{"docs":{},"中":{"docs":{},"传":{"docs":{},"递":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"值":{"docs":{},")":{"docs":{"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":0.04}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.014388489208633094}}}}}}},"尚":{"docs":{},"未":{"docs":{},"发":{"docs":{},"布":{"docs":{},")":{"docs":{"reference-maven/maven.html":{"ref":"reference-maven/maven.html","tf":0.05555555555555555}}}}}}},"(":{"docs":{},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},")":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"$":{"docs":{},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"(":{"docs":{},"“":{"docs":{},"o":{"docs":{},"k":{"docs":{},"”":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"2":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},"+":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},")":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},")":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.012578616352201259}}}}}}}}}}}}},"docs":{}}}}}}}}},"g":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"preface/requirements.html":{"ref":"preface/requirements.html","tf":0.09090909090909091}}}}}}},"a":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"z":{"docs":{},"z":{"docs":{},"l":{"docs":{},"y":{"docs":{},":":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}},"i":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}},"i":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}},"o":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}},"u":{"docs":{},"p":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095}}}}},"e":{"docs":{},"p":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}},"x":{"docs":{},"p":{"docs":{},"i":{"docs":{},"r":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}}}},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.013793103448275862}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.013333333333333334}},"i":{"docs":{},"c":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.020134228187919462},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.03636363636363636}},"e":{"docs":{},".":{"docs":{},"$":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},",":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"y":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"\"":{"docs":{},",":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}}}}}}}}}}}}}},"b":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"/":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"5":{"0":{"docs":{},"k":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}},"h":{"4":{"docs":{},".":{"docs":{"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.058823529411764705},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.029850746268656716}}}},"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}},":":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.03333333333333333}},"/":{"docs":{},"/":{"docs":{"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":5}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},".":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"_":{"1":{"4":{"0":{"2":{"docs":{},"/":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"preface/requirements.html":{"ref":"preface/requirements.html","tf":0.09090909090909091}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"x":{"docs":{},"s":{"docs":{},"d":{"docs":{"reference-xmlconf/introduction.html":{"ref":"reference-xmlconf/introduction.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"s":{"docs":{},"/":{"docs":{},"c":{"docs":{},"d":{"docs":{},"/":{"docs":{},"e":{"1":{"7":{"4":{"0":{"9":{"docs":{},"_":{"0":{"1":{"docs":{},"/":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"/":{"6":{"docs":{},"/":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"s":{"docs":{},"/":{"docs":{},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"g":{"docs":{},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"/":{"docs":{},"s":{"docs":{},"u":{"docs":{},"n":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},":":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}},",":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}},"实":{"docs":{},"现":{"docs":{},"。":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}},"d":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"(":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},")":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.012578616352201259}}}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"2":{"docs":{},",":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}},"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.07692307692307693},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358},"perf-test.html":{"ref":"perf-test.html","tf":0.012578616352201259}},":":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464},"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.03333333333333333}},"/":{"docs":{},"/":{"docs":{"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":5}}}}},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}},"协":{"docs":{},"议":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}},"用":{"docs":{},"于":{"docs":{},"集":{"docs":{},"成":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"底":{"docs":{},"层":{"docs":{},"采":{"docs":{},"用":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"通":{"docs":{},"讯":{"docs":{},",":{"docs":{},"采":{"docs":{},"用":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"内":{"docs":{},"嵌":{"docs":{},"j":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},"作":{"docs":{},"为":{"docs":{},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},"实":{"docs":{},"现":{"docs":{},"。":{"docs":{"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"各":{"docs":{},"版":{"docs":{},"本":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"性":{"docs":{},"不":{"docs":{},"好":{"docs":{},",":{"docs":{},"可":{"docs":{},"能":{"docs":{},"和":{"docs":{},"应":{"docs":{},"用":{"docs":{},"使":{"docs":{},"用":{"docs":{},"的":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"冲":{"docs":{},"突":{"docs":{},",":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"内":{"docs":{},"嵌":{"docs":{},"了":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"3":{"docs":{},".":{"2":{"docs":{},".":{"1":{"docs":{},"的":{"docs":{},"源":{"docs":{},"码":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},",":{"docs":{},"只":{"docs":{},"传":{"docs":{},"成":{"docs":{},"员":{"docs":{},"属":{"docs":{},"性":{"docs":{},"值":{"docs":{},"和":{"docs":{},"值":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"不":{"docs":{},"传":{"docs":{},"方":{"docs":{},"法":{"docs":{},"或":{"docs":{},"静":{"docs":{},"态":{"docs":{},"变":{"docs":{},"量":{"docs":{},",":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"情":{"docs":{},"况":{"docs":{},":":{"docs":{},"(":{"docs":{},"由":{"docs":{},"吴":{"docs":{},"亚":{"docs":{},"军":{"docs":{},"提":{"docs":{},"供":{"docs":{},")":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.00975609756097561}}}}}}}}},"l":{"docs":{},"p":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.014388489208633094}},":":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464},"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.013422818791946308},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.013793103448275862}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{},"的":{"docs":{},"子":{"docs":{},"项":{"docs":{},"目":{"docs":{},",":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"树":{"docs":{},"型":{"docs":{},"的":{"docs":{},"目":{"docs":{},"录":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"支":{"docs":{},"持":{"docs":{},"变":{"docs":{},"更":{"docs":{},"推":{"docs":{},"送":{"docs":{},",":{"docs":{},"适":{"docs":{},"合":{"docs":{},"作":{"docs":{},"为":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},",":{"docs":{},"工":{"docs":{},"业":{"docs":{},"强":{"docs":{},"度":{"docs":{},"较":{"docs":{},"高":{"docs":{},",":{"docs":{},"可":{"docs":{},"用":{"docs":{},"于":{"docs":{},"生":{"docs":{},"产":{"docs":{},"环":{"docs":{},"境":{"docs":{},",":{"docs":{},"并":{"docs":{},"推":{"docs":{},"荐":{"docs":{},"使":{"docs":{},"用":{"docs":{},"。":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"d":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}},"h":{"docs":{},":":{"docs":{},"m":{"docs":{},"m":{"docs":{},":":{"docs":{},"s":{"docs":{},"s":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.0761904761904762},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}},",":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}},"t":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"t":{"docs":{},"(":{"docs":{},"t":{"docs":{},"m":{"docs":{},")":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"preface/requirements.html":{"ref":"preface/requirements.html","tf":0.09090909090909091}}}}}}},"o":{"docs":{},"r":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}},".":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"均":{"docs":{},"可":{"docs":{},"以":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"配":{"docs":{},"置":{"docs":{},"。":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}}}}}}}}},"上":{"docs":{},"可":{"docs":{},"以":{"docs":{},"配":{"docs":{},"置":{"docs":{},"的":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"端":{"docs":{},"属":{"docs":{},"性":{"docs":{},"有":{"docs":{},":":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}},"尽":{"docs":{},"量":{"docs":{},"多":{"docs":{},"配":{"docs":{},"置":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"端":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"让":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"实":{"docs":{},"现":{"docs":{},"者":{"docs":{},"一":{"docs":{},"开":{"docs":{},"始":{"docs":{},"就":{"docs":{},"思":{"docs":{},"考":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"服":{"docs":{},"务":{"docs":{},"特":{"docs":{},"点":{"docs":{},"、":{"docs":{},"服":{"docs":{},"务":{"docs":{},"质":{"docs":{},"量":{"docs":{},"的":{"docs":{},"问":{"docs":{},"题":{"docs":{},"。":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"配":{"docs":{},"置":{"docs":{},"合":{"docs":{},"理":{"docs":{},"的":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"端":{"docs":{},"属":{"docs":{},"性":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.028795811518324606}}}}}},"x":{"docs":{},"y":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.005235602094240838}}}}}}}}}},"i":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.013333333333333334}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"最":{"docs":{},"后":{"docs":{},",":{"docs":{},"相":{"docs":{},"当":{"docs":{},"于":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"值":{"docs":{},",":{"docs":{},"只":{"docs":{},"有":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"没":{"docs":{},"有":{"docs":{},"配":{"docs":{},"置":{"docs":{},"时":{"docs":{},",":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"的":{"docs":{},"相":{"docs":{},"应":{"docs":{},"配":{"docs":{},"置":{"docs":{},"项":{"docs":{},"才":{"docs":{},"会":{"docs":{},"生":{"docs":{},"效":{"docs":{},",":{"docs":{},"通":{"docs":{},"常":{"docs":{},"用":{"docs":{},"于":{"docs":{},"共":{"docs":{},"享":{"docs":{},"公":{"docs":{},"共":{"docs":{},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"应":{"docs":{},"用":{"docs":{},"名":{"docs":{},"。":{"docs":{"configuration/properties.html":{"ref":"configuration/properties.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213},"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258},"reference-xmlconf/dubbo-monitor.html":{"ref":"reference-xmlconf/dubbo-monitor.html","tf":0.07142857142857142},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"1":{"2":{"3":{"4":{"5":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"s":{"docs":{},"(":{"2":{"0":{"0":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}},"(":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"demos/优雅停机.html":{"ref":"demos/优雅停机.html","tf":0.07142857142857142}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.04477611940298507}},"/":{"docs":{},"/":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"@":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"/":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"?":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"=":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"&":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"=":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"reference-xmlconf/introduction.html":{"ref":"reference-xmlconf/introduction.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"v":{"docs":{},"a":{"docs":{},"t":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.029411764705882353},"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.018018018018018018},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.013422818791946308},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.011363636363636364},"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818}}}}},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"=":{"1":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}},"docs":{}}}}}}}}},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.058823529411764705},"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.04804804804804805},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.03355704697986577},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.03636363636363636},"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.023809523809523808},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.03977272727272727},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.05517241379310345},"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.05454545454545454},"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.041666666666666664},"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}}}}}}},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.015015015015015015}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}}}}}}}}}}}}}}},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.017045454545454544},"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818},"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}}}}}},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}},")":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}},";":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.020134228187919462}}}}}}}}},"t":{"docs":{},"h":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}},"y":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.00975609756097561},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095}}}}}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.026845637583892617},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.020689655172413793}},".":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"y":{"docs":{},"y":{"docs":{},"y":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}},"(":{"docs":{},")":{"docs":{},";":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}},"(":{"docs":{},"i":{"docs":{},"d":{"docs":{},",":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}},"t":{"docs":{},"h":{"0":{"docs":{},":":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"docs":{}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258},"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}},":":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}},"j":{"docs":{},"o":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.006289308176100629}},"(":{"docs":{},"嵌":{"docs":{},"套":{"docs":{},"的":{"docs":{},"复":{"docs":{},"杂":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"对":{"docs":{},"象":{"docs":{},")":{"docs":{},",":{"docs":{},"不":{"docs":{},"做":{"docs":{},"任":{"docs":{},"何":{"docs":{},"处":{"docs":{},"理":{"docs":{},",":{"docs":{},"原":{"docs":{},"样":{"docs":{},"返":{"docs":{},"回":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{},"时":{"docs":{},",":{"docs":{},"才":{"docs":{},"会":{"docs":{},"执":{"docs":{},"行":{"docs":{},"。":{"docs":{"demos/优雅停机.html":{"ref":"demos/优雅停机.html","tf":0.07142857142857142}}}}}}}}},"等":{"docs":{},"强":{"docs":{},"制":{"docs":{},"关":{"docs":{},"闭":{"docs":{},"指":{"docs":{},"令":{"docs":{},",":{"docs":{},"是":{"docs":{},"不":{"docs":{},"会":{"docs":{},"执":{"docs":{},"行":{"docs":{},"优":{"docs":{},"雅":{"docs":{},"停":{"docs":{},"机":{"docs":{},"的":{"docs":{},",":{"docs":{},"只":{"docs":{},"有":{"docs":{},"通":{"docs":{},"过":{"docs":{},"\"":{"docs":{},"k":{"docs":{},"i":{"docs":{},"l":{"docs":{"demos/优雅停机.html":{"ref":"demos/优雅停机.html","tf":0.07142857142857142}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.02877697841726619}},":":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547},"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}},"w":{"docs":{},"d":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}},":":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}},"以":{"docs":{},"上":{"docs":{},"是":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"最":{"docs":{},"基":{"docs":{},"本":{"docs":{},"的":{"docs":{},"几":{"docs":{},"个":{"docs":{},"需":{"docs":{},"求":{"docs":{},",":{"docs":{},"更":{"docs":{},"多":{"docs":{},"服":{"docs":{},"务":{"docs":{},"治":{"docs":{},"理":{"docs":{},"问":{"docs":{},"题":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{"preface/requirements.html":{"ref":"preface/requirements.html","tf":0.09090909090909091}}}}}}}}}}}}}}}}}}}}}}}}}}}},"版":{"docs":{},"本":{"docs":{},"支":{"docs":{},"持":{"docs":{"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}}}}}},"下":{"docs":{},"依":{"docs":{},"赖":{"docs":{},",":{"docs":{},"在":{"docs":{},"主":{"docs":{},"动":{"docs":{},"配":{"docs":{},"置":{"docs":{},"使":{"docs":{},"用":{"docs":{},"相":{"docs":{},"应":{"docs":{},"实":{"docs":{},"现":{"docs":{},"策":{"docs":{},"略":{"docs":{},"时":{"docs":{},"用":{"docs":{},"到":{"docs":{},",":{"docs":{},"需":{"docs":{},"自":{"docs":{},"行":{"docs":{},"加":{"docs":{},"入":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"。":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"数":{"docs":{},"据":{"docs":{},"供":{"docs":{},"参":{"docs":{},"考":{"docs":{},":":{"docs":{"capacity-plan.html":{"ref":"capacity-plan.html","tf":0.09090909090909091}}}}}}}}},"及":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"上":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"如":{"docs":{},":":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}}}}}}}}}},"星":{"docs":{},"号":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}},"美":{"docs":{},"元":{"docs":{},"符":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}},"逗":{"docs":{},"号":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}},"调":{"docs":{},"用":{"docs":{},"参":{"docs":{},"数":{"docs":{},"为":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},",":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"返":{"docs":{},"回":{"docs":{},"结":{"docs":{},"果":{"docs":{},",":{"docs":{},"可":{"docs":{},"选":{"docs":{},":":{"docs":{},"l":{"docs":{},"r":{"docs":{},"u":{"docs":{},",":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}}}}}}}}}}}}}}}}}}}},"缺":{"docs":{},"省":{"docs":{},"的":{"9":{"0":{"9":{"0":{"docs":{},"端":{"docs":{},"口":{"docs":{},"启":{"docs":{},"动":{"docs":{},"一":{"docs":{},"个":{"docs":{},"简":{"docs":{},"易":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{"reference-maven/maven.html":{"ref":"reference-maven/maven.html","tf":0.05555555555555555}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}},"其":{"docs":{},"次":{"docs":{},",":{"docs":{},"要":{"docs":{},"可":{"docs":{},"以":{"docs":{},"动":{"docs":{},"态":{"docs":{},"调":{"docs":{},"整":{"docs":{},"权":{"docs":{},"重":{"docs":{},",":{"docs":{},"在":{"docs":{},"线":{"docs":{},"上":{"docs":{},",":{"docs":{},"将":{"docs":{},"某":{"docs":{},"台":{"docs":{},"机":{"docs":{},"器":{"docs":{},"的":{"docs":{},"权":{"docs":{},"重":{"docs":{},"一":{"docs":{},"直":{"docs":{},"加":{"docs":{},"大":{"docs":{},",":{"docs":{},"并":{"docs":{},"在":{"docs":{},"加":{"docs":{},"大":{"docs":{},"的":{"docs":{},"过":{"docs":{},"程":{"docs":{},"中":{"docs":{},"记":{"docs":{},"录":{"docs":{},"响":{"docs":{},"应":{"docs":{},"时":{"docs":{},"间":{"docs":{},"的":{"docs":{},"变":{"docs":{},"化":{"docs":{},",":{"docs":{},"直":{"docs":{},"到":{"docs":{},"响":{"docs":{},"应":{"docs":{},"时":{"docs":{},"间":{"docs":{},"到":{"docs":{},"达":{"docs":{},"阀":{"docs":{},"值":{"docs":{},",":{"docs":{},"记":{"docs":{},"录":{"docs":{},"此":{"docs":{},"时":{"docs":{},"的":{"docs":{},"访":{"docs":{},"问":{"docs":{},"量":{"docs":{},",":{"docs":{},"再":{"docs":{},"以":{"docs":{},"此":{"docs":{},"访":{"docs":{},"问":{"docs":{},"量":{"docs":{},"乘":{"docs":{},"以":{"docs":{},"机":{"docs":{},"器":{"docs":{},"数":{"docs":{},"反":{"docs":{},"推":{"docs":{},"总":{"docs":{},"容":{"docs":{},"量":{"docs":{},"。":{"docs":{"preface/requirements.html":{"ref":"preface/requirements.html","tf":0.09090909090909091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"中":{"docs":{},",":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"通":{"docs":{},"过":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"经":{"docs":{},"由":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"传":{"docs":{},"递":{"docs":{},"给":{"docs":{},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},"。":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}}}}}}}}}}}}}}}}}}}}},"协":{"docs":{},"议":{"docs":{},"对":{"docs":{},"应":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"端":{"docs":{},"口":{"docs":{},"对":{"docs":{},"应":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762},"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}},":":{"docs":{"demos/服务降级.html":{"ref":"demos/服务降级.html","tf":0.05}}}},"他":{"docs":{},"正":{"docs":{},"常":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}},"它":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"、":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"、":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"s":{"docs":{},"等":{"docs":{},")":{"docs":{},"的":{"docs":{},"覆":{"docs":{},"盖":{"docs":{},"策":{"docs":{},"略":{"docs":{},"也":{"docs":{},"一":{"docs":{},"样":{"docs":{},"。":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"在":{"docs":{},"大":{"docs":{},"规":{"docs":{},"模":{"docs":{},"服":{"docs":{},"务":{"docs":{},"化":{"docs":{},"之":{"docs":{},"前":{"docs":{},",":{"docs":{},"应":{"docs":{},"用":{"docs":{},"可":{"docs":{},"能":{"docs":{},"只":{"docs":{},"是":{"docs":{},"通":{"docs":{},"过":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"或":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"等":{"docs":{},"工":{"docs":{},"具":{"docs":{},",":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"和":{"docs":{},"引":{"docs":{},"用":{"docs":{},"远":{"docs":{},"程":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"通":{"docs":{},"过":{"docs":{},"配":{"docs":{},"置":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"地":{"docs":{},"址":{"docs":{},"进":{"docs":{},"行":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"通":{"docs":{},"过":{"docs":{},"f":{"5":{"docs":{},"等":{"docs":{},"硬":{"docs":{},"件":{"docs":{},"进":{"docs":{},"行":{"docs":{},"负":{"docs":{},"载":{"docs":{},"均":{"docs":{},"衡":{"docs":{},"。":{"docs":{"preface/requirements.html":{"ref":"preface/requirements.html","tf":0.09090909090909091}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"文":{"docs":{},"件":{"docs":{},"传":{"docs":{},"输":{"docs":{},"时":{"docs":{},",":{"docs":{},"单":{"docs":{},"一":{"docs":{},"连":{"docs":{},"接":{"docs":{},"会":{"docs":{},"成":{"docs":{},"为":{"docs":{},"瓶":{"docs":{},"颈":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}},"一":{"docs":{},"个":{"docs":{},"截":{"docs":{},"面":{"docs":{},"上":{"docs":{},"碰":{"docs":{},"撞":{"docs":{},"的":{"docs":{},"概":{"docs":{},"率":{"docs":{},"高":{"docs":{},",":{"docs":{},"重":{"docs":{},"试":{"docs":{},"时":{"docs":{},",":{"docs":{},"可":{"docs":{},"能":{"docs":{},"出":{"docs":{},"现":{"docs":{},"瞬":{"docs":{},"间":{"docs":{},"压":{"docs":{},"力":{"docs":{},"不":{"docs":{},"均":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}},"但":{"docs":{},"调":{"docs":{},"用":{"docs":{},"量":{"docs":{},"越":{"docs":{},"大":{"docs":{},"分":{"docs":{},"布":{"docs":{},"越":{"docs":{},"均":{"docs":{},"匀":{"docs":{},",":{"docs":{},"而":{"docs":{},"且":{"docs":{},"按":{"docs":{},"概":{"docs":{},"率":{"docs":{},"使":{"docs":{},"用":{"docs":{},"权":{"docs":{},"重":{"docs":{},"后":{"docs":{},"也":{"docs":{},"比":{"docs":{},"较":{"docs":{},"均":{"docs":{},"匀":{"docs":{},",":{"docs":{},"有":{"docs":{},"利":{"docs":{},"于":{"docs":{},"动":{"docs":{},"态":{"docs":{},"调":{"docs":{},"整":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"权":{"docs":{},"重":{"docs":{},"。":{"docs":{"demos/负载均衡.html":{"ref":"demos/负载均衡.html","tf":0.041666666666666664}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"执":{"docs":{},"行":{"docs":{},"部":{"docs":{},"分":{"docs":{},"逻":{"docs":{},"辑":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}},"验":{"docs":{},"证":{"docs":{},"参":{"docs":{},"数":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}},"同":{"docs":{},"时":{"docs":{},"写":{"docs":{},"入":{"docs":{},"所":{"docs":{},"有":{"docs":{},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},",":{"docs":{},"只":{"docs":{},"读":{"docs":{},"取":{"docs":{},"单":{"docs":{},"台":{"docs":{},",":{"docs":{},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},"端":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"同":{"docs":{},"步":{"docs":{},",":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"集":{"docs":{},"群":{"docs":{},"增":{"docs":{},"大":{"docs":{},",":{"docs":{},"性":{"docs":{},"能":{"docs":{},"压":{"docs":{},"力":{"docs":{},"也":{"docs":{},"会":{"docs":{},"更":{"docs":{},"大":{"docs":{},"。":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"集":{"docs":{},"群":{"docs":{},"调":{"docs":{},"用":{"docs":{},"失":{"docs":{},"败":{"docs":{},"时":{"docs":{},",":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"多":{"docs":{},"种":{"docs":{},"容":{"docs":{},"错":{"docs":{},"方":{"docs":{},"案":{"docs":{},",":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"为":{"docs":{},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"重":{"docs":{},"试":{"docs":{},"。":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"负":{"docs":{},"载":{"docs":{},"均":{"docs":{},"衡":{"docs":{},"时":{"docs":{},",":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"多":{"docs":{},"种":{"docs":{},"均":{"docs":{},"衡":{"docs":{},"策":{"docs":{},"略":{"docs":{},",":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"为":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{},"随":{"docs":{},"机":{"docs":{},"调":{"docs":{},"用":{"docs":{},"。":{"docs":{},"可":{"docs":{},"以":{"docs":{},"自":{"docs":{},"行":{"docs":{},"扩":{"docs":{},"展":{"docs":{},"负":{"docs":{},"载":{"docs":{},"均":{"docs":{},"衡":{"docs":{},"策":{"docs":{},"略":{"docs":{},",":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},"负":{"docs":{},"载":{"docs":{},"均":{"docs":{},"衡":{"docs":{},"扩":{"docs":{},"展":{"docs":{"demos/负载均衡.html":{"ref":"demos/负载均衡.html","tf":0.041666666666666664}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"o":{"docs":{},"线":{"docs":{},"程":{"docs":{},"上":{"docs":{},",":{"docs":{},"将":{"docs":{},"连":{"docs":{},"接":{"docs":{},"断":{"docs":{},"开":{"docs":{},"事":{"docs":{},"件":{"docs":{},"放":{"docs":{},"入":{"docs":{},"队":{"docs":{},"列":{"docs":{},",":{"docs":{},"有":{"docs":{},"序":{"docs":{},"逐":{"docs":{},"个":{"docs":{},"执":{"docs":{},"行":{"docs":{},",":{"docs":{},"其":{"docs":{},"它":{"docs":{},"消":{"docs":{},"息":{"docs":{},"派":{"docs":{},"发":{"docs":{},"到":{"docs":{},"线":{"docs":{},"程":{"docs":{},"池":{"docs":{},"。":{"docs":{"demos/线程模型.html":{"ref":"demos/线程模型.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"v":{"docs":{},"m":{"docs":{},"启":{"docs":{},"动":{"docs":{},"参":{"docs":{},"数":{"docs":{},"中":{"docs":{},"加":{"docs":{},"入":{"docs":{"demos/直连提供者.html":{"ref":"demos/直连提供者.html","tf":0.05263157894736842}}}}}}}}}}}},"开":{"docs":{},"发":{"docs":{},"及":{"docs":{},"测":{"docs":{},"试":{"docs":{},"环":{"docs":{},"境":{"docs":{},"下":{"docs":{},",":{"docs":{},"经":{"docs":{},"常":{"docs":{},"需":{"docs":{},"要":{"docs":{},"绕":{"docs":{},"过":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},",":{"docs":{},"只":{"docs":{},"测":{"docs":{},"试":{"docs":{},"指":{"docs":{},"定":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},",":{"docs":{},"这":{"docs":{},"时":{"docs":{},"候":{"docs":{},"可":{"docs":{},"能":{"docs":{},"需":{"docs":{},"要":{"docs":{},"点":{"docs":{},"对":{"docs":{},"点":{"docs":{},"直":{"docs":{},"连":{"docs":{},",":{"docs":{},"点":{"docs":{},"对":{"docs":{},"点":{"docs":{},"直":{"docs":{},"联":{"docs":{},"方":{"docs":{},"式":{"docs":{},",":{"docs":{},"将":{"docs":{},"以":{"docs":{},"服":{"docs":{},"务":{"docs":{},"接":{"docs":{},"口":{"docs":{},"为":{"docs":{},"单":{"docs":{},"位":{"docs":{},",":{"docs":{},"忽":{"docs":{},"略":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"的":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"列":{"docs":{},"表":{"docs":{},",":{"docs":{},"a":{"docs":{},"接":{"docs":{},"口":{"docs":{},"配":{"docs":{},"置":{"docs":{},"点":{"docs":{},"对":{"docs":{},"点":{"docs":{},",":{"docs":{},"不":{"docs":{},"影":{"docs":{},"响":{"docs":{},"b":{"docs":{},"接":{"docs":{},"口":{"docs":{},"从":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"获":{"docs":{},"取":{"docs":{},"列":{"docs":{},"表":{"docs":{},"。":{"docs":{"demos/直连提供者.html":{"ref":"demos/直连提供者.html","tf":0.05263157894736842}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"低":{"docs":{},"压":{"docs":{},"力":{"docs":{},"时":{"docs":{},"间":{"docs":{},"段":{"docs":{},",":{"docs":{},"先":{"docs":{},"升":{"docs":{},"级":{"docs":{},"一":{"docs":{},"半":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"为":{"docs":{},"新":{"docs":{},"版":{"docs":{},"本":{"docs":{"demos/多版本.html":{"ref":"demos/多版本.html","tf":0.1111111111111111}}}}}}}}}}}}}}}}}}}}},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},"端":{"docs":{},"验":{"docs":{},"证":{"docs":{},"参":{"docs":{},"数":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}},"调":{"docs":{},"用":{"docs":{},"之":{"docs":{},"前":{"docs":{},",":{"docs":{},"调":{"docs":{},"用":{"docs":{},"之":{"docs":{},"后":{"docs":{},",":{"docs":{},"出":{"docs":{},"现":{"docs":{},"异":{"docs":{},"常":{"docs":{},"时":{"docs":{},",":{"docs":{},"会":{"docs":{},"触":{"docs":{},"发":{"docs":{},"o":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},",":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"旁":{"docs":{},"边":{"docs":{},"放":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"u":{"docs":{},"b":{"docs":{},"实":{"docs":{},"现":{"docs":{},",":{"docs":{},"它":{"docs":{},"实":{"docs":{},"现":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"接":{"docs":{},"口":{"docs":{},",":{"docs":{},"并":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"传":{"docs":{},"入":{"docs":{},"远":{"docs":{},"程":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"实":{"docs":{},"现":{"docs":{},",":{"docs":{},"它":{"docs":{},"实":{"docs":{},"现":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"接":{"docs":{},"口":{"docs":{},",":{"docs":{},"并":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"无":{"docs":{},"参":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"控":{"docs":{},"制":{"docs":{},"权":{"docs":{},"限":{"docs":{},",":{"docs":{},"以":{"docs":{},"决":{"docs":{},"定":{"docs":{},"要":{"docs":{},"不":{"docs":{},"要":{"docs":{},"下":{"docs":{},"发":{"docs":{},"令":{"docs":{},"牌":{"docs":{},"给":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{"demos/令牌验证.html":{"ref":"demos/令牌验证.html","tf":0.16666666666666666}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"1":{"docs":{},"中":{"docs":{},"需":{"docs":{},"要":{"docs":{},"在":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"文":{"docs":{},"件":{"docs":{},"中":{"docs":{},"的":{"docs":{},"配":{"docs":{},"置":{"docs":{},"项":{"docs":{},",":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"2":{"docs":{},"中":{"docs":{},"配":{"docs":{},"置":{"docs":{},"示":{"docs":{},"例":{"docs":{},"如":{"docs":{},"下":{"docs":{},":":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},".":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"中":{"docs":{},"加":{"docs":{},"入":{"docs":{},"主":{"docs":{},"机":{"docs":{},"地":{"docs":{},"址":{"docs":{},"的":{"docs":{},"配":{"docs":{},"置":{"docs":{},":":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"中":{"docs":{},"增":{"docs":{},"加":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{},"包":{"docs":{},"依":{"docs":{},"赖":{"docs":{},":":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"上":{"docs":{},"尽":{"docs":{},"量":{"docs":{},"多":{"docs":{},"配":{"docs":{},"置":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"端":{"docs":{},"属":{"docs":{},"性":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"以":{"docs":{},"配":{"docs":{},"置":{"docs":{},"的":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"端":{"docs":{},"属":{"docs":{},"性":{"docs":{},"有":{"docs":{},":":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}},"配":{"docs":{},"置":{"docs":{},"后":{"docs":{},",":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"不":{"docs":{},"配":{"docs":{},"置":{"docs":{},"则":{"docs":{},"会":{"docs":{},"使":{"docs":{},"用":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"配":{"docs":{},"置":{"docs":{},"值":{"docs":{},",":{"docs":{},"即":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"配":{"docs":{},"置":{"docs":{},"可":{"docs":{},"以":{"docs":{},"作":{"docs":{},"为":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"值":{"docs":{},"。":{"docs":{},"否":{"docs":{},"则":{"docs":{},",":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"会":{"docs":{},"使":{"docs":{},"用":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"端":{"docs":{},"的":{"docs":{},"全":{"docs":{},"局":{"docs":{},"设":{"docs":{},"置":{"docs":{},",":{"docs":{},"这":{"docs":{},"对":{"docs":{},"于":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"不":{"docs":{},"可":{"docs":{},"控":{"docs":{},"的":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"往":{"docs":{},"往":{"docs":{},"是":{"docs":{},"不":{"docs":{},"合":{"docs":{},"理":{"docs":{},"的":{"docs":{},"。":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"方":{"docs":{},"法":{"docs":{},"上":{"docs":{},"配":{"docs":{},"置":{"docs":{},"(":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},":":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}},"稳":{"docs":{},"定":{"docs":{},"性":{"docs":{},"场":{"docs":{},"景":{"docs":{},"的":{"docs":{},"基":{"docs":{},"础":{"docs":{},"上":{"docs":{},",":{"docs":{},"将":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"和":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"布":{"docs":{},"置":{"docs":{},"成":{"docs":{},"均":{"docs":{},"为":{"2":{"docs":{},"台":{"docs":{},"(":{"docs":{},"一":{"docs":{},"台":{"docs":{},"机":{"docs":{},"器":{"2":{"docs":{},"个":{"docs":{},"实":{"docs":{},"例":{"docs":{},")":{"docs":{},",":{"docs":{},"且":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"从":{"2":{"0":{"docs":{},"b":{"docs":{},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{},"到":{"2":{"0":{"0":{"docs":{},"k":{"docs":{},",":{"docs":{},"每":{"docs":{},"隔":{"1":{"0":{"docs":{},"分":{"docs":{},"钟":{"docs":{},"随":{"docs":{},"机":{"docs":{},"变":{"docs":{},"换":{"docs":{},"。":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}},"docs":{}},"docs":{}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},"并":{"docs":{},"通":{"docs":{},"过":{"docs":{},"在":{"docs":{},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},"获":{"docs":{},"取":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"地":{"docs":{},"址":{"docs":{},"列":{"docs":{},"表":{"docs":{},",":{"docs":{},"实":{"docs":{},"现":{"docs":{},"软":{"docs":{},"负":{"docs":{},"载":{"docs":{},"均":{"docs":{},"衡":{"docs":{},"和":{"docs":{},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{},"降":{"docs":{},"低":{"docs":{},"对":{"docs":{},"f":{"5":{"docs":{},"硬":{"docs":{},"件":{"docs":{},"负":{"docs":{},"载":{"docs":{},"均":{"docs":{},"衡":{"docs":{},"器":{"docs":{},"的":{"docs":{},"依":{"docs":{},"赖":{"docs":{},",":{"docs":{},"也":{"docs":{},"能":{"docs":{},"减":{"docs":{},"少":{"docs":{},"部":{"docs":{},"分":{"docs":{},"成":{"docs":{},"本":{"docs":{},"。":{"docs":{},"(":{"2":{"docs":{},")":{"docs":{"preface/requirements.html":{"ref":"preface/requirements.html","tf":0.09090909090909091}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"发":{"docs":{},"控":{"docs":{},"制":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.005235602094240838},"demos/并发控制.html":{"ref":"demos/并发控制.html","tf":5}}}},"场":{"docs":{},"景":{"docs":{},"(":{"2":{"0":{"docs":{},"并":{"docs":{},"发":{"docs":{},")":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}},"docs":{}},"docs":{}}}}},"行":{"docs":{},"调":{"docs":{},"用":{"docs":{},"多":{"docs":{},"个":{"docs":{},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},",":{"docs":{},"只":{"docs":{},"要":{"docs":{},"一":{"docs":{},"个":{"docs":{},"成":{"docs":{},"功":{"docs":{},"即":{"docs":{},"返":{"docs":{},"回":{"docs":{},",":{"docs":{},"通":{"docs":{},"常":{"docs":{},"用":{"docs":{},"于":{"docs":{},"实":{"docs":{},"时":{"docs":{},"性":{"docs":{},"要":{"docs":{},"求":{"docs":{},"较":{"docs":{},"高":{"docs":{},"的":{"docs":{},"读":{"docs":{},"操":{"docs":{},"作":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}},"。":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}}}}}}}}}}}}}}},"向":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{},":":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"/":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"发":{"docs":{},"送":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"事":{"docs":{},"件":{"docs":{},"。":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},":":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"/":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"下":{"docs":{},",":{"docs":{},"添":{"docs":{},"加":{"docs":{},"当":{"docs":{},"前":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"的":{"docs":{},"地":{"docs":{},"址":{"docs":{},"。":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"接":{"docs":{},"着":{"docs":{},",":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"调":{"docs":{},"用":{"docs":{},"量":{"docs":{},"越":{"docs":{},"来":{"docs":{},"越":{"docs":{},"大":{"docs":{},",":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"容":{"docs":{},"量":{"docs":{},"问":{"docs":{},"题":{"docs":{},"就":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"出":{"docs":{},"来":{"docs":{},",":{"docs":{},"这":{"docs":{},"个":{"docs":{},"服":{"docs":{},"务":{"docs":{},"需":{"docs":{},"要":{"docs":{},"多":{"docs":{},"少":{"docs":{},"机":{"docs":{},"器":{"docs":{},"支":{"docs":{},"撑":{"docs":{},"?":{"docs":{},"什":{"docs":{},"么":{"docs":{},"时":{"docs":{},"候":{"docs":{},"该":{"docs":{},"加":{"docs":{},"机":{"docs":{},"器":{"docs":{},"?":{"docs":{},"为":{"docs":{},"了":{"docs":{},"解":{"docs":{},"决":{"docs":{},"这":{"docs":{},"些":{"docs":{},"问":{"docs":{},"题":{"docs":{},",":{"docs":{},"第":{"docs":{},"一":{"docs":{},"步":{"docs":{},",":{"docs":{},"要":{"docs":{},"将":{"docs":{},"服":{"docs":{},"务":{"docs":{},"现":{"docs":{},"在":{"docs":{},"每":{"docs":{},"天":{"docs":{},"的":{"docs":{},"调":{"docs":{},"用":{"docs":{},"量":{"docs":{},",":{"docs":{},"响":{"docs":{},"应":{"docs":{},"时":{"docs":{},"间":{"docs":{},",":{"docs":{},"都":{"docs":{},"统":{"docs":{},"计":{"docs":{},"出":{"docs":{},"来":{"docs":{},",":{"docs":{},"作":{"docs":{},"为":{"docs":{},"容":{"docs":{},"量":{"docs":{},"规":{"docs":{},"划":{"docs":{},"的":{"docs":{},"参":{"docs":{},"考":{"docs":{},"指":{"docs":{},"标":{"docs":{},"。":{"docs":{"preface/requirements.html":{"ref":"preface/requirements.html","tf":0.09090909090909091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"口":{"docs":{},"增":{"docs":{},"加":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"对":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"无":{"docs":{},"影":{"docs":{},"响":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"该":{"docs":{},"方":{"docs":{},"法":{"docs":{},"不":{"docs":{},"是":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"需":{"docs":{},"要":{"docs":{},"的":{"docs":{},",":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"重":{"docs":{},"新":{"docs":{},"部":{"docs":{},"署":{"docs":{},"。":{"docs":{},"输":{"docs":{},"入":{"docs":{},"参":{"docs":{},"数":{"docs":{},"和":{"docs":{},"结":{"docs":{},"果":{"docs":{},"集":{"docs":{},"中":{"docs":{},"增":{"docs":{},"加":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"对":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"无":{"docs":{},"影":{"docs":{},"响":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"并":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"新":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"不":{"docs":{},"用":{"docs":{},"重":{"docs":{},"新":{"docs":{},"部":{"docs":{},"署":{"docs":{},"。":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"需":{"docs":{},"求":{"docs":{"preface/requirements.html":{"ref":"preface/requirements.html","tf":5}}},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},".":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{},"支":{"docs":{},"持":{"docs":{},",":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"短":{"docs":{},"连":{"docs":{},"接":{"docs":{},"的":{"docs":{},"开":{"docs":{},"销":{"docs":{},"大":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}}}}}}}},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"支":{"docs":{},"持":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.010471204188481676}}}}}}}},"要":{"docs":{},"浪":{"docs":{},"费":{"docs":{},"更":{"docs":{},"多":{"docs":{},"服":{"docs":{},"务":{"docs":{},"资":{"docs":{},"源":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}},"加":{"docs":{},"入":{"docs":{},"依":{"docs":{},"赖":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}},"依":{"docs":{},"赖":{"docs":{},":":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.02631578947368421}}}}}},"a":{"docs":{},"d":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},":":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}},"v":{"docs":{},"i":{"docs":{},"s":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.028795811518324606}}}}},"d":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.011363636363636364}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258},"reference-xmlconf/dubbo-monitor.html":{"ref":"reference-xmlconf/dubbo-monitor.html","tf":0.03571428571428571}}}}}}}},"p":{"docs":{},"i":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}},":":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}},"使":{"docs":{},"用":{"docs":{},"说":{"docs":{},"明":{"docs":{},"如":{"docs":{},"果":{"docs":{},"不":{"docs":{},"想":{"docs":{},"使":{"docs":{},"用":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"而":{"docs":{},"希":{"docs":{},"望":{"docs":{},"通":{"docs":{},"过":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"的":{"docs":{},"方":{"docs":{},"式":{"docs":{},"进":{"docs":{},"行":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"请":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"配":{"docs":{},"置":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"范":{"docs":{},"围":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"仅":{"docs":{},"用":{"docs":{},"于":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},",":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}}}}},"属":{"docs":{},"性":{"docs":{},"含":{"docs":{},"义":{"docs":{},"参":{"docs":{},"考":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"属":{"docs":{},"性":{"docs":{},"与":{"docs":{},"配":{"docs":{},"置":{"docs":{},"项":{"docs":{},"一":{"docs":{},"对":{"docs":{},"一":{"docs":{},",":{"docs":{},"各":{"docs":{},"属":{"docs":{},"性":{"docs":{},"含":{"docs":{},"义":{"docs":{},",":{"docs":{},"请":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},":":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"\"":{"docs":{},")":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"配":{"docs":{},"置":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":5}}}},".":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{},":":{"docs":{"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818},"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}}}}}}},"参":{"docs":{},"考":{"docs":{},"手":{"docs":{},"册":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":5}}}}}},"汇":{"docs":{},"总":{"docs":{},"如":{"docs":{},"下":{"docs":{},":":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.010638297872340425},"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.023809523809523808},"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.014285714285714285},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}},"y":{"docs":{},"y":{"docs":{},"y":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.010638297872340425}},"(":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.010638297872340425}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.049738219895287955}}}}}}},"l":{"docs":{},",":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761},"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}},"e":{"docs":{},"s":{"docs":{},"等":{"docs":{},"类":{"docs":{},"似":{"docs":{},"。":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.00975609756097561},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095}}}}}}},"p":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.00975609756097561},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095}}}}}}},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}},"g":{"docs":{},"s":{"docs":{},")":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}}},"[":{"0":{"docs":{},"]":{"docs":{},";":{"docs":{"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}}}}},"docs":{}}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.029411764705882353}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},")":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.009009009009009009}}}}},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"s":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"o":{"docs":{},"k":{"docs":{},"\"":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"demos/回声测试.html":{"ref":"demos/回声测试.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},",":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"q":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"s":{"docs":{},"(":{"docs":{},"“":{"docs":{},"o":{"docs":{},"k":{"docs":{},"”":{"docs":{},",":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"结":{"docs":{},"果":{"docs":{},"是":{"docs":{},"否":{"docs":{},"马":{"docs":{},"上":{"docs":{},"返":{"docs":{},"回":{"docs":{},".":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"不":{"docs":{},"在":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"中":{"docs":{},"体":{"docs":{},"现":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.02112676056338028}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"b":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}},".":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"demos/多协议.html":{"ref":"demos/多协议.html","tf":0.2222222222222222},"demos/多注册中心.html":{"ref":"demos/多注册中心.html","tf":0.26666666666666666},"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.021739130434782608},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}},"\"":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}},"端":{"docs":{},"配":{"docs":{},"置":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/负载均衡.html":{"ref":"demos/负载均衡.html","tf":0.041666666666666664}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.007853403141361256},"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.05660377358490566}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.00975609756097561},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003},"reference-xmlconf/introduction.html":{"ref":"reference-xmlconf/introduction.html","tf":0.06666666666666667}},"u":{"docs":{},"r":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.05555555555555555}}}},"缓":{"docs":{},"存":{"docs":{"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":3.333333333333333}}}},"为":{"docs":{},"准":{"docs":{},",":{"docs":{},"列":{"docs":{},"举":{"docs":{},"所":{"docs":{},"有":{"docs":{},"配":{"docs":{},"置":{"docs":{},"项":{"docs":{},",":{"docs":{},"其":{"docs":{},"它":{"docs":{},"配":{"docs":{},"置":{"docs":{},"方":{"docs":{},"式":{"docs":{},",":{"docs":{},"请":{"docs":{},"参":{"docs":{},"见":{"docs":{},"相":{"docs":{},"应":{"docs":{},"转":{"docs":{},"换":{"docs":{},"关":{"docs":{},"系":{"docs":{},":":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"reference-xmlconf/introduction.html":{"ref":"reference-xmlconf/introduction.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"reference-xmlconf/introduction.html":{"ref":"reference-xmlconf/introduction.html","tf":0.06666666666666667}}}}}},"p":{"docs":{},"i":{"docs":{"reference-xmlconf/introduction.html":{"ref":"reference-xmlconf/introduction.html","tf":0.06666666666666667}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"demos/线程模型.html":{"ref":"demos/线程模型.html","tf":0.045454545454545456},"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"等":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805}}},"s":{"docs":{},")":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}}}},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}},"m":{"docs":{},".":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},":":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},":":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{},":":{"2":{"docs":{},".":{"1":{"docs":{},".":{"2":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}},".":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.010638297872340425}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.010638297872340425}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}},"e":{"docs":{},";":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}}}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},".":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},";":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.029411764705882353}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}},"e":{"docs":{},";":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.029411764705882353}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}}}}}}}}}}}}}},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}}}}}}}},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.05660377358490566}}}}}}}}}}}}}},"m":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},".":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"=":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"2":{"0":{"8":{"9":{"0":{"docs":{"demos/直连提供者.html":{"ref":"demos/直连提供者.html","tf":0.05263157894736842}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},".":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.010638297872340425}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}}},";":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},";":{"docs":{"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818},"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818},"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}}},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818},"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332},"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762},"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"u":{"docs":{},"b":{"docs":{"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818}}}}}},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},".":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},";":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},";":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},";":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}},";":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.011363636363636364}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564}}}}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"s":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"u":{"docs":{},"p":{"docs":{},"f":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"f":{"docs":{},"l":{"docs":{},"i":{"docs":{},"x":{"docs":{},".":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.029411764705882353}},"e":{"docs":{},"r":{"docs":{},"编":{"docs":{},"译":{"docs":{},"生":{"docs":{},"成":{"docs":{},"相":{"docs":{},"应":{"docs":{},"的":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"代":{"docs":{},"码":{"docs":{},",":{"docs":{},"后":{"docs":{},"续":{"docs":{},"版":{"docs":{},"本":{"docs":{},"中":{"docs":{},"会":{"docs":{},"在":{"docs":{},"这":{"docs":{},"方":{"docs":{},"面":{"docs":{},"做":{"docs":{},"一":{"docs":{},"些":{"docs":{},"增":{"docs":{},"强":{"docs":{},"。":{"docs":{"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":0.04}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.00975609756097561},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095}}},"的":{"docs":{},"配":{"docs":{},"置":{"docs":{},"值":{"docs":{},"(":{"docs":{},"见":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"配":{"docs":{},"置":{"docs":{},"参":{"docs":{},"考":{"docs":{},"手":{"docs":{},"册":{"docs":{},")":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"3":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}},"4":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}},"docs":{},"包":{"docs":{},"(":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"不":{"docs":{},"会":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"这":{"docs":{},"个":{"docs":{},"包":{"docs":{},",":{"docs":{},"请":{"docs":{},"排":{"docs":{},"查":{"docs":{},"自":{"docs":{},"己":{"docs":{},"的":{"docs":{},"应":{"docs":{},"用":{"docs":{},"有":{"docs":{},"没":{"docs":{},"有":{"docs":{},"使":{"docs":{},"用":{"docs":{},")":{"docs":{},"的":{"docs":{},"情":{"docs":{},"况":{"docs":{},"下":{"docs":{},",":{"docs":{},"存":{"docs":{},"在":{"docs":{},"反":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},"安":{"docs":{},"全":{"docs":{},"风":{"docs":{},"险":{"docs":{},"。":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"解":{"docs":{},"决":{"docs":{},"了":{"docs":{},"该":{"docs":{},"问":{"docs":{},"题":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.03597122302158273}}}}}},"u":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.02631578947368421}},"o":{"docs":{},"r":{"docs":{},":":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}},"x":{"docs":{},"f":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.029850746268656716}},":":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}},"是":{"docs":{},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"开":{"docs":{},"源":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},"框":{"docs":{},"架":{"docs":{},":":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"c":{"docs":{},"x":{"docs":{},"f":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},",":{"docs":{},"由":{"docs":{},"x":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"和":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"x":{"docs":{},"合":{"docs":{},"并":{"docs":{},"而":{"docs":{},"来":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.015706806282722512},"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.13333333333333333},"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}},"将":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"中":{"docs":{},"的":{"docs":{},"多":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},"伪":{"docs":{},"装":{"docs":{},"成":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{},"对":{"docs":{},"上":{"docs":{},"层":{"docs":{},"透":{"docs":{},"明":{"docs":{},",":{"docs":{},"伪":{"docs":{},"装":{"docs":{},"过":{"docs":{},"程":{"docs":{},"包":{"docs":{},"含":{"docs":{},"了":{"docs":{},"容":{"docs":{},"错":{"docs":{},"逻":{"docs":{},"辑":{"docs":{},",":{"docs":{},"调":{"docs":{},"用":{"docs":{},"失":{"docs":{},"败":{"docs":{},"后":{"docs":{},",":{"docs":{},"重":{"docs":{},"试":{"docs":{},"另":{"docs":{},"一":{"docs":{},"个":{"docs":{},"。":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.058823529411764705},"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.006006006006006006},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818},"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.013793103448275862},"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818},"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332},"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},")":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}},"\"":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"/":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009}}}}}}}}}}}}},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.00975609756097561},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095}},"i":{"docs":{},"p":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904}}}}}}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.014388489208633094}},":":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.016129032258064516},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.013333333333333334}},"=":{"docs":{},"\"":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"\"":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}},",":{"docs":{},"总":{"docs":{},"是":{"docs":{},"会":{"docs":{},"返":{"docs":{},"回":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"当":{"docs":{},"服":{"docs":{},"务":{"docs":{},"恢":{"docs":{},"复":{"docs":{},"时":{"docs":{},",":{"docs":{},"能":{"docs":{},"自":{"docs":{},"动":{"docs":{},"连":{"docs":{},"上":{"docs":{},"。":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"\b":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"的":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"容":{"docs":{},"器":{"docs":{},"是":{"docs":{},"懒":{"docs":{},"加":{"docs":{},"载":{"docs":{},"的":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"通":{"docs":{},"过":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"编":{"docs":{},"程":{"docs":{},"延":{"docs":{},"迟":{"docs":{},"引":{"docs":{},"用":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"请":{"docs":{},"关":{"docs":{},"闭":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},",":{"docs":{},"否":{"docs":{},"则":{"docs":{},"服":{"docs":{},"务":{"docs":{},"临":{"docs":{},"时":{"docs":{},"不":{"docs":{},"可":{"docs":{},"用":{"docs":{},"时":{"docs":{},",":{"docs":{},"会":{"docs":{},"抛":{"docs":{},"出":{"docs":{},"异":{"docs":{},"常":{"docs":{},",":{"docs":{},"拿":{"docs":{},"到":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.011363636363636364}}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.00975609756097561},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095}}}}}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"demos/线程模型.html":{"ref":"demos/线程模型.html","tf":0.045454545454545456},"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.06382978723404255},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.013333333333333334},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761},"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403},"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}},"e":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.02127659574468085}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.02127659574468085}}}}}}}}}}}}}},"方":{"docs":{},"法":{"docs":{},"中":{"docs":{},"会":{"docs":{},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.02127659574468085}}}}}}}}}}}}}},"会":{"docs":{},"持":{"docs":{},"有":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},",":{"docs":{},"不":{"docs":{},"要":{"docs":{},"在":{"docs":{},"外":{"docs":{},"部":{"docs":{},"再":{"docs":{},"调":{"docs":{},"用":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"的":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"导":{"docs":{},"致":{"docs":{},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"内":{"docs":{},"的":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"失":{"docs":{},"效":{"docs":{},"!":{"docs":{"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.02127659574468085}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.011363636363636364},"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818},"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}},"捕":{"docs":{},"获":{"docs":{},"异":{"docs":{},"常":{"docs":{},",":{"docs":{},"如":{"docs":{},":":{"docs":{"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}}}}}}}}},"应":{"docs":{},"该":{"docs":{},"加":{"docs":{},"上":{"docs":{},"合":{"docs":{},"适":{"docs":{},"的":{"docs":{},"回":{"docs":{},"滚":{"docs":{},"边":{"docs":{},"界":{"docs":{},"上":{"docs":{},"。":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}},"起":{"docs":{},"来":{"docs":{},"。":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}},"e":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"=":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.017045454545454544}},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},")":{"docs":{},"{":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}},".":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.022727272727272728}},"e":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"1":{"0":{"docs":{},".":{"2":{"0":{"docs":{},".":{"1":{"6":{"0":{"docs":{},".":{"1":{"9":{"8":{"docs":{},"/":{"docs":{},"w":{"docs":{},"i":{"docs":{},"k":{"docs":{},"i":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"/":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}},"(":{"docs":{},")":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}},".":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}}},"与":{"docs":{},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"功":{"docs":{},"能":{"docs":{},"正":{"docs":{},"交":{"docs":{},"分":{"docs":{},"解":{"docs":{},":":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}}}}}}},"=":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"等":{"docs":{},"接":{"docs":{},"口":{"docs":{},",":{"docs":{},"只":{"docs":{},"能":{"docs":{},"用":{"docs":{},"j":{"docs":{},"d":{"docs":{},"k":{"docs":{},"自":{"docs":{},"带":{"docs":{},"的":{"docs":{},"实":{"docs":{},"现":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"会":{"docs":{},"做":{"docs":{},"特":{"docs":{},"殊":{"docs":{},"处":{"docs":{},"理":{"docs":{},",":{"docs":{},"自":{"docs":{},"定":{"docs":{},"义":{"docs":{},"实":{"docs":{},"现":{"docs":{},"类":{"docs":{},"中":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},"值":{"docs":{},"都":{"docs":{},"会":{"docs":{},"丢":{"docs":{},"失":{"docs":{},"。":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403},"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}},"t":{"docs":{},"x":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"demos/回声测试.html":{"ref":"demos/回声测试.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"u":{"docs":{"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"perf-test.html":{"ref":"perf-test.html","tf":0.006289308176100629}},"个":{"docs":{},"数":{"docs":{},"+":{"1":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805}}},"docs":{}}}},"、":{"docs":{},"内":{"docs":{},"存":{"docs":{},"、":{"docs":{},"网":{"docs":{},"络":{"docs":{},"、":{"docs":{},"磁":{"docs":{},"盘":{"docs":{},"、":{"docs":{},"文":{"docs":{},"件":{"docs":{},"句":{"docs":{},"柄":{"docs":{},"占":{"docs":{},"用":{"docs":{},"平":{"docs":{},"稳":{"docs":{},"。":{"docs":{},"通":{"docs":{},"过":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.02158273381294964}}}},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"o":{"docs":{},"y":{"docs":{},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"命":{"docs":{},"令":{"docs":{},"分":{"docs":{},"析":{"docs":{},",":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"以":{"docs":{},"下":{"docs":{},"三":{"docs":{},"方":{"docs":{},"库":{"docs":{},":":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"y":{"docs":{},":":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"@":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"(":{"1":{"docs":{},")":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}},"docs":{}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},")":{"docs":{},"。":{"docs":{"reference-protocol/memcached.html":{"ref":"reference-protocol/memcached.html","tf":0.047619047619047616}}}}}}}}},"(":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},")":{"docs":{},"。":{"docs":{"reference-protocol/redis.html":{"ref":"reference-protocol/redis.html","tf":0.05}}}}}}}}}},"a":{"docs":{},"y":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095}}}}},"m":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931},"benchmark.html":{"ref":"benchmark.html","tf":0.07142857142857142}},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},".":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358},"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.014388489208633094}},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{},":":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}},"o":{"docs":{},"g":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"本":{"docs":{},"身":{"docs":{},"也":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"标":{"docs":{},"准":{"docs":{},"的":{"docs":{},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},"服":{"docs":{},"务":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"本":{"docs":{},"身":{"docs":{},"就":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"普":{"docs":{},"通":{"docs":{},"的":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"减":{"docs":{},"少":{"docs":{},"第":{"docs":{},"三":{"docs":{},"方":{"docs":{},"依":{"docs":{},"赖":{"docs":{},",":{"docs":{},"使":{"docs":{},"整":{"docs":{},"体":{"docs":{},"通":{"docs":{},"讯":{"docs":{},"方":{"docs":{},"式":{"docs":{},"一":{"docs":{},"致":{"docs":{},"。":{"docs":{"reference-registry/simple.html":{"ref":"reference-registry/simple.html","tf":0.09090909090909091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095}}}}}}}}},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"1":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}},".":{"0":{"docs":{},".":{"1":{"3":{"docs":{},"及":{"docs":{},"其":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{},"支":{"docs":{},"持":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}},"(":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"2":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},"+":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}},")":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.006289308176100629}}}}}}}}}}}},"docs":{}}}}}}}}}},"2":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.025157232704402517}},".":{"0":{"docs":{},".":{"0":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{},"支":{"docs":{},"持":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}}}}},"5":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"端":{"docs":{},"口":{"docs":{},"支":{"docs":{},"持":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"命":{"docs":{},"令":{"docs":{},",":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"的":{"docs":{},"性":{"docs":{},"能":{"docs":{},"测":{"docs":{},"试":{"docs":{},"结":{"docs":{},"论":{"docs":{},"为":{"docs":{},"通":{"docs":{},"过":{"docs":{},",":{"docs":{},"从":{"docs":{},"性":{"docs":{},"能":{"docs":{},"、":{"docs":{},"内":{"docs":{},"存":{"docs":{},"占":{"docs":{},"用":{"docs":{},"和":{"docs":{},"稳":{"docs":{},"定":{"docs":{},"性":{"docs":{},"上":{"docs":{},"都":{"docs":{},"有":{"docs":{},"了":{"docs":{},"提":{"docs":{},"高":{"docs":{},"和":{"docs":{},"改":{"docs":{},"进":{"docs":{},"。":{"docs":{},"由":{"docs":{},"其":{"docs":{},"是":{"docs":{},"内":{"docs":{},"存":{"docs":{},"管":{"docs":{},"理":{"docs":{},"由":{"docs":{},"于":{"docs":{},"将":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"换":{"docs":{},"成":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},",":{"docs":{},"大":{"docs":{},"大":{"docs":{},"减":{"docs":{},"少":{"docs":{},"了":{"1":{"docs":{},".":{"0":{"docs":{},"版":{"docs":{},"本":{"docs":{},"在":{"docs":{},"高":{"docs":{},"并":{"docs":{},"发":{"docs":{},"大":{"docs":{},"数":{"docs":{},"据":{"docs":{},"下":{"docs":{},"的":{"docs":{},"内":{"docs":{},"存":{"docs":{},"大":{"docs":{},"锯":{"docs":{},"齿":{"docs":{},"。":{"docs":{},"如":{"docs":{},"下":{"docs":{},"图":{"docs":{},":":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"相":{"docs":{},"比":{"docs":{},"较":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"1":{"docs":{},".":{"0":{"docs":{},"(":{"docs":{},"默":{"docs":{},"认":{"docs":{},"使":{"docs":{},"用":{"docs":{},"的":{"docs":{},"都":{"docs":{},"是":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"2":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},")":{"docs":{},"性":{"docs":{},"能":{"docs":{},"均":{"docs":{},"有":{"docs":{},"提":{"docs":{},"升":{"docs":{},"(":{"docs":{},"除":{"docs":{},"了":{"5":{"0":{"docs":{},"k":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}},"1":{"docs":{},".":{"0":{"docs":{},"及":{"docs":{},"其":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{},"支":{"docs":{},"持":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.013333333333333334},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.014084507042253521}}}}}}}}}}},"docs":{}}},"docs":{}},"中":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"配":{"docs":{},"置":{"docs":{},"项":{"docs":{},"都":{"docs":{},"可":{"docs":{},"以":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"配":{"docs":{},"置":{"docs":{},"中":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"可":{"docs":{},"以":{"docs":{},"针":{"docs":{},"对":{"docs":{},"单":{"docs":{},"个":{"docs":{},"服":{"docs":{},"务":{"docs":{},"配":{"docs":{},"置":{"docs":{},"。":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/本地调用.html":{"ref":"demos/本地调用.html","tf":0.0625},"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.02127659574468085},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.014634146341463415},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258},"reference-xmlconf/dubbo-monitor.html":{"ref":"reference-xmlconf/dubbo-monitor.html","tf":0.03571428571428571},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.008379888268156424},"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.058823529411764705},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.029850746268656716},"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":0.04}},"协":{"docs":{},"议":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}},"缺":{"docs":{},"省":{"docs":{},"为":{"docs":{},"a":{"docs":{},"l":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805}}}},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"2":{"docs":{},",":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"协":{"docs":{},"议":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"为":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},",":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"协":{"docs":{},"议":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"为":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.00975609756097561},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}},"y":{"docs":{},",":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"协":{"docs":{},"议":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"为":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}}}}}}}}},"端":{"docs":{},"口":{"docs":{},"为":{"2":{"0":{"8":{"8":{"0":{"docs":{},",":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"协":{"docs":{},"议":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"端":{"docs":{},"口":{"docs":{},"为":{"1":{"0":{"9":{"9":{"docs":{},",":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"和":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"协":{"docs":{},"议":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"端":{"docs":{},"口":{"docs":{},"为":{"8":{"0":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}},"每":{"docs":{},"服":{"docs":{},"务":{"docs":{},"每":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"每":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"使":{"docs":{},"用":{"docs":{},"单":{"docs":{},"一":{"docs":{},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"数":{"docs":{},"据":{"docs":{},"量":{"docs":{},"较":{"docs":{},"大":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"多":{"docs":{},"个":{"docs":{},"连":{"docs":{},"接":{"docs":{},"。":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"=":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{"configuration/properties.html":{"ref":"configuration/properties.html","tf":0.045454545454545456}}}}}}}}}},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"=":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"configuration/properties.html":{"ref":"configuration/properties.html","tf":0.045454545454545456}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"=":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"4":{"docs":{},"j":{"docs":{"demos/日志适配.html":{"ref":"demos/日志适配.html","tf":0.07692307692307693}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"configuration/properties.html":{"ref":"configuration/properties.html","tf":0.045454545454545456},"demos/日志适配.html":{"ref":"demos/日志适配.html","tf":0.07692307692307693},"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886},"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403},"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549},"recommend.html":{"ref":"recommend.html","tf":0.018867924528301886}}}}}}},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},".":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"=":{"2":{"0":{"8":{"8":{"0":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.03333333333333333}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"=":{"2":{"0":{"5":{"docs":{},".":{"1":{"8":{"2":{"docs":{},".":{"2":{"3":{"docs":{},".":{"2":{"0":{"1":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.03333333333333333}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"=":{"1":{"0":{"docs":{},".":{"2":{"0":{"docs":{},".":{"1":{"5":{"3":{"docs":{},".":{"1":{"0":{"docs":{},":":{"9":{"0":{"9":{"0":{"docs":{"configuration/properties.html":{"ref":"configuration/properties.html","tf":0.045454545454545456}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}},"e":{"docs":{},",":{"docs":{},"前":{"docs":{},"面":{"docs":{},"两":{"docs":{},"个":{"docs":{},"都":{"docs":{},"是":{"docs":{},"指":{"docs":{},"订":{"docs":{},"阅":{"docs":{},"成":{"docs":{},"功":{"docs":{},",":{"docs":{},"但":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"列":{"docs":{},"表":{"docs":{},"是":{"docs":{},"否":{"docs":{},"为":{"docs":{},"空":{"docs":{},"是":{"docs":{},"否":{"docs":{},"报":{"docs":{},"错":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"注":{"docs":{},"册":{"docs":{},"订":{"docs":{},"阅":{"docs":{},"失":{"docs":{},"败":{"docs":{},"时":{"docs":{},",":{"docs":{},"也":{"docs":{},"允":{"docs":{},"许":{"docs":{},"启":{"docs":{},"动":{"docs":{},",":{"docs":{},"需":{"docs":{},"使":{"docs":{},"用":{"docs":{},"此":{"docs":{},"选":{"docs":{},"项":{"docs":{},",":{"docs":{},"将":{"docs":{},"在":{"docs":{},"后":{"docs":{},"台":{"docs":{},"定":{"docs":{},"时":{"docs":{},"重":{"docs":{},"试":{"docs":{},"。":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"=":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}},"z":{"docs":{},"k":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}},"e":{"docs":{},",":{"docs":{},"强":{"docs":{},"制":{"docs":{},"改":{"docs":{},"变":{"docs":{},"所":{"docs":{},"有":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"的":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"值":{"docs":{},",":{"docs":{},"就":{"docs":{},"算":{"docs":{},"配":{"docs":{},"置":{"docs":{},"中":{"docs":{},"有":{"docs":{},"声":{"docs":{},"明":{"docs":{},",":{"docs":{},"也":{"docs":{},"会":{"docs":{},"被":{"docs":{},"覆":{"docs":{},"盖":{"docs":{},"。":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}},"e":{"docs":{},",":{"docs":{},"是":{"docs":{},"设":{"docs":{},"置":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"的":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"值":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"配":{"docs":{},"置":{"docs":{},"中":{"docs":{},"有":{"docs":{},"显":{"docs":{},"式":{"docs":{},"的":{"docs":{},"声":{"docs":{},"明":{"docs":{},",":{"docs":{},"如":{"docs":{},":":{"docs":{},",":{"docs":{},"不":{"docs":{},"会":{"docs":{},"受":{"docs":{},"影":{"docs":{},"响":{"docs":{},"。":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"=":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{},"j":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},",":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"4":{"docs":{},"j":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"demos/日志适配.html":{"ref":"demos/日志适配.html","tf":0.07692307692307693}},":":{"docs":{"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353}}}}}},"j":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"=":{"docs":{},"/":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"/":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"=":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},",":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"s":{"docs":{},",":{"docs":{},"s":{"docs":{},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"=":{"8":{"0":{"8":{"0":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"4":{"docs":{},"j":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"=":{"docs":{},"/":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"/":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"=":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"=":{"2":{"0":{"8":{"8":{"0":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}},"docs":{}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"=":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}},"将":{"docs":{},"自":{"docs":{},"动":{"docs":{},"加":{"docs":{},"载":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"根":{"docs":{},"目":{"docs":{},"录":{"docs":{},"下":{"docs":{},"的":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{},"j":{"docs":{},"v":{"docs":{},"m":{"docs":{},"启":{"docs":{},"动":{"docs":{},"参":{"docs":{},"数":{"docs":{},":":{"docs":{"configuration/properties.html":{"ref":"configuration/properties.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"缺":{"docs":{},"省":{"docs":{},"会":{"docs":{},"在":{"docs":{},"启":{"docs":{},"动":{"docs":{},"时":{"docs":{},"检":{"docs":{},"查":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},"是":{"docs":{},"否":{"docs":{},"可":{"docs":{},"用":{"docs":{},",":{"docs":{},"不":{"docs":{},"可":{"docs":{},"用":{"docs":{},"时":{"docs":{},"会":{"docs":{},"抛":{"docs":{},"出":{"docs":{},"异":{"docs":{},"常":{"docs":{},",":{"docs":{},"阻":{"docs":{},"止":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"完":{"docs":{},"成":{"docs":{},",":{"docs":{},"以":{"docs":{},"便":{"docs":{},"上":{"docs":{},"线":{"docs":{},"时":{"docs":{},",":{"docs":{},"能":{"docs":{},"及":{"docs":{},"早":{"docs":{},"发":{"docs":{},"现":{"docs":{},"问":{"docs":{},"题":{"docs":{},",":{"docs":{},"默":{"docs":{},"认":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"协":{"docs":{},"议":{"docs":{},"不":{"docs":{},"适":{"docs":{},"合":{"docs":{},"传":{"docs":{},"送":{"docs":{},"大":{"docs":{},"数":{"docs":{},"据":{"docs":{},"量":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"传":{"docs":{},"文":{"docs":{},"件":{"docs":{},",":{"docs":{},"传":{"docs":{},"视":{"docs":{},"频":{"docs":{},"等":{"docs":{},",":{"docs":{},"除":{"docs":{},"非":{"docs":{},"请":{"docs":{},"求":{"docs":{},"量":{"docs":{},"很":{"docs":{},"低":{"docs":{},"。":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"采":{"docs":{},"用":{"docs":{},"单":{"docs":{},"一":{"docs":{},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{},"和":{"docs":{},"n":{"docs":{},"i":{"docs":{},"o":{"docs":{},"异":{"docs":{},"步":{"docs":{},"通":{"docs":{},"讯":{"docs":{},",":{"docs":{},"适":{"docs":{},"合":{"docs":{},"于":{"docs":{},"小":{"docs":{},"数":{"docs":{},"据":{"docs":{},"量":{"docs":{},"大":{"docs":{},"并":{"docs":{},"发":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"以":{"docs":{},"及":{"docs":{},"服":{"docs":{},"务":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"机":{"docs":{},"器":{"docs":{},"数":{"docs":{},"远":{"docs":{},"大":{"docs":{},"于":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"机":{"docs":{},"器":{"docs":{},"数":{"docs":{},"的":{"docs":{},"情":{"docs":{},"况":{"docs":{},"。":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"通":{"docs":{},"过":{"docs":{},"j":{"docs":{},"d":{"docs":{},"k":{"docs":{},"的":{"docs":{},"s":{"docs":{},"h":{"docs":{},"u":{"docs":{},"t":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"来":{"docs":{},"完":{"docs":{},"成":{"docs":{},"优":{"docs":{},"雅":{"docs":{},"停":{"docs":{},"机":{"docs":{},"的":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"如":{"docs":{},"果":{"docs":{},"用":{"docs":{},"户":{"docs":{},"使":{"docs":{},"用":{"docs":{},"\"":{"docs":{},"k":{"docs":{},"i":{"docs":{},"l":{"docs":{"demos/优雅停机.html":{"ref":"demos/优雅停机.html","tf":0.07142857142857142}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.03333333333333333}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":5}},"e":{"docs":{},"、":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},":":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"没":{"docs":{},"有":{"docs":{},"配":{"docs":{},"置":{"docs":{},"负":{"docs":{},"责":{"docs":{},"人":{"docs":{},",":{"docs":{},"则":{"docs":{},"使":{"docs":{},"用":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},":":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"设":{"docs":{},"置":{"docs":{},"的":{"docs":{},"负":{"docs":{},"责":{"docs":{},"人":{"docs":{},"。":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":5}}}}},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":5},"reference-maven/maven.html":{"ref":"reference-maven/maven.html","tf":0.1111111111111111}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":5}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":5}}}}}}},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-parameter.html":{"ref":"reference-xmlconf/dubbo-parameter.html","tf":5}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"reference-xmlconf/dubbo-monitor.html":{"ref":"reference-xmlconf/dubbo-monitor.html","tf":5}}}}}}},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":5}}}}}},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":5}}}}}}}},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":5}}}}},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":5}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":5}}}}}}},"r":{"docs":{"reference-maven/maven.html":{"ref":"reference-maven/maven.html","tf":0.1111111111111111}}}},"/":{"docs":{},"/":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":5}}}}},"中":{"docs":{},"除":{"docs":{},"这":{"docs":{},"里":{"docs":{},"声":{"docs":{},"明":{"docs":{},"以":{"docs":{},"外":{"docs":{},"的":{"docs":{},"接":{"docs":{},"口":{"docs":{},"或":{"docs":{},"类":{"docs":{},",":{"docs":{},"都":{"docs":{},"是":{"docs":{},"内":{"docs":{},"部":{"docs":{},"接":{"docs":{},"口":{"docs":{},"或":{"docs":{},"扩":{"docs":{},"展":{"docs":{},"接":{"docs":{},"口":{"docs":{},",":{"docs":{},"普":{"docs":{},"通":{"docs":{},"用":{"docs":{},"户":{"docs":{},"请":{"docs":{},"不":{"docs":{},"要":{"docs":{},"直":{"docs":{},"接":{"docs":{},"依":{"docs":{},"赖":{"docs":{},",":{"docs":{},"否":{"docs":{},"则":{"docs":{},"升":{"docs":{},"级":{"docs":{},"版":{"docs":{},"本":{"docs":{},"可":{"docs":{},"能":{"docs":{},"出":{"docs":{},"现":{"docs":{},"不":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"。":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"常":{"docs":{},"规":{"docs":{},"功":{"docs":{},"能":{"docs":{},",":{"docs":{},"都":{"docs":{},"保":{"docs":{},"持":{"docs":{},"零":{"docs":{},"侵":{"docs":{},"入":{"docs":{},",":{"docs":{},"但":{"docs":{},"有":{"docs":{},"些":{"docs":{},"功":{"docs":{},"能":{"docs":{},"不":{"docs":{},"得":{"docs":{},"不":{"docs":{},"用":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"侵":{"docs":{},"入":{"docs":{},"才":{"docs":{},"能":{"docs":{},"实":{"docs":{},"现":{"docs":{},"。":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"设":{"docs":{},"计":{"docs":{},"目":{"docs":{},"的":{"docs":{},"是":{"docs":{},"为":{"docs":{},"了":{"docs":{},"满":{"docs":{},"足":{"docs":{},"高":{"docs":{},"并":{"docs":{},"发":{"docs":{},"小":{"docs":{},"数":{"docs":{},"据":{"docs":{},"量":{"docs":{},"的":{"docs":{},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"在":{"docs":{},"大":{"docs":{},"数":{"docs":{},"据":{"docs":{},"量":{"docs":{},"下":{"docs":{},"的":{"docs":{},"性":{"docs":{},"能":{"docs":{},"表":{"docs":{},"现":{"docs":{},"并":{"docs":{},"不":{"docs":{},"好":{"docs":{},",":{"docs":{},"建":{"docs":{},"议":{"docs":{},"使":{"docs":{},"用":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"或":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"协":{"docs":{},"议":{"docs":{},"。":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}},"配":{"docs":{},"置":{"docs":{},"中":{"docs":{},"的":{"docs":{},"超":{"docs":{},"时":{"docs":{},"时":{"docs":{},"间":{"docs":{},"对":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"无":{"docs":{},"效":{"docs":{},",":{"docs":{},"需":{"docs":{},"使":{"docs":{},"用":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"启":{"docs":{},"动":{"docs":{},"参":{"docs":{},"数":{"docs":{},"设":{"docs":{},"置":{"docs":{},":":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"参":{"docs":{},"考":{"docs":{},"手":{"docs":{},"册":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.018867924528301886}}}}}}}},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},"相":{"docs":{},"比":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"2":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},"百":{"docs":{},"分":{"docs":{},"比":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.012578616352201259}}}}}}}}},"docs":{}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{},".":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.006289308176100629}}}}}}}},"d":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"=":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"configuration/properties.html":{"ref":"configuration/properties.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"=":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{},"j":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},",":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"4":{"docs":{},"j":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"v":{"docs":{},"e":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"=":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"demos/直连提供者.html":{"ref":"demos/直连提供者.html","tf":0.05263157894736842}}}}}}}}}}}}}}},"指":{"docs":{},"定":{"docs":{},"映":{"docs":{},"射":{"docs":{},"文":{"docs":{},"件":{"docs":{},"路":{"docs":{},"径":{"docs":{},",":{"docs":{},"此":{"docs":{},"配":{"docs":{},"置":{"docs":{},"优":{"docs":{},"先":{"docs":{},"级":{"docs":{},"高":{"docs":{},"于":{"docs":{},"中":{"docs":{},"的":{"docs":{},"配":{"docs":{},"置":{"docs":{},",":{"1":{"docs":{},".":{"0":{"docs":{},".":{"1":{"5":{"docs":{},"及":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{},"支":{"docs":{},"持":{"docs":{"demos/直连提供者.html":{"ref":"demos/直连提供者.html","tf":0.05263157894736842}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"=":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"4":{"docs":{},"j":{"docs":{"demos/日志适配.html":{"ref":"demos/日志适配.html","tf":0.07692307692307693}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"参":{"docs":{},"数":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}},"优":{"docs":{},"先":{"docs":{},",":{"docs":{},"这":{"docs":{},"样":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"户":{"docs":{},"在":{"docs":{},"部":{"docs":{},"署":{"docs":{},"和":{"docs":{},"启":{"docs":{},"动":{"docs":{},"时":{"docs":{},"进":{"docs":{},"行":{"docs":{},"参":{"docs":{},"数":{"docs":{},"重":{"docs":{},"写":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"在":{"docs":{},"启":{"docs":{},"动":{"docs":{},"时":{"docs":{},"需":{"docs":{},"改":{"docs":{},"变":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"端":{"docs":{},"口":{"docs":{},"。":{"docs":{"configuration/properties.html":{"ref":"configuration/properties.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"映":{"docs":{},"射":{"docs":{},"服":{"docs":{},"务":{"docs":{},"地":{"docs":{},"址":{"docs":{},",":{"docs":{},"如":{"docs":{},":":{"docs":{"demos/直连提供者.html":{"ref":"demos/直连提供者.html","tf":0.05263157894736842}}}}}}}}}}},"或":{"docs":{},"者":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"中":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"demos/线程模型.html":{"ref":"demos/线程模型.html","tf":0.045454545454545456}},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"代":{"docs":{},"表":{"docs":{},"多":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"把":{"docs":{},"它":{"docs":{},"看":{"docs":{},"成":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},",":{"docs":{},"但":{"docs":{},"与":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"不":{"docs":{},"同":{"docs":{},"的":{"docs":{},"是":{"docs":{},",":{"docs":{},"它":{"docs":{},"的":{"docs":{},"值":{"docs":{},"可":{"docs":{},"能":{"docs":{},"是":{"docs":{},"动":{"docs":{},"态":{"docs":{},"变":{"docs":{},"化":{"docs":{},"的":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"推":{"docs":{},"送":{"docs":{},"变":{"docs":{},"更":{"docs":{},"。":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}},"l":{"docs":{},"i":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"demos/线程模型.html":{"ref":"demos/线程模型.html","tf":0.045454545454545456},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.00975609756097561}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"。":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},".":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},".":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"=":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"2":{"0":{"8":{"9":{"0":{"docs":{"demos/直连提供者.html":{"ref":"demos/直连提供者.html","tf":0.05263157894736842}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.012012012012012012}},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}},",":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403},"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564}}}}},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"=":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{"reference-maven/maven.html":{"ref":"reference-maven/maven.html","tf":0.05555555555555555}}}}}}}}}}}}}}}}},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.016129032258064516},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095}},"i":{"docs":{},"c":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762},"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},".":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},".":{"docs":{},"t":{"docs":{},"c":{"docs":{},"p":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"=":{"3":{"0":{"0":{"0":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}},",":{"docs":{},"参":{"docs":{},"见":{"docs":{},"下":{"docs":{},"面":{"docs":{},"的":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"配":{"docs":{},"置":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"=":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{},"y":{"docs":{},"y":{"docs":{},"y":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"reference-maven/maven.html":{"ref":"reference-maven/maven.html","tf":0.05555555555555555}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"=":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},".":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{"reference-maven/maven.html":{"ref":"reference-maven/maven.html","tf":0.05555555555555555}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"=":{"9":{"0":{"9":{"9":{"docs":{"reference-maven/maven.html":{"ref":"reference-maven/maven.html","tf":0.05555555555555555}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"=":{"1":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{"reference-maven/maven.html":{"ref":"reference-maven/maven.html","tf":0.05555555555555555}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"n":{"docs":{},"监":{"docs":{},"控":{"docs":{},"服":{"docs":{},"务":{"docs":{},"在":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"上":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},":":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}},":":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}},"c":{"docs":{},"k":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095}},"等":{"docs":{},"系":{"docs":{},"统":{"docs":{},"集":{"docs":{},"成":{"docs":{},",":{"docs":{},"普":{"docs":{},"通":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"或":{"docs":{},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},",":{"docs":{},"请":{"docs":{},"采":{"docs":{},"用":{"docs":{},"配":{"docs":{},"置":{"docs":{},"方":{"docs":{},"式":{"docs":{},"使":{"docs":{},"用":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},",":{"docs":{},"请":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"s":{"docs":{},"t":{"docs":{},"u":{"docs":{},"b":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"子":{"docs":{},"集":{"docs":{},",":{"docs":{},"便":{"docs":{},"于":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"在":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"执":{"docs":{},"行":{"docs":{},"容":{"docs":{},"错":{"docs":{},"逻":{"docs":{},"辑":{"docs":{},",":{"docs":{},"因":{"docs":{},"经":{"docs":{},"常":{"docs":{},"需":{"docs":{},"要":{"docs":{},"在":{"docs":{},"出":{"docs":{},"现":{"docs":{},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"比":{"docs":{},"如":{"docs":{},"网":{"docs":{},"络":{"docs":{},"失":{"docs":{},"败":{"docs":{},",":{"docs":{},"超":{"docs":{},"时":{"docs":{},"等":{"docs":{},")":{"docs":{},"时":{"docs":{},"进":{"docs":{},"行":{"docs":{},"容":{"docs":{},"错":{"docs":{},",":{"docs":{},"而":{"docs":{},"在":{"docs":{},"出":{"docs":{},"现":{"docs":{},"业":{"docs":{},"务":{"docs":{},"异":{"docs":{},"常":{"docs":{},"(":{"docs":{},"比":{"docs":{},"如":{"docs":{},"登":{"docs":{},"录":{"docs":{},"用":{"docs":{},"户":{"docs":{},"名":{"docs":{},"密":{"docs":{},"码":{"docs":{},"错":{"docs":{},"误":{"docs":{},")":{"docs":{},"时":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"容":{"docs":{},"错":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"用":{"docs":{},"s":{"docs":{},"t":{"docs":{},"u":{"docs":{},"b":{"docs":{},",":{"docs":{},"可":{"docs":{},"能":{"docs":{},"就":{"docs":{},"需":{"docs":{},"要":{"docs":{},"捕":{"docs":{},"获":{"docs":{},"并":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"类":{"docs":{},",":{"docs":{},"而":{"docs":{},"用":{"docs":{},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"就":{"docs":{},"可":{"docs":{},"以":{"docs":{},"不":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"它":{"docs":{},"的":{"docs":{},"约":{"docs":{},"定":{"docs":{},"就":{"docs":{},"是":{"docs":{},"只":{"docs":{},"有":{"docs":{},"出":{"docs":{},"现":{"docs":{},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"时":{"docs":{},"才":{"docs":{},"执":{"docs":{},"行":{"docs":{},"。":{"docs":{"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"通":{"docs":{},"常":{"docs":{},"用":{"docs":{},"于":{"docs":{},"服":{"docs":{},"务":{"docs":{},"降":{"docs":{},"级":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"某":{"docs":{},"验":{"docs":{},"权":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"当":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"全":{"docs":{},"部":{"docs":{},"挂":{"docs":{},"掉":{"docs":{},"后":{"docs":{},",":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"不":{"docs":{},"抛":{"docs":{},"出":{"docs":{},"异":{"docs":{},"常":{"docs":{},",":{"docs":{},"而":{"docs":{},"是":{"docs":{},"通":{"docs":{},"过":{"docs":{},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"数":{"docs":{},"据":{"docs":{},"返":{"docs":{},"回":{"docs":{},"授":{"docs":{},"权":{"docs":{},"失":{"docs":{},"败":{"docs":{},"。":{"docs":{"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},":":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"+":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{"demos/服务降级.html":{"ref":"demos/服务降级.html","tf":0.05}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},":":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"+":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{"demos/服务降级.html":{"ref":"demos/服务降级.html","tf":0.05}}}}}}}}}}}}}}}}}}},"后":{"docs":{},"缀":{"docs":{},",":{"docs":{},"服":{"docs":{},"务":{"docs":{},"接":{"docs":{},"口":{"docs":{},"调":{"docs":{},"用":{"docs":{},"失":{"docs":{},"败":{"docs":{},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"实":{"docs":{},"现":{"docs":{},"类":{"docs":{},",":{"docs":{},"该":{"docs":{},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"类":{"docs":{},"必":{"docs":{},"须":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"无":{"docs":{},"参":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"与":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"的":{"docs":{},"区":{"docs":{},"别":{"docs":{},"在":{"docs":{},"于":{"docs":{},",":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"总":{"docs":{},"是":{"docs":{},"被":{"docs":{},"执":{"docs":{},"行":{"docs":{},",":{"docs":{},"而":{"docs":{},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"只":{"docs":{},"在":{"docs":{},"出":{"docs":{},"现":{"docs":{},"非":{"docs":{},"业":{"docs":{},"务":{"docs":{},"异":{"docs":{},"常":{"docs":{},"(":{"docs":{},"比":{"docs":{},"如":{"docs":{},"超":{"docs":{},"时":{"docs":{},",":{"docs":{},"网":{"docs":{},"络":{"docs":{},"异":{"docs":{},"常":{"docs":{},"等":{"docs":{},")":{"docs":{},"时":{"docs":{},"执":{"docs":{},"行":{"docs":{},",":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"在":{"docs":{},"远":{"docs":{},"程":{"docs":{},"调":{"docs":{},"用":{"docs":{},"之":{"docs":{},"前":{"docs":{},"执":{"docs":{},"行":{"docs":{},",":{"docs":{},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"在":{"docs":{},"远":{"docs":{},"程":{"docs":{},"调":{"docs":{},"用":{"docs":{},"后":{"docs":{},"执":{"docs":{},"行":{"docs":{},"。":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"。":{"docs":{"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.02564102564102564}},"e":{"docs":{},".":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.02564102564102564}}}}}}}}}},"e":{"docs":{},")":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"l":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}},":":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}},",":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}},"x":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.028795811518324606}}}}},"i":{"docs":{},"n":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"[":{"docs":{},"]":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}},"x":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}},"p":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.020134228187919462},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.013793103448275862}},".":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"\"":{"docs":{},",":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}}}}}}}},",":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403},"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564}}},"中":{"docs":{},"的":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"为":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"地":{"docs":{},"址":{"docs":{},"。":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"为":{"docs":{},"过":{"docs":{},"期":{"docs":{},"时":{"docs":{},"间":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"判":{"docs":{},"断":{"docs":{},"脏":{"docs":{},"数":{"docs":{},"据":{"docs":{},",":{"docs":{},"脏":{"docs":{},"数":{"docs":{},"据":{"docs":{},"由":{"docs":{},"监":{"docs":{},"控":{"docs":{},"中":{"docs":{},"心":{"docs":{},"删":{"docs":{},"除":{"docs":{},"。":{"docs":{},"(":{"docs":{},"注":{"docs":{},"意":{"docs":{},":":{"docs":{},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},"时":{"docs":{},"间":{"docs":{},"必":{"docs":{},"需":{"docs":{},"同":{"docs":{},"步":{"docs":{},",":{"docs":{},"否":{"docs":{},"则":{"docs":{},"过":{"docs":{},"期":{"docs":{},"检":{"docs":{},"测":{"docs":{},"会":{"docs":{},"不":{"docs":{},"准":{"docs":{},"确":{"docs":{},")":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"插":{"docs":{},"件":{"docs":{},"参":{"docs":{},"考":{"docs":{},"手":{"docs":{},"册":{"docs":{"reference-maven/maven.html":{"ref":"reference-maven/maven.html","tf":5}}}}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"reference-registry/multicast.html":{"ref":"reference-registry/multicast.html","tf":5}}}}}}}}}}}}}},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.010638297872340425},"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.009523809523809525}},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"0":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}},"docs":{}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"1":{"0":{"0":{"0":{"0":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}},"(":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}},"s":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"(":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}},")":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}}}}}}}}}},"a":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"demos/线程模型.html":{"ref":"demos/线程模型.html","tf":0.045454545454545456}},"e":{"docs":{},",":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"demos/回声测试.html":{"ref":"demos/回声测试.html","tf":0.09090909090909091}},"e":{"docs":{},";":{"docs":{"demos/回声测试.html":{"ref":"demos/回声测试.html","tf":0.045454545454545456}}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"reference-protocol/memcached.html":{"ref":"reference-protocol/memcached.html","tf":0.047619047619047616}},"e":{"docs":{},"d":{"docs":{},":":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.03333333333333333}},"/":{"docs":{},"/":{"docs":{"reference-protocol/memcached.html":{"ref":"reference-protocol/memcached.html","tf":5}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"y":{"docs":{},":":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}},"y":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}}}}}}}}}}}}}}}},"m":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}},"s":{"docs":{},"g":{"docs":{},")":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}},";":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.011363636363636364},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.013793103448275862}}}},",":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.013793103448275862}}}}},"v":{"docs":{},"n":{"docs":{"reference-maven/maven.html":{"ref":"reference-maven/maven.html","tf":0.2222222222222222}}}},"b":{"docs":{},"p":{"docs":{},"s":{"docs":{},",":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.006289308176100629}}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"1":{"docs":{},".":{"docs":{},"h":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"x":{"docs":{},"y":{"docs":{},"i":{"docs":{},".":{"docs":{},"c":{"docs":{},"n":{"docs":{},".":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"c":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},":":{"8":{"0":{"8":{"0":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"s":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},".":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"a":{"docs":{},"n":{"docs":{},".":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},":":{"1":{"docs":{},".":{"0":{"docs":{},".":{"5":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.00975609756097561},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.016129032258064516}},"r":{"docs":{},"y":{"docs":{},":":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"(":{"docs":{},"\"":{"1":{"0":{"docs":{},".":{"2":{"0":{"docs":{},".":{"1":{"3":{"0":{"docs":{},".":{"2":{"3":{"0":{"docs":{},":":{"9":{"0":{"9":{"0":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.010638297872340425}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"b":{"docs":{},"b":{"docs":{},"b":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.010638297872340425}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"a":{"docs":{},"a":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.010638297872340425}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"o":{"docs":{},"f":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"d":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"1":{"0":{"docs":{},".":{"2":{"0":{"docs":{},".":{"1":{"5":{"3":{"docs":{},".":{"1":{"1":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"?":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"=":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"&":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"=":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"\"":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"demos/静态服务.html":{"ref":"demos/静态服务.html","tf":0.07142857142857142}}}}}},"&":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"=":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"&":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"=":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"\"":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"reference-protocol/memcached.html":{"ref":"reference-protocol/memcached.html","tf":0.047619047619047616}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"0":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"?":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"=":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"&":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"&":{"docs":{},"r":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"=":{"docs":{},"\"":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"0":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"?":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"=":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},"&":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"=":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"&":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"=":{"1":{"0":{"0":{"0":{"docs":{},"\"":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"=":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},":":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"+":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"\"":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"demos/服务降级.html":{"ref":"demos/服务降级.html","tf":0.05}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"1":{"0":{"docs":{},".":{"2":{"0":{"docs":{},".":{"1":{"5":{"3":{"docs":{},".":{"1":{"1":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"?":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"=":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"&":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"=":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"&":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"=":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"&":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"=":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"\"":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"reference-protocol/redis.html":{"ref":"reference-protocol/redis.html","tf":0.05}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.010638297872340425}},"(":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.010638297872340425}}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"demos/静态服务.html":{"ref":"demos/静态服务.html","tf":0.14285714285714285},"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.009523809523809525},"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.05263157894736842},"demos/服务降级.html":{"ref":"demos/服务降级.html","tf":0.1},"reference-protocol/memcached.html":{"ref":"reference-protocol/memcached.html","tf":0.09523809523809523},"reference-protocol/redis.html":{"ref":"reference-protocol/redis.html","tf":0.1}}},"y":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"o":{"docs":{},"f":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"1":{"0":{"docs":{},".":{"2":{"0":{"docs":{},".":{"1":{"5":{"3":{"docs":{},".":{"1":{"0":{"docs":{},":":{"2":{"1":{"8":{"1":{"docs":{},"\"":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"demos/静态服务.html":{"ref":"demos/静态服务.html","tf":0.07142857142857142},"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762},"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421},"demos/服务降级.html":{"ref":"demos/服务降级.html","tf":0.05},"reference-protocol/memcached.html":{"ref":"reference-protocol/memcached.html","tf":0.047619047619047616},"reference-protocol/redis.html":{"ref":"reference-protocol/redis.html","tf":0.05}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.010471204188481676},"configuration/api.html":{"ref":"configuration/api.html","tf":0.010638297872340425},"demos/静态服务.html":{"ref":"demos/静态服务.html","tf":0.14285714285714285},"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.009523809523809525},"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.05263157894736842},"demos/服务降级.html":{"ref":"demos/服务降级.html","tf":0.1},"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-protocol/memcached.html":{"ref":"reference-protocol/memcached.html","tf":0.09523809523809523},"reference-protocol/redis.html":{"ref":"reference-protocol/redis.html","tf":0.1},"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.02631578947368421},"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332},"reference-registry/simple.html":{"ref":"reference-registry/simple.html","tf":0.18181818181818182}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},":":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}},"d":{"docs":{},"i":{"docs":{"reference-protocol/redis.html":{"ref":"reference-protocol/redis.html","tf":0.05},"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.041666666666666664}},"s":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":5}}}}}},":":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.03333333333333333}},"/":{"docs":{},"/":{"docs":{"reference-protocol/redis.html":{"ref":"reference-protocol/redis.html","tf":5}}}}},"安":{"docs":{},"装":{"docs":{},"手":{"docs":{},"册":{"docs":{},",":{"docs":{},"只":{"docs":{},"需":{"docs":{},"搭":{"docs":{},"一":{"docs":{},"个":{"docs":{},"原":{"docs":{},"生":{"docs":{},"的":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},",":{"docs":{},"并":{"docs":{},"将":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}}},"过":{"docs":{},"期":{"docs":{},"数":{"docs":{},"据":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}},"o":{"docs":{},"l":{"docs":{},"v":{"docs":{},"e":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"文":{"docs":{},"件":{"docs":{},",":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"配":{"docs":{},"置":{"docs":{"demos/直连提供者.html":{"ref":"demos/直连提供者.html","tf":0.05263157894736842}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.020134228187919462},"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.012578616352201259}}}}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}},"f":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968}},"e":{"docs":{},"r":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.015957446808510637},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154},"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":3.354609929078014},"reference-registry/simple.html":{"ref":"reference-registry/simple.html","tf":0.09090909090909091}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213},"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.02127659574468085}}}}}}}}}}}}}}}}}}}},"\"":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},".":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},"s":{"docs":{},"(":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},"s":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"1":{"0":{"docs":{},".":{"2":{"0":{"docs":{},".":{"1":{"3":{"0":{"docs":{},".":{"2":{"3":{"0":{"docs":{},":":{"2":{"0":{"8":{"8":{"0":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},".":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"1":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154},"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.02127659574468085}}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"(":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.015957446808510637},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154},"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.02127659574468085}},"(":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.015957446808510637},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154},"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.02127659574468085}}}}},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.06382978723404255}},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.0425531914893617}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.02127659574468085}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"例":{"docs":{},"很":{"docs":{},"重":{"docs":{},",":{"docs":{},"封":{"docs":{},"装":{"docs":{},"了":{"docs":{},"与":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"的":{"docs":{},"连":{"docs":{},"接":{"docs":{},"以":{"docs":{},"及":{"docs":{},"与":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"的":{"docs":{},"连":{"docs":{},"接":{"docs":{},",":{"docs":{},"需":{"docs":{},"要":{"docs":{},"缓":{"docs":{},"存":{"docs":{},",":{"docs":{},"否":{"docs":{},"则":{"docs":{},"重":{"docs":{},"复":{"docs":{},"生":{"docs":{},"成":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"可":{"docs":{},"能":{"docs":{},"造":{"docs":{},"成":{"docs":{},"性":{"docs":{},"能":{"docs":{},"问":{"docs":{},"题":{"docs":{},"并":{"docs":{},"且":{"docs":{},"会":{"docs":{},"有":{"docs":{},"内":{"docs":{},"存":{"docs":{},"和":{"docs":{},"连":{"docs":{},"接":{"docs":{},"泄":{"docs":{},"漏":{"docs":{},"。":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"方":{"docs":{},"式":{"docs":{},"编":{"docs":{},"程":{"docs":{},"时":{"docs":{},",":{"docs":{},"容":{"docs":{},"易":{"docs":{},"忽":{"docs":{},"略":{"docs":{},"此":{"docs":{},"问":{"docs":{},"题":{"docs":{},"。":{"docs":{"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.02127659574468085}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"对":{"docs":{},"象":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"调":{"docs":{},"用":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"方":{"docs":{},"法":{"docs":{},"启":{"docs":{},"动":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.02127659574468085}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"配":{"docs":{},"置":{"docs":{},"负":{"docs":{},"责":{"docs":{},"人":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}},"t":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.013793103448275862}},"r":{"docs":{},"i":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761},"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}},"e":{"docs":{},"s":{"docs":{},"=":{"docs":{},"\"":{"2":{"docs":{},"\"":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421}}}}}}}},"docs":{}}}}}}},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.015015015015015015},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.013422818791946308},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931},"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.03636363636363636},"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761},"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}},"=":{"docs":{},"\"":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{},"以":{"docs":{},"减":{"docs":{},"少":{"docs":{},"f":{"docs":{},"u":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"对":{"docs":{},"象":{"docs":{},"的":{"docs":{},"创":{"docs":{},"建":{"docs":{},"和":{"docs":{},"管":{"docs":{},"理":{"docs":{},"成":{"docs":{},"本":{"docs":{},":":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.021739130434782608}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},";":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}},".":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"i":{"docs":{},"d":{"docs":{},",":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/负载均衡.html":{"ref":"demos/负载均衡.html","tf":0.041666666666666664},"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}},"m":{"docs":{},"i":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549},"perf-test.html":{"ref":"perf-test.html","tf":0.012578616352201259}},"协":{"docs":{},"议":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}},"采":{"docs":{},"用":{"docs":{},"j":{"docs":{},"d":{"docs":{},"k":{"docs":{},"标":{"docs":{},"准":{"docs":{},"的":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},".":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},".":{"docs":{},"*":{"docs":{},"实":{"docs":{},"现":{"docs":{},",":{"docs":{},"采":{"docs":{},"用":{"docs":{},"阻":{"docs":{},"塞":{"docs":{},"式":{"docs":{},"短":{"docs":{},"连":{"docs":{},"接":{"docs":{},"和":{"docs":{},"j":{"docs":{},"d":{"docs":{},"k":{"docs":{},"标":{"docs":{},"准":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},"方":{"docs":{},"式":{"docs":{},"。":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.03333333333333333}}},"/":{"docs":{},"/":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":5}}}},"配":{"docs":{},"置":{"docs":{},":":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/负载均衡.html":{"ref":"demos/负载均衡.html","tf":0.041666666666666664}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"负":{"docs":{},"责":{"docs":{},"从":{"docs":{},"多":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},"中":{"docs":{},"按":{"docs":{},"路":{"docs":{},"由":{"docs":{},"规":{"docs":{},"则":{"docs":{},"选":{"docs":{},"出":{"docs":{},"子":{"docs":{},"集":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"读":{"docs":{},"写":{"docs":{},"分":{"docs":{},"离":{"docs":{},",":{"docs":{},"应":{"docs":{},"用":{"docs":{},"隔":{"docs":{},"离":{"docs":{},"等":{"docs":{},"。":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.009523809523809525}}}}}}}}}}}}}}}},"p":{"docs":{},"c":{"docs":{"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564},"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":0.04}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.023809523809523808}}}}}}}}}}}}}}},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"u":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.043478260869565216}}}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"的":{"docs":{},"临":{"docs":{},"时":{"docs":{},"状":{"docs":{},"态":{"docs":{},"记":{"docs":{},"录":{"docs":{},"器":{"docs":{},",":{"docs":{},"当":{"docs":{},"接":{"docs":{},"收":{"docs":{},"到":{"docs":{},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},"请":{"docs":{},"求":{"docs":{},",":{"docs":{},"或":{"docs":{},"发":{"docs":{},"起":{"docs":{},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},"请":{"docs":{},"求":{"docs":{},"时":{"docs":{},",":{"docs":{},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"都":{"docs":{},"会":{"docs":{},"变":{"docs":{},"化":{"docs":{},"。":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":0.04}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}},"n":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}},"e":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"=":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},".":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.029850746268656716}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}},"m":{"docs":{},"a":{"docs":{},":":{"docs":{"reference-xmlconf/introduction.html":{"ref":"reference-xmlconf/introduction.html","tf":0.06666666666666667}}},"配":{"docs":{},"置":{"docs":{},"参":{"docs":{},"考":{"docs":{},"手":{"docs":{},"册":{"docs":{"reference-xmlconf/introduction.html":{"ref":"reference-xmlconf/introduction.html","tf":5}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"用":{"docs":{},"的":{"docs":{},"是":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"2":{"docs":{},".":{"0":{"docs":{},"及":{"docs":{},"以":{"docs":{},"前":{"docs":{},"版":{"docs":{},"本":{"docs":{},",":{"docs":{},"需":{"docs":{},"配":{"docs":{},"置":{"docs":{},":":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.029411764705882353}}}}}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"preface/usage.html":{"ref":"preface/usage.html","tf":0.5},"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105},"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}},"b":{"docs":{},"l":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.07591623036649214}}}},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.006006006006006006}}}},"u":{"docs":{"demos/回声测试.html":{"ref":"demos/回声测试.html","tf":0.045454545454545456},"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.02158273381294964},"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}},"s":{"docs":{},":":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}},"命":{"docs":{},"令":{"docs":{},"所":{"docs":{},"检":{"docs":{},"查":{"docs":{},"的":{"docs":{},"资":{"docs":{},"源":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"扩":{"docs":{},"展":{"docs":{},",":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},"扩":{"docs":{},"展":{"docs":{},"参":{"docs":{},"考":{"docs":{},"手":{"docs":{},"册":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.028795811518324606}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.015015015015015015},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.026845637583892617},"demos/回声测试.html":{"ref":"demos/回声测试.html","tf":0.045454545454545456},"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.047619047619047616},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182},"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818},"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332},"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.05555555555555555},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.05855855855855856},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.06829268292682927},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.056451612903225805},"reference-xmlconf/dubbo-monitor.html":{"ref":"reference-xmlconf/dubbo-monitor.html","tf":0.07142857142857142},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.11764705882352941},"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.10256410256410256},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.06424581005586592},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.05333333333333334},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.035211267605633804},"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421},"reference-xmlconf/dubbo-parameter.html":{"ref":"reference-xmlconf/dubbo-parameter.html","tf":0.07692307692307693},"perf-test.html":{"ref":"perf-test.html","tf":0.006289308176100629}},"[":{"docs":{},"]":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.013422818791946308},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}},"{":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},"}":{"docs":{},",":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}}}}}}}}}}}}},"/":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}}}}},"其":{"docs":{},"余":{"docs":{},"皆":{"docs":{},"通":{"docs":{},"过":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}},"场":{"docs":{},"景":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},")":{"docs":{},",":{"docs":{},"详":{"docs":{},"见":{"docs":{},"第":{"docs":{},"五":{"docs":{},"章":{"docs":{},"的":{"docs":{},"性":{"docs":{},"能":{"docs":{},"数":{"docs":{},"据":{"docs":{},"。":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"b":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095}},"必":{"docs":{},"须":{"docs":{},"有":{"docs":{},"可":{"docs":{},"传":{"docs":{},"入":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"x":{"docs":{},"y":{"docs":{},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"。":{"docs":{"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"i":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}},"e":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}},"r":{"docs":{},"v":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}},":":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}},"i":{"docs":{},"c":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818},"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358},"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}},"e":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}}}}},"\"":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},".":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"(":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"(":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}}}}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"1":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}},"(":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}}}}}}}}}}},":":{"docs":{"reference-registry/simple.html":{"ref":"reference-registry/simple.html","tf":0.18181818181818182}}},")":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.014388489208633094}}},"配":{"docs":{},"置":{"docs":{},"负":{"docs":{},"责":{"docs":{},"人":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},")":{"docs":{"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}}},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},")":{"docs":{},";":{"docs":{"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.00975609756097561},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095},"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547},"perf-test.html":{"ref":"perf-test.html","tf":0.006289308176100629}},"i":{"docs":{},"p":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904}}}},":":{"docs":{"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.058823529411764705},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.029850746268656716}}},"l":{"docs":{},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.010471204188481676},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.00975609756097561},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095}},"i":{"docs":{},"z":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}},"d":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}}}},"t":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.029850746268656716}},">":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}},"x":{"docs":{},"p":{"docs":{},"i":{"docs":{},"r":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"d":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"d":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}}}},"(":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},",":{"docs":{"reference-protocol/memcached.html":{"ref":"reference-protocol/memcached.html","tf":0.047619047619047616},"reference-protocol/redis.html":{"ref":"reference-protocol/redis.html","tf":0.05}}}}}}}},"n":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}},"=":{"docs":{},"\"":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"\"":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.021739130434782608}}}}}}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.021739130434782608}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}}}}},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"2":{"docs":{},".":{"5":{"docs":{},"及":{"docs":{},"以":{"docs":{},"后":{"docs":{},"版":{"docs":{},"本":{"docs":{},"支":{"docs":{},"持":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.029411764705882353}}}}}}}}}}}}}}}},"docs":{},"x":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"死":{"docs":{},"锁":{"docs":{},"问":{"docs":{},"题":{"docs":{"demos/延迟暴露.html":{"ref":"demos/延迟暴露.html","tf":0.06666666666666667}}}}}}}}}}}},"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.05660377358490566},"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}},".":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358},"reference-registry/simple.html":{"ref":"reference-registry/simple.html","tf":0.18181818181818182}},"e":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"reference-registry/simple.html":{"ref":"reference-registry/simple.html","tf":5}}}}}},"监":{"docs":{},"控":{"docs":{},"中":{"docs":{},"心":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"y":{"docs":{},"y":{"docs":{},"y":{"docs":{},"i":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}}},"和":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}}}}}}}}}},"z":{"docs":{},"e":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}},":":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}},"u":{"docs":{},"n":{"docs":{},"的":{"docs":{},"n":{"docs":{},"i":{"docs":{},"o":{"docs":{},"框":{"docs":{},"架":{"docs":{},",":{"docs":{},"应":{"docs":{},"用":{"docs":{},"于":{"docs":{},"g":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"f":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},"中":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.016129032258064516}},"e":{"docs":{},",":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"@":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.006006006006006006}}}}}}}}}}}}}}}}}}}},"{":{"docs":{},"}":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.006006006006006006}}}}}},"y":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818},"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}}}}}}}}}}}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}},".":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"1":{"docs":{},":":{"docs":{},"\"":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}},"docs":{}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},":":{"docs":{},"\"":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},")":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"f":{"4":{"docs":{},"j":{"docs":{"demos/日志适配.html":{"ref":"demos/日志适配.html","tf":0.07692307692307693},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176}}}},"docs":{}}}},"仓":{"docs":{},"库":{"docs":{},"用":{"docs":{},"于":{"docs":{},"存":{"docs":{},"储":{"docs":{},"服":{"docs":{},"务":{"docs":{},"应":{"docs":{},"用":{"docs":{},"发":{"docs":{},"布":{"docs":{},"包":{"docs":{},"。":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}},"伸":{"docs":{},"缩":{"docs":{},"性":{"docs":{},":":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}},"健":{"docs":{},"状":{"docs":{},"性":{"docs":{},":":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}},"升":{"docs":{},"级":{"docs":{},"性":{"docs":{},":":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}},"数":{"docs":{},"据":{"docs":{},"库":{"docs":{},"宕":{"docs":{},"掉":{"docs":{},"后":{"docs":{},",":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"仍":{"docs":{},"能":{"docs":{},"通":{"docs":{},"过":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"提":{"docs":{},"供":{"docs":{},"服":{"docs":{},"务":{"docs":{},"列":{"docs":{},"表":{"docs":{},"查":{"docs":{},"询":{"docs":{},",":{"docs":{},"但":{"docs":{},"不":{"docs":{},"能":{"docs":{},"注":{"docs":{},"册":{"docs":{},"新":{"docs":{},"服":{"docs":{},"务":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"通":{"docs":{},"讯":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}},"结":{"docs":{},"构":{"docs":{},":":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}},"暴":{"docs":{},"露":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}},"及":{"docs":{},"注":{"docs":{},"册":{"docs":{},"服":{"docs":{},"务":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}}}}}}}}},"服":{"docs":{},"务":{"docs":{"demos/服务分组.html":{"ref":"demos/服务分组.html","tf":0.2}},"容":{"docs":{},"器":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":5}},"负":{"docs":{},"责":{"docs":{},"启":{"docs":{},"动":{"docs":{},",":{"docs":{},"加":{"docs":{},"载":{"docs":{},",":{"docs":{},"运":{"docs":{},"行":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"。":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}},"只":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"并":{"docs":{},"加":{"docs":{},"载":{"docs":{},"一":{"docs":{},"个":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"容":{"docs":{},"器":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"服":{"docs":{},"务":{"docs":{},"。":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"的":{"docs":{},"启":{"docs":{},"动":{"docs":{},"程":{"docs":{},"序":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"后":{"docs":{},"台":{"docs":{},"服":{"docs":{},"务":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"或":{"docs":{},"j":{"docs":{},"b":{"docs":{},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"等":{"docs":{},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"容":{"docs":{},"器":{"docs":{},"的":{"docs":{},"功":{"docs":{},"能":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"硬":{"docs":{},"要":{"docs":{},"用":{"docs":{},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"容":{"docs":{},"器":{"docs":{},"去":{"docs":{},"加":{"docs":{},"载":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},",":{"docs":{},"增":{"docs":{},"加":{"docs":{},"复":{"docs":{},"杂":{"docs":{},"性":{"docs":{},",":{"docs":{},"也":{"docs":{},"浪":{"docs":{},"费":{"docs":{},"资":{"docs":{},"源":{"docs":{},"。":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"加":{"docs":{},"载":{"docs":{},"内":{"docs":{},"容":{"docs":{},"可":{"docs":{},"以":{"docs":{},"扩":{"docs":{},"展":{"docs":{},",":{"docs":{},"内":{"docs":{},"置":{"docs":{},"了":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}}}}}}}}}}}}}}}}}}}}},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}},"全":{"docs":{},"部":{"docs":{},"宕":{"docs":{},"掉":{"docs":{},"后":{"docs":{},",":{"docs":{},"服":{"docs":{},"务":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"应":{"docs":{},"用":{"docs":{},"将":{"docs":{},"无":{"docs":{},"法":{"docs":{},"使":{"docs":{},"用":{"docs":{},",":{"docs":{},"并":{"docs":{},"无":{"docs":{},"限":{"docs":{},"次":{"docs":{},"重":{"docs":{},"连":{"docs":{},"等":{"docs":{},"待":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"恢":{"docs":{},"复":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"向":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"注":{"docs":{},"册":{"docs":{},"其":{"docs":{},"提":{"docs":{},"供":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"并":{"docs":{},"汇":{"docs":{},"报":{"docs":{},"调":{"docs":{},"用":{"docs":{},"时":{"docs":{},"间":{"docs":{},"到":{"docs":{},"监":{"docs":{},"控":{"docs":{},"中":{"docs":{},"心":{"docs":{},",":{"docs":{},"此":{"docs":{},"时":{"docs":{},"间":{"docs":{},"不":{"docs":{},"包":{"docs":{},"含":{"docs":{},"网":{"docs":{},"络":{"docs":{},"开":{"docs":{},"销":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"在":{"docs":{},"启":{"docs":{},"动":{"docs":{},"时":{"docs":{},",":{"docs":{},"向":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"注":{"docs":{},"册":{"docs":{},"自":{"docs":{},"己":{"docs":{},"提":{"docs":{},"供":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},"。":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}},"无":{"docs":{},"状":{"docs":{},"态":{"docs":{},",":{"docs":{},"任":{"docs":{},"意":{"docs":{},"一":{"docs":{},"台":{"docs":{},"宕":{"docs":{},"掉":{"docs":{},"后":{"docs":{},",":{"docs":{},"不":{"docs":{},"影":{"docs":{},"响":{"docs":{},"使":{"docs":{},"用":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}},"可":{"docs":{},"动":{"docs":{},"态":{"docs":{},"增":{"docs":{},"加":{"docs":{},"机":{"docs":{},"器":{"docs":{},"部":{"docs":{},"署":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"将":{"docs":{},"推":{"docs":{},"送":{"docs":{},"新":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"信":{"docs":{},"息":{"docs":{},"给":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"协":{"docs":{},"议":{"docs":{},"配":{"docs":{},"置":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}},":":{"docs":{},"配":{"docs":{},"置":{"docs":{},"类":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},".":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"说":{"docs":{},"明":{"docs":{},":":{"docs":{},"如":{"docs":{},"果":{"docs":{},"需":{"docs":{},"要":{"docs":{},"支":{"docs":{},"持":{"docs":{},"多":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"声":{"docs":{},"明":{"docs":{},"多":{"docs":{},"个":{"docs":{},"|":{"docs":{},"标":{"docs":{},"签":{"docs":{},",":{"docs":{},"并":{"docs":{},"在":{"docs":{},"|":{"docs":{},"中":{"docs":{},"通":{"docs":{},"过":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"属":{"docs":{},"性":{"docs":{},"指":{"docs":{},"定":{"docs":{},"使":{"docs":{},"用":{"docs":{},"的":{"docs":{},"协":{"docs":{},"议":{"docs":{},"。":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"、":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"监":{"docs":{},"听":{"docs":{},"端":{"docs":{},"口":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}},"暴":{"docs":{},"露":{"docs":{},"服":{"docs":{},"务":{"docs":{},"配":{"docs":{},"置":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}},":":{"docs":{},"配":{"docs":{},"置":{"docs":{},"类":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},".":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"初":{"docs":{},"次":{"docs":{},"注":{"docs":{},"册":{"docs":{},"时":{"docs":{},"为":{"docs":{},"禁":{"docs":{},"用":{"docs":{},"状":{"docs":{},"态":{"docs":{},",":{"docs":{},"需":{"docs":{},"人":{"docs":{},"工":{"docs":{},"启":{"docs":{},"用":{"docs":{},",":{"docs":{},"断":{"docs":{},"线":{"docs":{},"时":{"docs":{},",":{"docs":{},"将":{"docs":{},"不":{"docs":{},"会":{"docs":{},"被":{"docs":{},"自":{"docs":{},"动":{"docs":{},"删":{"docs":{},"除":{"docs":{},",":{"docs":{},"需":{"docs":{},"人":{"docs":{},"工":{"docs":{},"禁":{"docs":{},"用":{"docs":{},"。":{"docs":{"demos/静态服务.html":{"ref":"demos/静态服务.html","tf":0.07142857142857142}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"接":{"docs":{},"口":{"docs":{},"实":{"docs":{},"现":{"docs":{},"示":{"docs":{},"例":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}},"配":{"docs":{},"置":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}},"示":{"docs":{},"例":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}},"与":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"共":{"docs":{},"享":{"docs":{},"服":{"docs":{},"务":{"docs":{},"接":{"docs":{},"口":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}}}},"实":{"docs":{},"现":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}},"所":{"docs":{},"在":{"docs":{},"的":{"docs":{},"分":{"docs":{},"层":{"docs":{},"。":{"docs":{},"如":{"docs":{},":":{"docs":{},"b":{"docs":{},"i":{"docs":{},"z":{"docs":{},"、":{"docs":{},"d":{"docs":{},"a":{"docs":{},"o":{"docs":{},"、":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},":":{"docs":{},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"、":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},":":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"。":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"每":{"docs":{},"服":{"docs":{},"务":{"docs":{},"每":{"docs":{},"方":{"docs":{},"法":{"docs":{},"最":{"docs":{},"大":{"docs":{},"可":{"docs":{},"并":{"docs":{},"行":{"docs":{},"执":{"docs":{},"行":{"docs":{},"请":{"docs":{},"求":{"docs":{},"数":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}},"最":{"docs":{},"大":{"docs":{},"可":{"docs":{},"接":{"docs":{},"受":{"docs":{},"连":{"docs":{},"接":{"docs":{},"数":{"docs":{"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}},"缺":{"docs":{},"省":{"docs":{},"值":{"docs":{},"配":{"docs":{},"置":{"docs":{},":":{"docs":{},"配":{"docs":{},"置":{"docs":{},"类":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},".":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"说":{"docs":{},"明":{"docs":{},":":{"docs":{},"该":{"docs":{},"标":{"docs":{},"签":{"docs":{},"为":{"docs":{},"|":{"docs":{},"和":{"docs":{},"|":{"docs":{},"标":{"docs":{},"签":{"docs":{},"的":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"值":{"docs":{},"设":{"docs":{},"置":{"docs":{},"。":{"docs":{"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"启":{"docs":{},"动":{"docs":{},"时":{"docs":{},":":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}},"列":{"docs":{},"表":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}},"方":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904},"demos/优雅停机.html":{"ref":"demos/优雅停机.html","tf":0.07142857142857142}},"注":{"docs":{},"解":{"docs":{},":":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.029411764705882353}}}}},"配":{"docs":{},"置":{"docs":{},":":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.029411764705882353}}}}},"导":{"docs":{},"出":{"docs":{},"服":{"docs":{},"务":{"docs":{},"监":{"docs":{},"听":{"docs":{},"器":{"docs":{},"名":{"docs":{},"称":{"docs":{},",":{"docs":{},"多":{"docs":{},"个":{"docs":{},"名":{"docs":{},"称":{"docs":{},"用":{"docs":{},"逗":{"docs":{},"号":{"docs":{},"分":{"docs":{},"隔":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}}}}},"远":{"docs":{},"程":{"docs":{},"调":{"docs":{},"用":{"docs":{},"过":{"docs":{},"程":{"docs":{},"拦":{"docs":{},"截":{"docs":{},"器":{"docs":{},"名":{"docs":{},"称":{"docs":{},",":{"docs":{},"多":{"docs":{},"个":{"docs":{},"名":{"docs":{},"称":{"docs":{},"用":{"docs":{},"逗":{"docs":{},"号":{"docs":{},"分":{"docs":{},"隔":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}}}}}}},"最":{"docs":{},"大":{"docs":{},"可":{"docs":{},"接":{"docs":{},"受":{"docs":{},"连":{"docs":{},"接":{"docs":{},"数":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805}}}}}}}}}},"启":{"docs":{},"动":{"docs":{},"时":{"docs":{},",":{"docs":{},"向":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},":":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"/":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"下":{"docs":{},",":{"docs":{},"添":{"docs":{},"加":{"docs":{},"当":{"docs":{},"前":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"的":{"docs":{},"地":{"docs":{},"址":{"docs":{},"。":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"不":{"docs":{},"应":{"docs":{},"将":{"docs":{},"d":{"docs":{},"a":{"docs":{},"o":{"docs":{},"或":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"等":{"docs":{},"异":{"docs":{},"常":{"docs":{},"抛":{"docs":{},"给":{"docs":{},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},",":{"docs":{},"应":{"docs":{},"在":{"docs":{},"服":{"docs":{},"务":{"docs":{},"实":{"docs":{},"现":{"docs":{},"中":{"docs":{},"对":{"docs":{},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},"不":{"docs":{},"关":{"docs":{},"心":{"docs":{},"的":{"docs":{},"异":{"docs":{},"常":{"docs":{},"进":{"docs":{},"行":{"docs":{},"包":{"docs":{},"装":{"docs":{},",":{"docs":{},"否":{"docs":{},"则":{"docs":{},"可":{"docs":{},"能":{"docs":{},"出":{"docs":{},"现":{"docs":{},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},"无":{"docs":{},"法":{"docs":{},"反":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},"相":{"docs":{},"应":{"docs":{},"异":{"docs":{},"常":{"docs":{},"。":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"n":{"docs":{},"的":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"或":{"docs":{},"s":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"监":{"docs":{},"控":{"docs":{},"项":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"注":{"docs":{},"册":{"docs":{},"与":{"docs":{},"发":{"docs":{},"现":{"docs":{},"的":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"。":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}},"向":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"获":{"docs":{},"取":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"地":{"docs":{},"址":{"docs":{},"列":{"docs":{},"表":{"docs":{},",":{"docs":{},"并":{"docs":{},"根":{"docs":{},"据":{"docs":{},"负":{"docs":{},"载":{"docs":{},"算":{"docs":{},"法":{"docs":{},"直":{"docs":{},"接":{"docs":{},"调":{"docs":{},"用":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},",":{"docs":{},"同":{"docs":{},"时":{"docs":{},"汇":{"docs":{},"报":{"docs":{},"调":{"docs":{},"用":{"docs":{},"时":{"docs":{},"间":{"docs":{},"到":{"docs":{},"监":{"docs":{},"控":{"docs":{},"中":{"docs":{},"心":{"docs":{},",":{"docs":{},"此":{"docs":{},"时":{"docs":{},"间":{"docs":{},"包":{"docs":{},"含":{"docs":{},"网":{"docs":{},"络":{"docs":{},"开":{"docs":{},"销":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},",":{"docs":{},"在":{"docs":{},"内":{"docs":{},"存":{"docs":{},"中":{"docs":{},"累":{"docs":{},"计":{"docs":{},"调":{"docs":{},"用":{"docs":{},"次":{"docs":{},"数":{"docs":{},"和":{"docs":{},"调":{"docs":{},"用":{"docs":{},"时":{"docs":{},"间":{"docs":{},",":{"docs":{},"定":{"docs":{},"时":{"docs":{},"每":{"docs":{},"分":{"docs":{},"钟":{"docs":{},"发":{"docs":{},"送":{"docs":{},"一":{"docs":{},"次":{"docs":{},"统":{"docs":{},"计":{"docs":{},"数":{"docs":{},"据":{"docs":{},"到":{"docs":{},"监":{"docs":{},"控":{"docs":{},"中":{"docs":{},"心":{"docs":{},"。":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"在":{"docs":{},"启":{"docs":{},"动":{"docs":{},"时":{"docs":{},",":{"docs":{},"向":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"订":{"docs":{},"阅":{"docs":{},"自":{"docs":{},"己":{"docs":{},"所":{"docs":{},"需":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},"。":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"从":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"地":{"docs":{},"址":{"docs":{},"列":{"docs":{},"表":{"docs":{},"中":{"docs":{},",":{"docs":{},"基":{"docs":{},"于":{"docs":{},"软":{"docs":{},"负":{"docs":{},"载":{"docs":{},"均":{"docs":{},"衡":{"docs":{},"算":{"docs":{},"法":{"docs":{},",":{"docs":{},"选":{"docs":{},"一":{"docs":{},"台":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"进":{"docs":{},"行":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"调":{"docs":{},"用":{"docs":{},"失":{"docs":{},"败":{"docs":{},",":{"docs":{},"再":{"docs":{},"选":{"docs":{},"另":{"docs":{},"一":{"docs":{},"台":{"docs":{},"调":{"docs":{},"用":{"docs":{},"。":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"调":{"docs":{},"用":{"docs":{},"示":{"docs":{},"例":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}},"配":{"docs":{},"置":{"docs":{},"示":{"docs":{},"例":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"接":{"docs":{},"口":{"docs":{},"及":{"docs":{},"实":{"docs":{},"现":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.013793103448275862}}}}}}}}}}}}}}},"引":{"docs":{},"用":{"docs":{},"服":{"docs":{},"务":{"docs":{},"配":{"docs":{},"置":{"docs":{},":":{"docs":{},"配":{"docs":{},"置":{"docs":{},"类":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},".":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"缺":{"docs":{},"省":{"docs":{},"值":{"docs":{},"配":{"docs":{},"置":{"docs":{},":":{"docs":{},"配":{"docs":{},"置":{"docs":{},"类":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},".":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"说":{"docs":{},"明":{"docs":{},":":{"docs":{},"该":{"docs":{},"标":{"docs":{},"签":{"docs":{},"为":{"docs":{},"|":{"docs":{},"标":{"docs":{},"签":{"docs":{},"的":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"值":{"docs":{},"设":{"docs":{},"置":{"docs":{},"。":{"docs":{"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"启":{"docs":{},"动":{"docs":{},"时":{"docs":{},":":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}},"方":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904},"demos/优雅停机.html":{"ref":"demos/优雅停机.html","tf":0.07142857142857142}},"注":{"docs":{},"解":{"docs":{},":":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.029411764705882353}}}}},"配":{"docs":{},"置":{"docs":{},":":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.029411764705882353}}}}},"引":{"docs":{},"用":{"docs":{},"服":{"docs":{},"务":{"docs":{},"监":{"docs":{},"听":{"docs":{},"器":{"docs":{},"名":{"docs":{},"称":{"docs":{},",":{"docs":{},"多":{"docs":{},"个":{"docs":{},"名":{"docs":{},"称":{"docs":{},"用":{"docs":{},"逗":{"docs":{},"号":{"docs":{},"分":{"docs":{},"隔":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}}}}}}}}}}}}}}}},"远":{"docs":{},"程":{"docs":{},"调":{"docs":{},"用":{"docs":{},"过":{"docs":{},"程":{"docs":{},"拦":{"docs":{},"截":{"docs":{},"器":{"docs":{},"名":{"docs":{},"称":{"docs":{},",":{"docs":{},"多":{"docs":{},"个":{"docs":{},"名":{"docs":{},"称":{"docs":{},"用":{"docs":{},"逗":{"docs":{},"号":{"docs":{},"分":{"docs":{},"隔":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}}}}}}}}}}}}}}}}}},"启":{"docs":{},"动":{"docs":{},"时":{"docs":{},",":{"docs":{},"从":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{},":":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"/":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"订":{"docs":{},"阅":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"和":{"docs":{},"u":{"docs":{},"n":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"事":{"docs":{},"件":{"docs":{},"。":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"收":{"docs":{},"到":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"和":{"docs":{},"u":{"docs":{},"n":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"事":{"docs":{},"件":{"docs":{},"后":{"docs":{},",":{"docs":{},"从":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},":":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"/":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"下":{"docs":{},"获":{"docs":{},"取":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"地":{"docs":{},"址":{"docs":{},"列":{"docs":{},"表":{"docs":{},"。":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"通":{"docs":{},"过":{"docs":{},"将":{"docs":{},"服":{"docs":{},"务":{"docs":{},"强":{"docs":{},"制":{"docs":{},"转":{"docs":{},"型":{"docs":{},"为":{"docs":{},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{},"并":{"docs":{},"调":{"docs":{},"用":{"docs":{},"$":{"docs":{},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"(":{"docs":{},")":{"docs":{},"测":{"docs":{},"试":{"docs":{},"该":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"是":{"docs":{},"可":{"docs":{},"用":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"运":{"docs":{},"行":{"docs":{},"容":{"docs":{},"器":{"docs":{},"。":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"一":{"docs":{},"个":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"定":{"docs":{},"义":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"元":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"一":{"docs":{},"个":{"docs":{},"服":{"docs":{},"务":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"多":{"docs":{},"个":{"docs":{},"协":{"docs":{},"议":{"docs":{},"暴":{"docs":{},"露":{"docs":{},",":{"docs":{},"一":{"docs":{},"个":{"docs":{},"服":{"docs":{},"务":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"注":{"docs":{},"册":{"docs":{},"到":{"docs":{},"多":{"docs":{},"个":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"。":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"现":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}},"分":{"docs":{},"组":{"docs":{"demos/服务分组.html":{"ref":"demos/服务分组.html","tf":5}},",":{"docs":{},"当":{"docs":{},"一":{"docs":{},"个":{"docs":{},"接":{"docs":{},"口":{"docs":{},"有":{"docs":{},"多":{"docs":{},"个":{"docs":{},"实":{"docs":{},"现":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"分":{"docs":{},"组":{"docs":{},"区":{"docs":{},"分":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}},",":{"docs":{},"必":{"docs":{},"需":{"docs":{},"和":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"一":{"docs":{},"致":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"方":{"docs":{},"法":{"docs":{},"实":{"docs":{},"现":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904}}}},"调":{"docs":{},"用":{"docs":{},"超":{"docs":{},"时":{"docs":{},"时":{"docs":{},"间":{"docs":{},"(":{"docs":{},"毫":{"docs":{},"秒":{"docs":{},")":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}}}}}}}},"是":{"docs":{},"否":{"docs":{},"过":{"docs":{},"时":{"docs":{},",":{"docs":{},"此":{"docs":{},"属":{"docs":{},"性":{"docs":{},"只":{"docs":{},"在":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}}}}}}}}},"接":{"docs":{},"口":{"docs":{},"示":{"docs":{},"例":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}},"名":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"本":{"docs":{},"地":{"docs":{},"代":{"docs":{},"理":{"docs":{},"类":{"docs":{},"名":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"在":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"执":{"docs":{},"行":{"docs":{},"本":{"docs":{},"地":{"docs":{},"逻":{"docs":{},"辑":{"docs":{},",":{"docs":{},"如":{"docs":{},"本":{"docs":{},"地":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"等":{"docs":{},",":{"docs":{},"该":{"docs":{},"本":{"docs":{},"地":{"docs":{},"代":{"docs":{},"理":{"docs":{},"类":{"docs":{},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"必":{"docs":{},"须":{"docs":{},"允":{"docs":{},"许":{"docs":{},"传":{"docs":{},"入":{"docs":{},"远":{"docs":{},"程":{"docs":{},"代":{"docs":{},"理":{"docs":{},"对":{"docs":{},"象":{"docs":{},",":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"如":{"docs":{},":":{"docs":{},"p":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"调":{"docs":{},"用":{"docs":{},"失":{"docs":{},"败":{"docs":{},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"实":{"docs":{},"现":{"docs":{},"类":{"docs":{},"名":{"docs":{},",":{"docs":{},"该":{"docs":{},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"类":{"docs":{},"必":{"docs":{},"须":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"无":{"docs":{},"参":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"与":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"的":{"docs":{},"区":{"docs":{},"别":{"docs":{},"在":{"docs":{},"于":{"docs":{},",":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"总":{"docs":{},"是":{"docs":{},"被":{"docs":{},"执":{"docs":{},"行":{"docs":{},",":{"docs":{},"而":{"docs":{},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"只":{"docs":{},"在":{"docs":{},"出":{"docs":{},"现":{"docs":{},"非":{"docs":{},"业":{"docs":{},"务":{"docs":{},"异":{"docs":{},"常":{"docs":{},"(":{"docs":{},"比":{"docs":{},"如":{"docs":{},"超":{"docs":{},"时":{"docs":{},",":{"docs":{},"网":{"docs":{},"络":{"docs":{},"异":{"docs":{},"常":{"docs":{},"等":{"docs":{},")":{"docs":{},"时":{"docs":{},"执":{"docs":{},"行":{"docs":{},",":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"在":{"docs":{},"远":{"docs":{},"程":{"docs":{},"调":{"docs":{},"用":{"docs":{},"之":{"docs":{},"前":{"docs":{},"执":{"docs":{},"行":{"docs":{},",":{"docs":{},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"在":{"docs":{},"远":{"docs":{},"程":{"docs":{},"调":{"docs":{},"用":{"docs":{},"后":{"docs":{},"执":{"docs":{},"行":{"docs":{},"。":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"增":{"docs":{},"加":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"或":{"docs":{},"服":{"docs":{},"务":{"docs":{},"模":{"docs":{},"型":{"docs":{},"增":{"docs":{},"加":{"docs":{},"字":{"docs":{},"段":{"docs":{},",":{"docs":{},"可":{"docs":{},"向":{"docs":{},"后":{"docs":{},"兼":{"docs":{},"容":{"docs":{},",":{"docs":{},"删":{"docs":{},"除":{"docs":{},"方":{"docs":{},"法":{"docs":{},"或":{"docs":{},"删":{"docs":{},"除":{"docs":{},"字":{"docs":{},"段":{"docs":{},",":{"docs":{},"将":{"docs":{},"不":{"docs":{},"兼":{"docs":{},"容":{"docs":{},",":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"类":{"docs":{},"型":{"docs":{},"新":{"docs":{},"增":{"docs":{},"字":{"docs":{},"段":{"docs":{},"也":{"docs":{},"不":{"docs":{},"兼":{"docs":{},"容":{"docs":{},",":{"docs":{},"需":{"docs":{},"通":{"docs":{},"过":{"docs":{},"变":{"docs":{},"更":{"docs":{},"版":{"docs":{},"本":{"docs":{},"号":{"docs":{},"升":{"docs":{},"级":{"docs":{},"。":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"尽":{"docs":{},"可":{"docs":{},"能":{"docs":{},"大":{"docs":{},"粒":{"docs":{},"度":{"docs":{},",":{"docs":{},"每":{"docs":{},"个":{"docs":{},"服":{"docs":{},"务":{"docs":{},"方":{"docs":{},"法":{"docs":{},"应":{"docs":{},"代":{"docs":{},"表":{"docs":{},"一":{"docs":{},"个":{"docs":{},"功":{"docs":{},"能":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"某":{"docs":{},"功":{"docs":{},"能":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"步":{"docs":{},"骤":{"docs":{},",":{"docs":{},"否":{"docs":{},"则":{"docs":{},"将":{"docs":{},"面":{"docs":{},"临":{"docs":{},"分":{"docs":{},"布":{"docs":{},"式":{"docs":{},"事":{"docs":{},"务":{"docs":{},"问":{"docs":{},"题":{"docs":{},",":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"暂":{"docs":{},"未":{"docs":{},"提":{"docs":{},"供":{"docs":{},"分":{"docs":{},"布":{"docs":{},"式":{"docs":{},"事":{"docs":{},"务":{"docs":{},"支":{"docs":{},"持":{"docs":{},"。":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"建":{"docs":{},"议":{"docs":{},"以":{"docs":{},"业":{"docs":{},"务":{"docs":{},"场":{"docs":{},"景":{"docs":{},"为":{"docs":{},"单":{"docs":{},"位":{"docs":{},"划":{"docs":{},"分":{"docs":{},",":{"docs":{},"并":{"docs":{},"对":{"docs":{},"相":{"docs":{},"近":{"docs":{},"业":{"docs":{},"务":{"docs":{},"做":{"docs":{},"抽":{"docs":{},"象":{"docs":{},",":{"docs":{},"防":{"docs":{},"止":{"docs":{},"接":{"docs":{},"口":{"docs":{},"数":{"docs":{},"量":{"docs":{},"爆":{"docs":{},"炸":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"寄":{"docs":{},"宿":{"docs":{},"在":{"docs":{},"应":{"docs":{},"用":{"docs":{},"上":{"docs":{},",":{"docs":{},"只":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"一":{"docs":{},"部":{"docs":{},"分":{"docs":{},"的":{"docs":{},"机":{"docs":{},"器":{"docs":{},",":{"docs":{},"防":{"docs":{},"止":{"docs":{},"整":{"docs":{},"个":{"docs":{},"集":{"docs":{},"群":{"docs":{},"挂":{"docs":{},"掉":{"docs":{},":":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}}}}}}}}}}},"调":{"docs":{},"用":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"如":{"docs":{},":":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},",":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}},"者":{"docs":{},"所":{"docs":{},"在":{"docs":{},"的":{"docs":{},"分":{"docs":{},"层":{"docs":{},"。":{"docs":{},"如":{"docs":{},":":{"docs":{},"b":{"docs":{},"i":{"docs":{},"z":{"docs":{},"、":{"docs":{},"d":{"docs":{},"a":{"docs":{},"o":{"docs":{},"、":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},":":{"docs":{},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"、":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},":":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"。":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"降":{"docs":{},"级":{"docs":{"demos/服务降级.html":{"ref":"demos/服务降级.html","tf":5}},":":{"docs":{},"(":{"docs":{},"通":{"docs":{},"常":{"docs":{},"用":{"docs":{},"于":{"docs":{},"临":{"docs":{},"时":{"docs":{},"屏":{"docs":{},"蔽":{"docs":{},"某":{"docs":{},"个":{"docs":{},"出":{"docs":{},"错":{"docs":{},"的":{"docs":{},"非":{"docs":{},"关":{"docs":{},"键":{"docs":{},"服":{"docs":{},"务":{"docs":{},")":{"docs":{"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}},"发":{"docs":{},"现":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.01984126984126984},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.013513513513513514},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.014634146341463415},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.024193548387096774},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.0111731843575419}},":":{"docs":{},"表":{"docs":{},"示":{"docs":{},"该":{"docs":{},"配":{"docs":{},"置":{"docs":{},"项":{"docs":{},"用":{"docs":{},"于":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"注":{"docs":{},"册":{"docs":{},"与":{"docs":{},"发":{"docs":{},"现":{"docs":{},",":{"docs":{},"目":{"docs":{},"的":{"docs":{},"是":{"docs":{},"让":{"docs":{},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},"找":{"docs":{},"到":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"。":{"docs":{"reference-xmlconf/introduction.html":{"ref":"reference-xmlconf/introduction.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"治":{"docs":{},"理":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.03968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.04054054054054054},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.01951219512195122},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.056451612903225805},"reference-xmlconf/dubbo-monitor.html":{"ref":"reference-xmlconf/dubbo-monitor.html","tf":0.07142857142857142},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.08823529411764706},"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.10256410256410256},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.030726256983240222},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.04},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.028169014084507043},"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421},"reference-xmlconf/dubbo-parameter.html":{"ref":"reference-xmlconf/dubbo-parameter.html","tf":0.07692307692307693}},":":{"docs":{},"表":{"docs":{},"示":{"docs":{},"该":{"docs":{},"配":{"docs":{},"置":{"docs":{},"项":{"docs":{},"用":{"docs":{},"于":{"docs":{},"治":{"docs":{},"理":{"docs":{},"服":{"docs":{},"务":{"docs":{},"间":{"docs":{},"的":{"docs":{},"关":{"docs":{},"系":{"docs":{},",":{"docs":{},"或":{"docs":{},"为":{"docs":{},"开":{"docs":{},"发":{"docs":{},"测":{"docs":{},"试":{"docs":{},"提":{"docs":{},"供":{"docs":{},"便":{"docs":{},"利":{"docs":{},"条":{"docs":{},"件":{"docs":{},"。":{"docs":{"reference-xmlconf/introduction.html":{"ref":"reference-xmlconf/introduction.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"对":{"docs":{},"象":{"docs":{},"实":{"docs":{},"现":{"docs":{},"引":{"docs":{},"用":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968}}}}}}}},"文":{"docs":{},"档":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}},"是":{"docs":{},"否":{"docs":{},"动":{"docs":{},"态":{"docs":{},"注":{"docs":{},"册":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"设":{"docs":{},"为":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{},"注":{"docs":{},"册":{"docs":{},"后":{"docs":{},"将":{"docs":{},"显":{"docs":{},"示":{"docs":{},"后":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"状":{"docs":{},"态":{"docs":{},",":{"docs":{},"需":{"docs":{},"人":{"docs":{},"工":{"docs":{},"启":{"docs":{},"用":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"停":{"docs":{},"止":{"docs":{},"时":{"docs":{},",":{"docs":{},"也":{"docs":{},"不":{"docs":{},"会":{"docs":{},"自":{"docs":{},"动":{"docs":{},"取":{"docs":{},"消":{"docs":{},"册":{"docs":{},",":{"docs":{},"需":{"docs":{},"人":{"docs":{},"工":{"docs":{},"禁":{"docs":{},"用":{"docs":{},"。":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"过":{"docs":{},"时":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"设":{"docs":{},"为":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},",":{"docs":{},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},"引":{"docs":{},"用":{"docs":{},"时":{"docs":{},"将":{"docs":{},"打":{"docs":{},"印":{"docs":{},"服":{"docs":{},"务":{"docs":{},"过":{"docs":{},"时":{"docs":{},"警":{"docs":{},"告":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"日":{"docs":{},"志":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"权":{"docs":{},"重":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}},"版":{"docs":{},"本":{"docs":{},",":{"docs":{},"建":{"docs":{},"议":{"docs":{},"使":{"docs":{},"用":{"docs":{},"两":{"docs":{},"位":{"docs":{},"数":{"docs":{},"字":{"docs":{},"版":{"docs":{},"本":{"docs":{},",":{"docs":{},"如":{"docs":{},":":{"1":{"docs":{},".":{"0":{"docs":{},",":{"docs":{},"通":{"docs":{},"常":{"docs":{},"在":{"docs":{},"接":{"docs":{},"口":{"docs":{},"不":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"时":{"docs":{},"版":{"docs":{},"本":{"docs":{},"号":{"docs":{},"才":{"docs":{},"需":{"docs":{},"要":{"docs":{},"升":{"docs":{},"级":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}}}}}},"与":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"的":{"docs":{},"版":{"docs":{},"本":{"docs":{},"一":{"docs":{},"致":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}}}}}}}}}}}},"负":{"docs":{},"责":{"docs":{},"人":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"服":{"docs":{},"务":{"docs":{},"治":{"docs":{},"理":{"docs":{},",":{"docs":{},"请":{"docs":{},"填":{"docs":{},"写":{"docs":{},"负":{"docs":{},"责":{"docs":{},"人":{"docs":{},"公":{"docs":{},"司":{"docs":{},"邮":{"docs":{},"箱":{"docs":{},"前":{"docs":{},"缀":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}}}}}}}}},"路":{"docs":{},"径":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968}}}},"引":{"docs":{},"用":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"d":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}}}}}},"主":{"docs":{},"机":{"docs":{},"名":{"docs":{},",":{"docs":{},"多":{"docs":{},"网":{"docs":{},"卡":{"docs":{},"选":{"docs":{},"择":{"docs":{},"或":{"docs":{},"指":{"docs":{},"定":{"docs":{},"v":{"docs":{},"i":{"docs":{},"p":{"docs":{},"及":{"docs":{},"域":{"docs":{},"名":{"docs":{},"时":{"docs":{},"使":{"docs":{},"用":{"docs":{},",":{"docs":{},"为":{"docs":{},"空":{"docs":{},"则":{"docs":{},"自":{"docs":{},"动":{"docs":{},"查":{"docs":{},"找":{"docs":{},"本":{"docs":{},"机":{"docs":{},"i":{"docs":{},"p":{"docs":{},",":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805}},"建":{"docs":{},"议":{"docs":{},"不":{"docs":{},"要":{"docs":{},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"让":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"自":{"docs":{},"动":{"docs":{},"获":{"docs":{},"取":{"docs":{},"本":{"docs":{},"机":{"docs":{},"i":{"docs":{},"p":{"docs":{"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"端":{"docs":{},"口":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805}}}},"线":{"docs":{},"程":{"docs":{},"池":{"docs":{},"大":{"docs":{},"小":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.018867924528301886}},"(":{"docs":{},"固":{"docs":{},"定":{"docs":{},"大":{"docs":{},"小":{"docs":{},")":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}},"器":{"docs":{},",":{"docs":{},"并":{"docs":{},"将":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}},"监":{"docs":{},"控":{"docs":{},"中":{"docs":{},"心":{"docs":{},"启":{"docs":{},"动":{"docs":{},"时":{"docs":{},",":{"docs":{},"从":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{},":":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"/":{"docs":{},"*":{"docs":{},"订":{"docs":{},"阅":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"和":{"docs":{},"u":{"docs":{},"n":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{},"以":{"docs":{},"及":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"和":{"docs":{},"u":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"事":{"docs":{},"件":{"docs":{},"。":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"收":{"docs":{},"到":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"和":{"docs":{},"u":{"docs":{},"n":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"事":{"docs":{},"件":{"docs":{},"后":{"docs":{},",":{"docs":{},"从":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},":":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"/":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"下":{"docs":{},"获":{"docs":{},"取":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"地":{"docs":{},"址":{"docs":{},"列":{"docs":{},"表":{"docs":{},"。":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"和":{"docs":{},"u":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"事":{"docs":{},"件":{"docs":{},"后":{"docs":{},",":{"docs":{},"从":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},":":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"下":{"docs":{},"获":{"docs":{},"取":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"地":{"docs":{},"址":{"docs":{},"列":{"docs":{},"表":{"docs":{},"。":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"化":{"docs":{},"最":{"docs":{},"佳":{"docs":{},"实":{"docs":{},"践":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":5}}}}}}},"协":{"docs":{},"议":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}},"参":{"docs":{},"数":{"docs":{},"及":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"不":{"docs":{},"建":{"docs":{},"议":{"docs":{},"使":{"docs":{},"用":{"docs":{},"接":{"docs":{},"口":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"数":{"docs":{},"据":{"docs":{},"模":{"docs":{},"型":{"docs":{},"抽":{"docs":{},"象":{"docs":{},"的":{"docs":{},"意":{"docs":{},"义":{"docs":{},"不":{"docs":{},"大":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},"需":{"docs":{},"要":{"docs":{},"接":{"docs":{},"口":{"docs":{},"实":{"docs":{},"现":{"docs":{},"类":{"docs":{},"的":{"docs":{},"元":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"并":{"docs":{},"不":{"docs":{},"能":{"docs":{},"起":{"docs":{},"到":{"docs":{},"隐":{"docs":{},"藏":{"docs":{},"实":{"docs":{},"现":{"docs":{},"的":{"docs":{},"意":{"docs":{},"图":{"docs":{},"。":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"建":{"docs":{},"议":{"docs":{},"使":{"docs":{},"用":{"docs":{},"p":{"docs":{},"o":{"docs":{},"j":{"docs":{},"o":{"docs":{},"对":{"docs":{},"象":{"docs":{},",":{"docs":{},"即":{"docs":{},"通":{"docs":{},"过":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},",":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"方":{"docs":{},"法":{"docs":{},"表":{"docs":{},"示":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"对":{"docs":{},"象":{"docs":{},"。":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"都":{"docs":{},"必":{"docs":{},"需":{"docs":{},"是":{"docs":{},"b":{"docs":{},"y":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"的":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"能":{"docs":{},"是":{"docs":{},"b":{"docs":{},"y":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"的":{"docs":{},",":{"docs":{},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},"和":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"或":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"引":{"docs":{},"用":{"docs":{},"并":{"docs":{},"不":{"docs":{},"是":{"docs":{},"同":{"docs":{},"一":{"docs":{},"个":{"docs":{},",":{"docs":{},"只":{"docs":{},"是":{"docs":{},"值":{"docs":{},"相":{"docs":{},"同":{"docs":{},",":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"不":{"docs":{},"支":{"docs":{},"持":{"docs":{},"引":{"docs":{},"用":{"docs":{},"远":{"docs":{},"程":{"docs":{},"对":{"docs":{},"象":{"docs":{},"。":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"力":{"docs":{},"治":{"docs":{},"理":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}},"架":{"docs":{},"构":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":5}}}},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"为":{"docs":{},"对":{"docs":{},"等":{"docs":{},"集":{"docs":{},"群":{"docs":{},",":{"docs":{},"可":{"docs":{},"动":{"docs":{},"态":{"docs":{},"增":{"docs":{},"加":{"docs":{},"机":{"docs":{},"器":{"docs":{},"部":{"docs":{},"署":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"所":{"docs":{},"有":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"将":{"docs":{},"自":{"docs":{},"动":{"docs":{},"发":{"docs":{},"现":{"docs":{},"新":{"docs":{},"的":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"全":{"docs":{},"部":{"docs":{},"宕":{"docs":{},"掉":{"docs":{},"后":{"docs":{},",":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"和":{"docs":{},"服":{"docs":{},"务":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"仍":{"docs":{},"能":{"docs":{},"通":{"docs":{},"过":{"docs":{},"本":{"docs":{},"地":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"通":{"docs":{},"讯":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"监":{"docs":{},"控":{"docs":{},"中":{"docs":{},"心":{"docs":{},"全":{"docs":{},"部":{"docs":{},"宕":{"docs":{},"机":{"docs":{},",":{"docs":{},"不":{"docs":{},"影":{"docs":{},"响":{"docs":{},"已":{"docs":{},"运":{"docs":{},"行":{"docs":{},"的":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"和":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},",":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"在":{"docs":{},"本":{"docs":{},"地":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"了":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"列":{"docs":{},"表":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"都":{"docs":{},"是":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},",":{"docs":{},"服":{"docs":{},"务":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"可":{"docs":{},"以":{"docs":{},"直":{"docs":{},"连":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}},"对":{"docs":{},"等":{"docs":{},"集":{"docs":{},"群":{"docs":{},",":{"docs":{},"任":{"docs":{},"意":{"docs":{},"一":{"docs":{},"台":{"docs":{},"宕":{"docs":{},"掉":{"docs":{},"后":{"docs":{},",":{"docs":{},"将":{"docs":{},"自":{"docs":{},"动":{"docs":{},"切":{"docs":{},"换":{"docs":{},"到":{"docs":{},"另":{"docs":{},"一":{"docs":{},"台":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}},"负":{"docs":{},"责":{"docs":{},"服":{"docs":{},"务":{"docs":{},"地":{"docs":{},"址":{"docs":{},"的":{"docs":{},"注":{"docs":{},"册":{"docs":{},"与":{"docs":{},"查":{"docs":{},"找":{"docs":{},",":{"docs":{},"相":{"docs":{},"当":{"docs":{},"于":{"docs":{},"目":{"docs":{},"录":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"和":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"只":{"docs":{},"在":{"docs":{},"启":{"docs":{},"动":{"docs":{},"时":{"docs":{},"与":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"交":{"docs":{},"互":{"docs":{},",":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"不":{"docs":{},"转":{"docs":{},"发":{"docs":{},"请":{"docs":{},"求":{"docs":{},",":{"docs":{},"压":{"docs":{},"力":{"docs":{},"较":{"docs":{},"小":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"返":{"docs":{},"回":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"地":{"docs":{},"址":{"docs":{},"列":{"docs":{},"表":{"docs":{},"给":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"有":{"docs":{},"变":{"docs":{},"更":{"docs":{},",":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"将":{"docs":{},"基":{"docs":{},"于":{"docs":{},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{},"推":{"docs":{},"送":{"docs":{},"变":{"docs":{},"更":{"docs":{},"数":{"docs":{},"据":{"docs":{},"给":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"。":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"通":{"docs":{},"过":{"docs":{},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{},"感":{"docs":{},"知":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"的":{"docs":{},"存":{"docs":{},"在":{"docs":{},",":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"宕":{"docs":{},"机":{"docs":{},",":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"将":{"docs":{},"立":{"docs":{},"即":{"docs":{},"推":{"docs":{},"送":{"docs":{},"事":{"docs":{},"件":{"docs":{},"通":{"docs":{},"知":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},",":{"docs":{},"服":{"docs":{},"务":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"三":{"docs":{},"者":{"docs":{},"之":{"docs":{},"间":{"docs":{},"均":{"docs":{},"为":{"docs":{},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{},",":{"docs":{},"监":{"docs":{},"控":{"docs":{},"中":{"docs":{},"心":{"docs":{},"除":{"docs":{},"外":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"配":{"docs":{},"置":{"docs":{},"连":{"docs":{},"接":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"相":{"docs":{},"关":{"docs":{},"信":{"docs":{},"息":{"docs":{},"。":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}}}}}}}}}}},":":{"docs":{},"配":{"docs":{},"置":{"docs":{},"类":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},".":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"说":{"docs":{},"明":{"docs":{},":":{"docs":{},"如":{"docs":{},"果":{"docs":{},"有":{"docs":{},"多":{"docs":{},"个":{"docs":{},"不":{"docs":{},"同":{"docs":{},"的":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"声":{"docs":{},"明":{"docs":{},"多":{"docs":{},"个":{"docs":{},"|":{"docs":{},"标":{"docs":{},"签":{"docs":{},",":{"docs":{},"并":{"docs":{},"在":{"docs":{},"|":{"docs":{},"或":{"docs":{},"|":{"docs":{},"的":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"属":{"docs":{},"性":{"docs":{},"指":{"docs":{},"定":{"docs":{},"使":{"docs":{},"用":{"docs":{},"的":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"。":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"灵":{"docs":{},"活":{"docs":{},"改":{"docs":{},"变":{"docs":{},"授":{"docs":{},"权":{"docs":{},"方":{"docs":{},"式":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"需":{"docs":{},"修":{"docs":{},"改":{"docs":{},"或":{"docs":{},"升":{"docs":{},"级":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{"demos/令牌验证.html":{"ref":"demos/令牌验证.html","tf":0.16666666666666666}}}}}}}}}}}}}}}}}}}}}}},"不":{"docs":{},"存":{"docs":{},"在":{"docs":{},"时":{"docs":{},",":{"docs":{},"是":{"docs":{},"否":{"docs":{},"报":{"docs":{},"错":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}}}}}}}},"会":{"docs":{},"话":{"docs":{},"超":{"docs":{},"时":{"docs":{},"时":{"docs":{},"间":{"docs":{},"(":{"docs":{},"毫":{"docs":{},"秒":{"docs":{},")":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"检":{"docs":{},"测":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"非":{"docs":{},"正":{"docs":{},"常":{"docs":{},"断":{"docs":{},"线":{"docs":{},"后":{"docs":{},"的":{"docs":{},"脏":{"docs":{},"数":{"docs":{},"据":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"用":{"docs":{},"心":{"docs":{},"跳":{"docs":{},"检":{"docs":{},"测":{"docs":{},"的":{"docs":{},"实":{"docs":{},"现":{"docs":{},",":{"docs":{},"此":{"docs":{},"时":{"docs":{},"间":{"docs":{},"就":{"docs":{},"是":{"docs":{},"心":{"docs":{},"跳":{"docs":{},"间":{"docs":{},"隔":{"docs":{},",":{"docs":{},"不":{"docs":{},"同":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"实":{"docs":{},"现":{"docs":{},"不":{"docs":{},"一":{"docs":{},"样":{"docs":{},"。":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"引":{"docs":{},"用":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"d":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}}}}}}}}}}},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},"地":{"docs":{},"址":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"地":{"docs":{},"址":{"docs":{},"没":{"docs":{},"有":{"docs":{},"端":{"docs":{},"口":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"为":{"9":{"0":{"9":{"0":{"docs":{},",":{"docs":{},"同":{"docs":{},"一":{"docs":{},"集":{"docs":{},"群":{"docs":{},"内":{"docs":{},"的":{"docs":{},"多":{"docs":{},"个":{"docs":{},"地":{"docs":{},"址":{"docs":{},"用":{"docs":{},"逗":{"docs":{},"号":{"docs":{},"分":{"docs":{},"隔":{"docs":{},",":{"docs":{},"如":{"docs":{},":":{"docs":{},"i":{"docs":{},"p":{"docs":{},":":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},",":{"docs":{},"i":{"docs":{},"p":{"docs":{},":":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},",":{"docs":{},"不":{"docs":{},"同":{"docs":{},"集":{"docs":{},"群":{"docs":{},"的":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},",":{"docs":{},"请":{"docs":{},"配":{"docs":{},"置":{"docs":{},"多":{"docs":{},"个":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},"缺":{"docs":{},"省":{"docs":{},"端":{"docs":{},"口":{"docs":{},",":{"docs":{},"当":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"没":{"docs":{},"有":{"docs":{},"带":{"docs":{},"端":{"docs":{},"口":{"docs":{},"时":{"docs":{},"使":{"docs":{},"用":{"docs":{},"此":{"docs":{},"端":{"docs":{},"口":{"docs":{},"做":{"docs":{},"为":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"值":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"请":{"docs":{},"求":{"docs":{},"超":{"docs":{},"时":{"docs":{},"时":{"docs":{},"间":{"docs":{},"(":{"docs":{},"毫":{"docs":{},"秒":{"docs":{},")":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}}}}}}}}},"参":{"docs":{},"考":{"docs":{},"手":{"docs":{},"册":{"docs":{"reference-registry/introduction.html":{"ref":"reference-registry/introduction.html","tf":5}}}}}},"地":{"docs":{},"址":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}},"的":{"docs":{},"列":{"docs":{},"表":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}},"订":{"docs":{},"阅":{"docs":{},"失":{"docs":{},"败":{"docs":{},"时":{"docs":{},"报":{"docs":{},"错":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}}}}}}}}},"的":{"docs":{},"地":{"docs":{},"址":{"docs":{},"如":{"docs":{},"果":{"docs":{},"获":{"docs":{},"取":{"docs":{},"不":{"docs":{},"正":{"docs":{},"确":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"需":{"docs":{},"要":{"docs":{},"注":{"docs":{},"册":{"docs":{},"公":{"docs":{},"网":{"docs":{},"地":{"docs":{},"址":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},":":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.03333333333333333}}}}}}}}}}}}}}}}}}}}}}}}}}}},"意":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904}},"声":{"docs":{},"明":{"docs":{},":":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"n":{"docs":{},"s":{"docs":{},":":{"docs":{},"p":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"/":{"docs":{},"p":{"docs":{},"\"":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"为":{"docs":{},"重":{"docs":{},"对":{"docs":{},"象":{"docs":{},",":{"docs":{},"内":{"docs":{},"部":{"docs":{},"封":{"docs":{},"装":{"docs":{},"了":{"docs":{},"与":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"的":{"docs":{},"连":{"docs":{},"接":{"docs":{},",":{"docs":{},"以":{"docs":{},"及":{"docs":{},"与":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"的":{"docs":{},"连":{"docs":{},"接":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"为":{"docs":{},"重":{"docs":{},"对":{"docs":{},"象":{"docs":{},",":{"docs":{},"内":{"docs":{},"部":{"docs":{},"封":{"docs":{},"装":{"docs":{},"了":{"docs":{},"与":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"的":{"docs":{},"连":{"docs":{},"接":{"docs":{},",":{"docs":{},"以":{"docs":{},"及":{"docs":{},"开":{"docs":{},"启":{"docs":{},"服":{"docs":{},"务":{"docs":{},"端":{"docs":{},"口":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"此":{"docs":{},"代":{"docs":{},"理":{"docs":{},"对":{"docs":{},"象":{"docs":{},"内":{"docs":{},"部":{"docs":{},"封":{"docs":{},"装":{"docs":{},"了":{"docs":{},"所":{"docs":{},"有":{"docs":{},"通":{"docs":{},"讯":{"docs":{},"细":{"docs":{},"节":{"docs":{},",":{"docs":{},"对":{"docs":{},"象":{"docs":{},"较":{"docs":{},"重":{"docs":{},",":{"docs":{},"请":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"复":{"docs":{},"用":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"如":{"docs":{},"果":{"docs":{},"参":{"docs":{},"数":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"接":{"docs":{},"口":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"等":{"docs":{},"丢":{"docs":{},"失":{"docs":{},"泛":{"docs":{},"型":{"docs":{},",":{"docs":{},"可":{"docs":{},"通":{"docs":{},"过":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"属":{"docs":{},"性":{"docs":{},"指":{"docs":{},"定":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"每":{"docs":{},"发":{"docs":{},"起":{"docs":{},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"上":{"docs":{},"下":{"docs":{},"文":{"docs":{},"状":{"docs":{},"态":{"docs":{},"会":{"docs":{},"变":{"docs":{},"化":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}},"服":{"docs":{},"务":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"与":{"docs":{},"服":{"docs":{},"务":{"docs":{},"引":{"docs":{},"用":{"docs":{},"都":{"docs":{},"需":{"docs":{},"要":{"docs":{},"声":{"docs":{},"明":{"docs":{"demos/本地调用.html":{"ref":"demos/本地调用.html","tf":0.0625}}}}}}}}}}}}}}}},"一":{"docs":{},"个":{"docs":{},"服":{"docs":{},"务":{"docs":{},"只":{"docs":{},"能":{"docs":{},"有":{"docs":{},"一":{"docs":{},"条":{"docs":{},"白":{"docs":{},"名":{"docs":{},"单":{"docs":{},"规":{"docs":{},"则":{"docs":{},",":{"docs":{},"否":{"docs":{},"则":{"docs":{},"两":{"docs":{},"条":{"docs":{},"规":{"docs":{},"则":{"docs":{},"交":{"docs":{},"叉":{"docs":{},",":{"docs":{},"就":{"docs":{},"都":{"docs":{},"被":{"docs":{},"筛":{"docs":{},"选":{"docs":{},"掉":{"docs":{},"了":{"docs":{},")":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"只":{"docs":{},"有":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"是":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"条":{"docs":{},"件":{"docs":{},",":{"docs":{},"三":{"docs":{},"者":{"docs":{},"决":{"docs":{},"定":{"docs":{},"是":{"docs":{},"不":{"docs":{},"是":{"docs":{},"同":{"docs":{},"一":{"docs":{},"个":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"其":{"docs":{},"它":{"docs":{},"配":{"docs":{},"置":{"docs":{},"项":{"docs":{},"均":{"docs":{},"为":{"docs":{},"调":{"docs":{},"优":{"docs":{},"和":{"docs":{},"治":{"docs":{},"理":{"docs":{},"参":{"docs":{},"数":{"docs":{},"。":{"docs":{"reference-xmlconf/introduction.html":{"ref":"reference-xmlconf/introduction.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"区":{"docs":{},"别":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}}}},"为":{"docs":{},"了":{"docs":{},"避":{"docs":{},"免":{"docs":{},"复":{"docs":{},"杂":{"docs":{},"化":{"docs":{},"线":{"docs":{},"上":{"docs":{},"环":{"docs":{},"境":{"docs":{},",":{"docs":{},"不":{"docs":{},"要":{"docs":{},"在":{"docs":{},"线":{"docs":{},"上":{"docs":{},"使":{"docs":{},"用":{"docs":{},"这":{"docs":{},"个":{"docs":{},"功":{"docs":{},"能":{"docs":{},",":{"docs":{},"只":{"docs":{},"应":{"docs":{},"在":{"docs":{},"测":{"docs":{},"试":{"docs":{},"阶":{"docs":{},"段":{"docs":{},"使":{"docs":{},"用":{"docs":{},"。":{"docs":{"demos/直连提供者.html":{"ref":"demos/直连提供者.html","tf":0.05263157894736842}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"!":{"docs":{"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.02127659574468085}}},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"使":{"docs":{},"用":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"派":{"docs":{},"发":{"docs":{},"请":{"docs":{},"求":{"docs":{},":":{"docs":{"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}}}}}}}}}}}}}},":":{"docs":{},"下":{"docs":{},"面":{"docs":{},"只":{"docs":{},"列":{"docs":{},"出":{"docs":{},"不":{"docs":{},"同":{"docs":{},"的":{"docs":{},"地":{"docs":{},"方":{"docs":{},",":{"docs":{},"其":{"docs":{},"它":{"docs":{},"参":{"docs":{},"见":{"docs":{},"上":{"docs":{},"面":{"docs":{},"的":{"docs":{},"写":{"docs":{},"法":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}}}}}}}},"解":{"docs":{},"配":{"docs":{},"置":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":5}}}},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}},"同":{"docs":{},"中":{"docs":{},"心":{"docs":{},"地":{"docs":{},"址":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"支":{"docs":{},"持":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},",":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}}}},"监":{"docs":{},"控":{"docs":{},"中":{"docs":{},"心":{"docs":{},"宕":{"docs":{},"掉":{"docs":{},"不":{"docs":{},"影":{"docs":{},"响":{"docs":{},"使":{"docs":{},"用":{"docs":{},",":{"docs":{},"只":{"docs":{},"是":{"docs":{},"丢":{"docs":{},"失":{"docs":{},"部":{"docs":{},"分":{"docs":{},"采":{"docs":{},"样":{"docs":{},"数":{"docs":{},"据":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}},"负":{"docs":{},"责":{"docs":{},"统":{"docs":{},"计":{"docs":{},"各":{"docs":{},"服":{"docs":{},"务":{"docs":{},"调":{"docs":{},"用":{"docs":{},"次":{"docs":{},"数":{"docs":{},",":{"docs":{},"调":{"docs":{},"用":{"docs":{},"时":{"docs":{},"间":{"docs":{},"等":{"docs":{},",":{"docs":{},"统":{"docs":{},"计":{"docs":{},"先":{"docs":{},"在":{"docs":{},"内":{"docs":{},"存":{"docs":{},"汇":{"docs":{},"总":{"docs":{},"后":{"docs":{},"每":{"docs":{},"分":{"docs":{},"钟":{"docs":{},"一":{"docs":{},"次":{"docs":{},"发":{"docs":{},"送":{"docs":{},"到":{"docs":{},"监":{"docs":{},"控":{"docs":{},"中":{"docs":{},"心":{"docs":{},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},",":{"docs":{},"并":{"docs":{},"以":{"docs":{},"报":{"docs":{},"表":{"docs":{},"展":{"docs":{},"示":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"配":{"docs":{},"置":{"docs":{},"连":{"docs":{},"接":{"docs":{},"监":{"docs":{},"控":{"docs":{},"中":{"docs":{},"心":{"docs":{},"相":{"docs":{},"关":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"可":{"docs":{},"选":{"docs":{},"。":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}}}}}}}}}}}}}},":":{"docs":{},"配":{"docs":{},"置":{"docs":{},"类":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},".":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},".":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"reference-xmlconf/dubbo-monitor.html":{"ref":"reference-xmlconf/dubbo-monitor.html","tf":0.03571428571428571}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"为":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"\"":{"docs":{},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"从":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"发":{"docs":{},"现":{"docs":{},"监":{"docs":{},"控":{"docs":{},"中":{"docs":{},"心":{"docs":{},"地":{"docs":{},"址":{"docs":{},",":{"docs":{},"否":{"docs":{},"则":{"docs":{},"直":{"docs":{},"连":{"docs":{},"监":{"docs":{},"控":{"docs":{},"中":{"docs":{},"心":{"docs":{},"。":{"docs":{"reference-xmlconf/dubbo-monitor.html":{"ref":"reference-xmlconf/dubbo-monitor.html","tf":0.03571428571428571}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"启":{"docs":{},"动":{"docs":{},"时":{"docs":{},":":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}},"通":{"docs":{},"过":{"docs":{},"p":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"功":{"docs":{},"能":{"docs":{},"订":{"docs":{},"阅":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"/":{"docs":{},"*":{"docs":{},",":{"docs":{},"会":{"docs":{},"收":{"docs":{},"到":{"docs":{},"所":{"docs":{},"有":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"变":{"docs":{},"更":{"docs":{},"事":{"docs":{},"件":{"docs":{},"。":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"端":{"docs":{},"口":{"docs":{},"状":{"docs":{},"态":{"docs":{},":":{"docs":{},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}},"配":{"docs":{},"置":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}},"统":{"docs":{},"一":{"docs":{},"管":{"docs":{},"理":{"docs":{},"控":{"docs":{},"制":{"docs":{},"台":{"docs":{},"。":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}},"计":{"1":{"0":{"docs":{},"次":{"docs":{},"服":{"docs":{},"务":{"docs":{},"任":{"docs":{},"意":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"调":{"docs":{},"用":{"docs":{},"情":{"docs":{},"况":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}}}}},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"调":{"docs":{},"用":{"docs":{},"情":{"docs":{},"况":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}}}}}}},"docs":{},"次":{"docs":{},"服":{"docs":{},"务":{"docs":{},"任":{"docs":{},"意":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"调":{"docs":{},"用":{"docs":{},"情":{"docs":{},"况":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}}}}},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"调":{"docs":{},"用":{"docs":{},"情":{"docs":{},"况":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}}}}}}},"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"调":{"docs":{},"用":{"docs":{},"次":{"docs":{},"调":{"docs":{},"和":{"docs":{},"调":{"docs":{},"用":{"docs":{},"时":{"docs":{},"间":{"docs":{},"的":{"docs":{},"监":{"docs":{},"控":{"docs":{},"中":{"docs":{},"心":{"docs":{},"。":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}},"于":{"docs":{"coveragence.html":{"ref":"coveragence.html","tf":0.16666666666666666}}}}},"自":{"docs":{},"动":{"docs":{},"部":{"docs":{},"署":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"本":{"docs":{},"地":{"docs":{},"代":{"docs":{},"理":{"docs":{},"。":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}},"加":{"docs":{},"载":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}},"配":{"docs":{},"置":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"4":{"docs":{},"j":{"docs":{},"的":{"docs":{},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"在":{"docs":{},"多":{"docs":{},"进":{"docs":{},"程":{"docs":{},"启":{"docs":{},"动":{"docs":{},"时":{"docs":{},",":{"docs":{},"自":{"docs":{},"动":{"docs":{},"给":{"docs":{},"日":{"docs":{},"志":{"docs":{},"文":{"docs":{},"件":{"docs":{},"按":{"docs":{},"进":{"docs":{},"程":{"docs":{},"分":{"docs":{},"目":{"docs":{},"录":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}},"。":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}},"暴":{"docs":{},"露":{"docs":{},"、":{"docs":{},"引":{"docs":{},"用":{"docs":{},"本":{"docs":{},"地":{"docs":{},"服":{"docs":{},"务":{"docs":{"demos/本地调用.html":{"ref":"demos/本地调用.html","tf":0.0625}}}}}}}}}}},"查":{"docs":{},"找":{"docs":{},"本":{"docs":{},"机":{"docs":{},"i":{"docs":{},"p":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}},"节":{"docs":{},"点":{"docs":{},"角":{"docs":{},"色":{"docs":{},"说":{"docs":{},"明":{"docs":{},":":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}},"调":{"docs":{},"度":{"docs":{},"中":{"docs":{},"心":{"docs":{},"基":{"docs":{},"于":{"docs":{},"访":{"docs":{},"问":{"docs":{},"压":{"docs":{},"力":{"docs":{},"自":{"docs":{},"动":{"docs":{},"增":{"docs":{},"减":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"。":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}},"关":{"docs":{},"系":{"docs":{},"说":{"docs":{},"明":{"docs":{},":":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}},"远":{"docs":{},"程":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},"。":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}}}}}}}}}},"信":{"docs":{},"息":{"docs":{},"丢":{"docs":{},"失":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}},"代":{"docs":{},"码":{"docs":{},":":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.021739130434782608}}}}},"服":{"docs":{},"务":{"docs":{},"负":{"docs":{},"责":{"docs":{},"人":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"服":{"docs":{},"务":{"docs":{},"治":{"docs":{},"理":{"docs":{},",":{"docs":{},"请":{"docs":{},"填":{"docs":{},"写":{"docs":{},"负":{"docs":{},"责":{"docs":{},"人":{"docs":{},"公":{"docs":{},"司":{"docs":{},"邮":{"docs":{},"箱":{"docs":{},"前":{"docs":{},"缀":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},"(":{"docs":{},"自":{"docs":{},"动":{"docs":{},"查":{"docs":{},"找":{"docs":{},"包":{"docs":{},"含":{"docs":{},"此":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},")":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}}}}}}}}}},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}},"过":{"docs":{},"程":{"docs":{},":":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}},"超":{"docs":{},"时":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}},"整":{"docs":{},"权":{"docs":{},"重":{"docs":{},":":{"docs":{},"(":{"docs":{},"通":{"docs":{},"常":{"docs":{},"用":{"docs":{},"于":{"docs":{},"容":{"docs":{},"量":{"docs":{},"评":{"docs":{},"估":{"docs":{},",":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"权":{"docs":{},"重":{"docs":{},"为":{"1":{"0":{"0":{"docs":{},")":{"docs":{"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}},"负":{"docs":{},"载":{"docs":{},"均":{"docs":{},"衡":{"docs":{},"策":{"docs":{},"略":{"docs":{},":":{"docs":{},"(":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"负":{"docs":{},"载":{"docs":{},"均":{"docs":{},"衡":{"docs":{},"策":{"docs":{},"略":{"docs":{},"为":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{},")":{"docs":{"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}}}}}}}}}}}}},"连":{"docs":{},"通":{"docs":{},"性":{"docs":{},":":{"docs":{"preface/architacture.html":{"ref":"preface/architacture.html","tf":0.0196078431372549}}}}},"接":{"docs":{},"控":{"docs":{},"制":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/连接控制.html":{"ref":"demos/连接控制.html","tf":5}}}},"数":{"docs":{},"控":{"docs":{},"制":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"配":{"docs":{},"置":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.010638297872340425}}}}}}}},"个":{"docs":{},"数":{"docs":{},":":{"docs":{},"单":{"docs":{},"连":{"docs":{},"接":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}},"多":{"docs":{},"连":{"docs":{},"接":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549},"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564},"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}},"方":{"docs":{},"式":{"docs":{},":":{"docs":{},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}},"短":{"docs":{},"连":{"docs":{},"接":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549},"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564},"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"preface/usage.html":{"ref":"preface/usage.html","tf":0.5},"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105},"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}},"e":{"docs":{},"u":{"docs":{},"e":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.00975609756097561},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095}}}},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},")":{"docs":{},",":{"docs":{},"这":{"docs":{},"样":{"docs":{},"的":{"docs":{},"接":{"docs":{},"口":{"docs":{},"没":{"docs":{},"有":{"docs":{},"明":{"docs":{},"确":{"docs":{},"语":{"docs":{},"义":{"docs":{},",":{"docs":{},"会":{"docs":{},"给":{"docs":{},"后":{"docs":{},"期":{"docs":{},"维":{"docs":{},"护":{"docs":{},"带":{"docs":{},"来":{"docs":{},"不":{"docs":{},"便":{"docs":{},"。":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{"demos/直连提供者.html":{"ref":"demos/直连提供者.html","tf":0.05263157894736842}},"法":{"docs":{"preface/usage.html":{"ref":"preface/usage.html","tf":5}}},"户":{"docs":{},"不":{"docs":{},"能":{"docs":{},"控":{"docs":{},"制":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"4":{"docs":{},"j":{"docs":{},"的":{"docs":{},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"不":{"docs":{},"灵":{"docs":{},"活":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}},"docs":{}}}}}}}}},"于":{"docs":{},"指":{"docs":{},"定":{"docs":{},"方":{"docs":{},"法":{"docs":{},"参":{"docs":{},"数":{"docs":{},"配":{"docs":{},"置":{"docs":{},"。":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}}}},"服":{"docs":{},"务":{"docs":{},"分":{"docs":{},"层":{"docs":{},"对":{"docs":{},"应":{"docs":{},"的":{"docs":{},"架":{"docs":{},"构":{"docs":{},"。":{"docs":{},"如":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"、":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"。":{"docs":{},"不":{"docs":{},"同":{"docs":{},"的":{"docs":{},"架":{"docs":{},"构":{"docs":{},"使":{"docs":{},"用":{"docs":{},"不":{"docs":{},"同":{"docs":{},"的":{"docs":{},"分":{"docs":{},"层":{"docs":{},"。":{"docs":{"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},".":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"可":{"docs":{},"以":{"docs":{},"替":{"docs":{},"代":{"docs":{},"所":{"docs":{},"有":{"docs":{},"接":{"docs":{},"口":{"docs":{},"引":{"docs":{},"用":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}},"实":{"docs":{},"现":{"docs":{"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"表":{"docs":{},"示":{"docs":{},"p":{"docs":{},"o":{"docs":{},"j":{"docs":{},"o":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"为":{"docs":{},"p":{"docs":{},"o":{"docs":{},"j":{"docs":{},"o":{"docs":{},"也":{"docs":{},"将":{"docs":{},"自":{"docs":{},"动":{"docs":{},"转":{"docs":{},"成":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"+":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.05154639175257732},"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.011363636363636364},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931},"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.014285714285714285},"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.008379888268156424}}},">":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182},"reference-xmlconf/dubbo-monitor.html":{"ref":"reference-xmlconf/dubbo-monitor.html","tf":0.10714285714285714}},"b":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.043859649122807015}}}},"[":{"docs":{},"i":{"docs":{},"n":{"docs":{},"f":{"docs":{},"o":{"docs":{},"]":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.061855670103092786}}}}}}}},"\\":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}},"b":{"0":{"7":{"docs":{},")":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"docs":{}},"1":{"3":{"docs":{},",":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"docs":{}},"docs":{},"s":{"docs":{},"f":{"docs":{},":":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}},"r":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}},"a":{"docs":{},"r":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.043478260869565216}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.029411764705882353}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154},"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.03636363636363636},"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}},"e":{"docs":{},".":{"docs":{},"$":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"a":{"docs":{},"y":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"\"":{"docs":{},",":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"(":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.021739130434782608}}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"y":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818}}}}}}}}}}}}}}}}}},")":{"docs":{"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818}}},";":{"docs":{"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.03636363636363636}}},"s":{"docs":{},"t":{"docs":{},"u":{"docs":{},"b":{"docs":{"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818}}}}}},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}}}}}}}}}}}}},"f":{"docs":{},"u":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.021739130434782608}},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.021739130434782608}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"demos/并发控制.html":{"ref":"demos/并发控制.html","tf":0.06666666666666667}}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.03571428571428571},"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.015873015873015872},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.02702702702702703},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.03225806451612903},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.019553072625698324},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.03333333333333333},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.04225352112676056},"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421}}}}}}},"p":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.009523809523809525}}}},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.00975609756097561},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},"压":{"docs":{},"缩":{"docs":{},"包":{"docs":{},",":{"docs":{},"并":{"docs":{},"解":{"docs":{},"压":{"docs":{"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}}}}}}}}}}}}}}}}},"h":{"6":{"2":{"0":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}},"docs":{}},"i":{"docs":{},"t":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}},"f":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}},"i":{"docs":{},"l":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}},"f":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}},"o":{"docs":{},"v":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223},"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}},"l":{"docs":{},"s":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.023809523809523808},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.019553072625698324},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.02},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.014084507042253521}}}}},"i":{"docs":{},"x":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464},"demos/线程模型.html":{"ref":"demos/线程模型.html","tf":0.045454545454545456},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182},"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818}}}},"d":{"docs":{},"*":{"docs":{},",":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"*":{"docs":{},",":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"*":{"docs":{},",":{"docs":{},"i":{"docs":{},"s":{"docs":{},"*":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.009523809523809525}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}},"e":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.028795811518324606}}}}}}},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}},"s":{"docs":{},"=":{"docs":{},"\"":{"2":{"docs":{},"\"":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}},"docs":{}}}}},"(":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},".":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}},"o":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.043478260869565216}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.058823529411764705}},"e":{"docs":{},";":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.029411764705882353}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.029411764705882353}}}}}},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"(":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.021739130434782608}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"u":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.021739130434782608}},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.021739130434782608}}}}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.043478260869565216}}}}},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}},"l":{"docs":{},"l":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.006289308176100629}}}}},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.02631578947368421}}}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.12121212121212122},"demos/直连提供者.html":{"ref":"demos/直连提供者.html","tf":0.10526315789473684},"demos/日志适配.html":{"ref":"demos/日志适配.html","tf":0.07692307692307693},"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.05660377358490566},"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549},"perf-test.html":{"ref":"perf-test.html","tf":0.006289308176100629}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}},".":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}}},"原":{"docs":{},"生":{"docs":{},"支":{"docs":{},"持":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}},".":{"docs":{},"i":{"docs":{},"o":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{},".":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},";":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},";":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},";":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"u":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}},"i":{"docs":{},"n":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.006006006006006006}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.006006006006006006}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.006006006006006006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"s":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"字":{"docs":{},"节":{"docs":{},"码":{"docs":{},"编":{"docs":{},"译":{"docs":{},"器":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"动":{"docs":{},"态":{"docs":{},"类":{"docs":{},"的":{"docs":{},"生":{"docs":{},"成":{"docs":{},",":{"docs":{},"可":{"docs":{},"选":{"docs":{},":":{"docs":{},"j":{"docs":{},"d":{"docs":{},"k":{"docs":{},"或":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}},"标":{"docs":{},"准":{"docs":{},"的":{"docs":{},"远":{"docs":{},"程":{"docs":{},"调":{"docs":{},"用":{"docs":{},"协":{"docs":{},"议":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}}}}}}}},"(":{"docs":{},"t":{"docs":{},"m":{"docs":{},")":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"demos/结果缓存.html":{"ref":"demos/结果缓存.html","tf":0.058823529411764705}},"e":{"docs":{},":":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}},"等":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}},"l":{"docs":{"demos/日志适配.html":{"ref":"demos/日志适配.html","tf":0.07692307692307693}}}},"d":{"docs":{},"k":{"1":{"docs":{},".":{"5":{"docs":{},"+":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}},"docs":{}}},"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/日志适配.html":{"ref":"demos/日志适配.html","tf":0.07692307692307693},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}},"原":{"docs":{},"生":{"docs":{},"支":{"docs":{},"持":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},":":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}},"e":{"docs":{},":":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},":":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}},",":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}},"i":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.03773584905660377},"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}},"f":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},":":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}},"的":{"docs":{},"n":{"docs":{},"i":{"docs":{},"o":{"docs":{},"框":{"docs":{},"架":{"docs":{},",":{"docs":{},"性":{"docs":{},"能":{"docs":{},"较":{"docs":{},"好":{"docs":{},"(":{"docs":{},"推":{"docs":{},"荐":{"docs":{},"使":{"docs":{},"用":{"docs":{},")":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}},"r":{"1":{"0":{"7":{"docs":{"demos/结果缓存.html":{"ref":"demos/结果缓存.html","tf":0.058823529411764705}}},"docs":{}},"docs":{}},"3":{"0":{"3":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}},"docs":{}},"docs":{}},"docs":{}}},"t":{"docs":{},"a":{"docs":{},"/":{"docs":{},"x":{"docs":{},"a":{"docs":{},"三":{"docs":{},"阶":{"docs":{},"段":{"docs":{},"提":{"docs":{},"交":{"docs":{},"事":{"docs":{},"务":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}},"v":{"docs":{},"m":{"docs":{},"启":{"docs":{},"动":{"docs":{"configuration/properties.html":{"ref":"configuration/properties.html","tf":0.045454545454545456}}}},"内":{"docs":{},"存":{"docs":{},"运":{"docs":{},"行":{"docs":{},"稳":{"docs":{},"定":{"docs":{},",":{"docs":{},"无":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},",":{"docs":{},"堆":{"docs":{},"内":{"docs":{},"存":{"docs":{},"中":{"docs":{},"无":{"docs":{},"不":{"docs":{},"合":{"docs":{},"理":{"docs":{},"的":{"docs":{},"大":{"docs":{},"对":{"docs":{},"象":{"docs":{},"的":{"docs":{},"占":{"docs":{},"用":{"docs":{},"。":{"docs":{},"通":{"docs":{},"过":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"u":{"docs":{},"b":{"docs":{},"y":{"docs":{},",":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}},"l":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.014388489208633094}},"o":{"docs":{},"g":{"4":{"docs":{},"j":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/日志适配.html":{"ref":"demos/日志适配.html","tf":0.07692307692307693},"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.03773584905660377}},".":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}}}}},":":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"4":{"docs":{},"j":{"docs":{},":":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{},":":{"1":{"docs":{},".":{"2":{"docs":{},".":{"1":{"6":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}},"docs":{}}}}},"等":{"docs":{},"加":{"docs":{},"载":{"docs":{},",":{"docs":{},"可":{"docs":{},"通":{"docs":{},"过":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"扩":{"docs":{},"展":{"docs":{},"点":{"docs":{},"进":{"docs":{},"行":{"docs":{},"扩":{"docs":{},"展":{"docs":{},",":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"。":{"docs":{},"配":{"docs":{},"置":{"docs":{},"配":{"docs":{},"在":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"命":{"docs":{},"令":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.02158273381294964}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{},"日":{"docs":{},"志":{"docs":{},"输":{"docs":{},"出":{"docs":{},"包":{"docs":{},"。":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}}}},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{},":":{"1":{"docs":{},".":{"1":{"docs":{},".":{"1":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}},",":{"docs":{},"则":{"docs":{},"不":{"docs":{},"能":{"docs":{},"去":{"docs":{},"掉":{"docs":{},"。":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.029411764705882353}},".":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}}}}}}}}}}}},"的":{"docs":{},"日":{"docs":{},"志":{"docs":{},"级":{"docs":{},"别":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}},"最":{"docs":{},"后":{"1":{"0":{"0":{"docs":{},"字":{"docs":{},"符":{"docs":{},"的":{"docs":{},"日":{"docs":{},"志":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.009009009009009009}}}}}}}}}},"a":{"docs":{},"d":{"docs":{"demos/并发控制.html":{"ref":"demos/并发控制.html","tf":0.06666666666666667}},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.010471204188481676},"demos/负载均衡.html":{"ref":"demos/负载均衡.html","tf":0.16666666666666666},"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761},"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}},"负":{"docs":{},"责":{"docs":{},"从":{"docs":{},"多":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},"中":{"docs":{},"选":{"docs":{},"出":{"docs":{},"具":{"docs":{},"体":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"用":{"docs":{},"于":{"docs":{},"本":{"docs":{},"次":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"选":{"docs":{},"的":{"docs":{},"过":{"docs":{},"程":{"docs":{},"包":{"docs":{},"含":{"docs":{},"了":{"docs":{},"负":{"docs":{},"载":{"docs":{},"均":{"docs":{},"衡":{"docs":{},"算":{"docs":{},"法":{"docs":{},",":{"docs":{},"调":{"docs":{},"用":{"docs":{},"失":{"docs":{},"败":{"docs":{},"后":{"docs":{},",":{"docs":{},"需":{"docs":{},"要":{"docs":{},"重":{"docs":{},"选":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"g":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"后":{"docs":{},"缀":{"docs":{},",":{"docs":{},"服":{"docs":{},"务":{"docs":{},"接":{"docs":{},"口":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"本":{"docs":{},"地":{"docs":{},"代":{"docs":{},"理":{"docs":{},"类":{"docs":{},"名":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"在":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"执":{"docs":{},"行":{"docs":{},"本":{"docs":{},"地":{"docs":{},"逻":{"docs":{},"辑":{"docs":{},",":{"docs":{},"如":{"docs":{},"本":{"docs":{},"地":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"等":{"docs":{},",":{"docs":{},"该":{"docs":{},"本":{"docs":{},"地":{"docs":{},"代":{"docs":{},"理":{"docs":{},"类":{"docs":{},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"必":{"docs":{},"须":{"docs":{},"允":{"docs":{},"许":{"docs":{},"传":{"docs":{},"入":{"docs":{},"远":{"docs":{},"程":{"docs":{},"代":{"docs":{},"理":{"docs":{},"对":{"docs":{},"象":{"docs":{},",":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"如":{"docs":{},":":{"docs":{},"p":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"。":{"docs":{"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}},"三":{"docs":{},"种":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"分":{"docs":{},"别":{"docs":{},"表":{"docs":{},"示":{"docs":{},",":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"地":{"docs":{},"址":{"docs":{},",":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"地":{"docs":{},"址":{"docs":{},",":{"docs":{},"本":{"docs":{},"地":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.014388489208633094}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"w":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}},"y":{"docs":{},"e":{"docs":{},"r":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.013333333333333334}}}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/负载均衡.html":{"ref":"demos/负载均衡.html","tf":0.041666666666666664}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}},"e":{"docs":{},"n":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182},"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}},";":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.011363636363636364}}}},".":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},"{":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},",":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"demos/线程模型.html":{"ref":"demos/线程模型.html","tf":0.045454545454545456}}}}},"b":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":0.04}}}}}}}}},"n":{"docs":{},"k":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.006289308176100629}}}}},"r":{"docs":{},"u":{"docs":{"demos/结果缓存.html":{"ref":"demos/结果缓存.html","tf":0.058823529411764705}}}},":":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.02158273381294964}}},"s":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.02877697841726619}},":":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}},",":{"docs":{},"其":{"docs":{},"中":{"docs":{},"的":{"2":{"0":{"8":{"8":{"0":{"docs":{},"为":{"docs":{},"服":{"docs":{},"务":{"docs":{},"端":{"docs":{},"口":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}},",":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}},"i":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}},"w":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.06382978723404255},"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.006006006006006006},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.06711409395973154},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.03636363636363636},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.028409090909090908},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.020689655172413793},"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762},"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.0425531914893617}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176},"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.02564102564102564},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761},"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}},")":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154},"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818},"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}}},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.009009009009009009},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.020134228187919462}}},"=":{"docs":{},"\"":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"\"":{"docs":{"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421}}}}}}}}}}}},",":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":0.04}}}}}}}}},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"f":{"docs":{},"y":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.020689655172413793}}},"y":{"docs":{},".":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}},".":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},";":{"docs":{"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}}},"。":{"docs":{"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}}}}},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403},"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564}}},"等":{"docs":{},"。":{"docs":{},"使":{"docs":{},"用":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":0.04}}}}}}}}}}}}}}}},"/":{"docs":{},"a":{"docs":{"reference-xmlconf/dubbo-monitor.html":{"ref":"reference-xmlconf/dubbo-monitor.html","tf":0.03571428571428571}}}},"c":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547},"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},".":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{},":":{"3":{"docs":{},".":{"1":{"5":{"docs":{},".":{"0":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},":":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},":":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{},":":{"3":{"docs":{},".":{"2":{"docs":{},".":{"5":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},":":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},":":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{},":":{"2":{"docs":{},".":{"5":{"docs":{},".":{"6":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"0":{"3":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}},"docs":{}},"docs":{}}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"o":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},";":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.029411764705882353}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"x":{"docs":{},"f":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.029850746268656716}}}}},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":0.04}}}}}}}},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.029411764705882353},"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.05128205128205128}}}}},":":{"docs":{"reference-registry/simple.html":{"ref":"reference-registry/simple.html","tf":0.09090909090909091}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},":":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}},"/":{"docs":{},"/":{"0":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"?":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"=":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},"&":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"=":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"&":{"docs":{},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"=":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},":":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"+":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}},"1":{"0":{"docs":{},".":{"2":{"0":{"docs":{},".":{"1":{"5":{"3":{"docs":{},".":{"1":{"0":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"?":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"=":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},"&":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"&":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"=":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"=":{"2":{"0":{"0":{"docs":{"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}}}}}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.020134228187919462},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818},"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}},"[":{"docs":{},"]":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.013422818791946308},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}},"{":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"}":{"docs":{},")":{"docs":{},";":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}},"(":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.013793103448275862}}}}}}}}},",":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}},"=":{"docs":{},"\"":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"\"":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.013793103448275862}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.013793103448275862}}}}}}}},"三":{"docs":{},"个":{"docs":{},"事":{"docs":{},"件":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"配":{"docs":{},"置":{"docs":{},"当":{"docs":{},"事":{"docs":{},"件":{"docs":{},"发":{"docs":{},"生":{"docs":{},"时":{"docs":{},",":{"docs":{},"通":{"docs":{},"知":{"docs":{},"哪":{"docs":{},"个":{"docs":{},"类":{"docs":{},"的":{"docs":{},"哪":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},"。":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"k":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.0625}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.029411764705882353},"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.05128205128205128},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.013333333333333334}}}}}},"k":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}},"t":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}},"h":{"docs":{},"r":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":0.12}},":":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}},"/":{"docs":{},"/":{"docs":{"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":5}}}}},"/":{"docs":{},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{},"/":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"/":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"/":{"docs":{},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},"/":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"/":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":0.04}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"不":{"docs":{},"支":{"docs":{},"持":{"docs":{},"数":{"docs":{},"据":{"docs":{},"类":{"docs":{},"型":{"docs":{},":":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"值":{"docs":{"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":0.04}}}}}}}}}}}}}}},"协":{"docs":{},"议":{"docs":{},"同":{"docs":{},"样":{"docs":{},"需":{"docs":{},"要":{"docs":{},"使":{"docs":{},"用":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"的":{"docs":{},"i":{"docs":{},"d":{"docs":{},"l":{"docs":{"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":0.04}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.014634146341463415},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095},"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}},"p":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"demos/线程模型.html":{"ref":"demos/线程模型.html","tf":0.045454545454545456},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.00975609756097561},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095}},":":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"demos/结果缓存.html":{"ref":"demos/结果缓存.html","tf":0.058823529411764705}},"a":{"docs":{},"l":{"docs":{},",":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}},".":{"docs":{},"s":{"docs":{},"l":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},"(":{"5":{"0":{"0":{"0":{"docs":{},")":{"docs":{},";":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}},"o":{"docs":{},"w":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}}}}},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"a":{"docs":{},"g":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}},"x":{"docs":{},"p":{"docs":{},"i":{"docs":{},"r":{"docs":{},"y":{"docs":{},"d":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818}}}}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"1":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.03333333333333333}}},"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.06806282722513089},"demos/分组聚合.html":{"ref":"demos/分组聚合.html","tf":0.07692307692307693},"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003},"demos/结果缓存.html":{"ref":"demos/结果缓存.html","tf":0.058823529411764705},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}},",":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{"demos/分组聚合.html":{"ref":"demos/分组聚合.html","tf":0.07692307692307693},"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003},"demos/结果缓存.html":{"ref":"demos/结果缓存.html","tf":0.058823529411764705},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}},".":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}},":":{"docs":{},"只":{"docs":{},"是":{"docs":{},"用":{"docs":{},"来":{"docs":{},"说":{"docs":{},"明":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"正":{"docs":{},"常":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"业":{"docs":{},"务":{"docs":{},"具":{"docs":{},"体":{"docs":{},"实":{"docs":{},"现":{"docs":{},"自":{"docs":{},"行":{"docs":{},"决":{"docs":{},"定":{"docs":{},".":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.00975609756097561},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095},"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}},"命":{"docs":{},"令":{"docs":{},"参":{"docs":{},"考":{"docs":{},"手":{"docs":{},"册":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":5}}}}}},"可":{"docs":{},"以":{"docs":{},"扩":{"docs":{},"展":{"docs":{},",":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},"扩":{"docs":{},"展":{"docs":{},"参":{"docs":{},"考":{"docs":{},"手":{"docs":{},"册":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.007853403141361256},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.00975609756097561},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.03597122302158273}}}}},"i":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.011363636363636364},"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818},"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}}},"u":{"docs":{},"e":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.03225806451612903},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.014084507042253521}}}}},")":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.011363636363636364}}},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421}},"=":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761},"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}},"=":{"1":{"0":{"0":{"0":{"docs":{"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"\"":{"3":{"0":{"0":{"0":{"docs":{},"\"":{"docs":{"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"多":{"docs":{},"处":{"docs":{},"设":{"docs":{},"置":{"docs":{},",":{"docs":{},"配":{"docs":{},"置":{"docs":{},"项":{"docs":{},"及":{"docs":{},"覆":{"docs":{},"盖":{"docs":{},"规":{"docs":{},"则":{"docs":{},"详":{"docs":{},"见":{"docs":{},":":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"n":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095}}}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}},"p":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.015723270440251572}},"s":{"docs":{},"成":{"docs":{},"功":{"docs":{},"平":{"docs":{},"均":{"docs":{},"值":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.012578616352201259}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464},"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.006006006006006006},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.013333333333333334},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},":":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},".":{"docs":{},"'":{"docs":{},",":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.006006006006006006}},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.015015015015015015}},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},")":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},")":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}},",":{"docs":{},"可":{"docs":{},"选":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{"reference-xmlconf/dubbo-parameter.html":{"ref":"reference-xmlconf/dubbo-parameter.html","tf":0.07692307692307693}},"e":{"docs":{},")":{"docs":{},",":{"docs":{"reference-protocol/memcached.html":{"ref":"reference-protocol/memcached.html","tf":0.047619047619047616},"reference-protocol/redis.html":{"ref":"reference-protocol/redis.html","tf":0.05}}}}}}},"r":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}},"e":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176},"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.02564102564102564},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095},"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}},"i":{"docs":{},"o":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.036036036036036036},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.013422818791946308},"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.028409090909090908},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.027586206896551724}}}}},"m":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"x":{"8":{"6":{"docs":{},"_":{"6":{"4":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"d":{"docs":{},":":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}}},"l":{"docs":{},"配":{"docs":{},"置":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":5}}}},"次":{"docs":{},"之":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"在":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"中":{"docs":{},"有":{"docs":{},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"则":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"中":{"docs":{},"的":{"docs":{},"相":{"docs":{},"应":{"docs":{},"配":{"docs":{},"置":{"docs":{},"项":{"docs":{},"无":{"docs":{},"效":{"docs":{},"。":{"docs":{"configuration/properties.html":{"ref":"configuration/properties.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"2":{"5":{"6":{"docs":{},"m":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"docs":{}},"docs":{}},"docs":{}},"s":{"2":{"docs":{},"g":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"docs":{}},"x":{"2":{"docs":{},"g":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"docs":{}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},":":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}},"s":{"2":{"5":{"6":{"docs":{},"k":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"docs":{}},"docs":{}},"docs":{}}},"x":{"docs":{},":":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"=":{"1":{"2":{"8":{"docs":{},"m":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}},"+":{"docs":{},"c":{"docs":{},"m":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},"e":{"docs":{},"n":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"g":{"docs":{},"c":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"m":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"y":{"docs":{},"o":{"docs":{},"n":{"docs":{},"l":{"docs":{},"i":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},"s":{"docs":{},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},"g":{"docs":{},"c":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"m":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"y":{"docs":{},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"=":{"7":{"0":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"b":{"docs":{},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"=":{"1":{"2":{"8":{"docs":{},"m":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.02127659574468085},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818},"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904},"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.0425531914893617},"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.04316546762589928}},"e":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904}},"(":{"docs":{},")":{"docs":{},";":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}},".":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},"(":{"docs":{},"{":{"docs":{},"\"":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"\"":{"docs":{},":":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"y":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.02127659574468085}}}}}}}}}}}}}},")":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}}}}}}}}}}}}},":":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.03597122302158273}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}}}}}}}}}}}}}}}}}}},"(":{"docs":{},")":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904}}}},":":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.014388489208633094}},"(":{"docs":{},"{":{"docs":{},"\"":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"\"":{"docs":{},":":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}}}},":":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.014388489208633094}}}}}}}}}}},"e":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"r":{"docs":{},")":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}},"z":{"0":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.006006006006006006}}},"docs":{},"k":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.02631578947368421}},":":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.039473684210526314}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}},"/":{"docs":{},"/":{"1":{"0":{"docs":{},".":{"2":{"0":{"docs":{},".":{"1":{"5":{"3":{"docs":{},".":{"1":{"0":{"docs":{},":":{"2":{"1":{"8":{"1":{"docs":{},"?":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"=":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}},"z":{"docs":{},"k":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}}},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":5}}}}}},"单":{"docs":{},"机":{"docs":{},"配":{"docs":{},"置":{"docs":{},":":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}},"安":{"docs":{},"装":{"docs":{},"安":{"docs":{},"装":{"docs":{},"方":{"docs":{},"式":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}},"手":{"docs":{},"册":{"docs":{},",":{"docs":{},"只":{"docs":{},"需":{"docs":{},"搭":{"docs":{},"一":{"docs":{},"个":{"docs":{},"原":{"docs":{},"生":{"docs":{},"的":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}}},"说":{"docs":{},"明":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}},"集":{"docs":{},"群":{"docs":{},"配":{"docs":{},"置":{"docs":{},":":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}},"]":{"docs":{},"+":{"docs":{},"\\":{"docs":{},"\\":{"docs":{},"s":{"docs":{},"*":{"docs":{},"$":{"docs":{},"\"":{"docs":{},")":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}},"a":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.009009009009009009}}}},"|":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.05154639175257732},"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.11403508771929824},"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547},"recommend.html":{"ref":"recommend.html","tf":0.02830188679245283}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},":":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}}}}}}}},"但":{"docs":{},"如":{"docs":{},"果":{"docs":{},"其":{"docs":{},"它":{"docs":{},"三":{"docs":{},"方":{"docs":{},"库":{"docs":{},"比":{"docs":{},"如":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{},"间":{"docs":{},"接":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"事":{"docs":{},"件":{"docs":{},"处":{"docs":{},"理":{"docs":{},"逻":{"docs":{},"辑":{"docs":{},"较":{"docs":{},"慢":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"需":{"docs":{},"要":{"docs":{},"发":{"docs":{},"起":{"docs":{},"新":{"docs":{},"的":{"docs":{},"i":{"docs":{},"o":{"docs":{},"请":{"docs":{},"求":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"需":{"docs":{},"要":{"docs":{},"查":{"docs":{},"询":{"docs":{},"数":{"docs":{},"据":{"docs":{},"库":{"docs":{},",":{"docs":{},"则":{"docs":{},"必":{"docs":{},"须":{"docs":{},"派":{"docs":{},"发":{"docs":{},"到":{"docs":{},"线":{"docs":{},"程":{"docs":{},"池":{"docs":{},",":{"docs":{},"否":{"docs":{},"则":{"docs":{},"i":{"docs":{},"o":{"docs":{},"线":{"docs":{},"程":{"docs":{},"阻":{"docs":{},"塞":{"docs":{},",":{"docs":{},"将":{"docs":{},"导":{"docs":{},"致":{"docs":{},"不":{"docs":{},"能":{"docs":{},"接":{"docs":{},"收":{"docs":{},"其":{"docs":{},"它":{"docs":{},"请":{"docs":{},"求":{"docs":{},"。":{"docs":{"demos/线程模型.html":{"ref":"demos/线程模型.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"设":{"docs":{},"置":{"docs":{},"了":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}}}}},"依":{"docs":{},"赖":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":5}},"于":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{},"包":{"docs":{},",":{"docs":{},"占":{"docs":{},"用":{"docs":{},"j":{"docs":{},"v":{"docs":{},"m":{"docs":{},"的":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"内":{"docs":{},"存":{"docs":{},",":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"可":{"docs":{},"能":{"docs":{},"要":{"docs":{},"设":{"docs":{},"大":{"docs":{},"一":{"docs":{},"些":{"docs":{},":":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"稳":{"docs":{},"定":{"docs":{},"性":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}},"网":{"docs":{},"络":{"docs":{},"拓":{"docs":{},"普":{"docs":{},"和":{"docs":{},"路":{"docs":{},"由":{"docs":{},",":{"docs":{},"跨":{"docs":{},"机":{"docs":{},"房":{"docs":{},"有":{"docs":{},"风":{"docs":{},"险":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}},":":{"docs":{"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358},"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":0.04}}}}},"可":{"docs":{},"以":{"docs":{},"直":{"docs":{},"接":{"docs":{},"去":{"docs":{},"掉":{"docs":{},",":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"本":{"docs":{},"身":{"docs":{},"的":{"docs":{},"日":{"docs":{},"志":{"docs":{},"会":{"docs":{},"自":{"docs":{},"动":{"docs":{},"切":{"docs":{},"换":{"docs":{},"为":{"docs":{},"j":{"docs":{},"d":{"docs":{},"k":{"docs":{},"的":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},".":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"输":{"docs":{},"出":{"docs":{},"。":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"通":{"docs":{},"过":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}},"以":{"docs":{},"下":{"docs":{},"方":{"docs":{},"式":{"docs":{},"配":{"docs":{},"置":{"docs":{},"日":{"docs":{},"志":{"docs":{},"输":{"docs":{},"出":{"docs":{},"策":{"docs":{},"略":{"docs":{"demos/日志适配.html":{"ref":"demos/日志适配.html","tf":0.07692307692307693}}}}}}}}}}}}}},"脚":{"docs":{},"本":{"docs":{},"或":{"docs":{},"监":{"docs":{},"控":{"docs":{},"中":{"docs":{},"心":{"docs":{},"手":{"docs":{},"工":{"docs":{},"填":{"docs":{},"写":{"docs":{},"表":{"docs":{},"单":{"docs":{},"注":{"docs":{},"册":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"d":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"地":{"docs":{},"址":{"docs":{},":":{"docs":{"reference-protocol/memcached.html":{"ref":"reference-protocol/memcached.html","tf":0.047619047619047616}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"自":{"docs":{},"行":{"docs":{},"扩":{"docs":{},"展":{"docs":{},"集":{"docs":{},"群":{"docs":{},"容":{"docs":{},"错":{"docs":{},"策":{"docs":{},"略":{"docs":{},",":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},"集":{"docs":{},"群":{"docs":{},"扩":{"docs":{},"展":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}}}}}}}}}},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},"协":{"docs":{},"议":{"docs":{},"扩":{"docs":{},"展":{"docs":{"demos/多协议.html":{"ref":"demos/多协议.html","tf":0.1111111111111111}}}}}}}}}}}},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},",":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"扩":{"docs":{},"展":{"docs":{"demos/多注册中心.html":{"ref":"demos/多注册中心.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}},"拿":{"docs":{},"到":{"docs":{},"一":{"docs":{},"个":{"docs":{},"验":{"docs":{},"证":{"docs":{},"错":{"docs":{},"误":{"docs":{},"详":{"docs":{},"细":{"docs":{},"信":{"docs":{},"息":{"docs":{},"的":{"docs":{},"集":{"docs":{},"合":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}}}}},"全":{"docs":{},"局":{"docs":{},"设":{"docs":{},"置":{"docs":{},"开":{"docs":{},"启":{"docs":{},"令":{"docs":{},"牌":{"docs":{},"验":{"docs":{},"证":{"docs":{"demos/令牌验证.html":{"ref":"demos/令牌验证.html","tf":0.16666666666666666}}}}}}}}}}}},"在":{"docs":{},"/":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"/":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},"中":{"docs":{},"加":{"docs":{},"入":{"docs":{},":":{"docs":{},"机":{"docs":{},"器":{"docs":{},"名":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.03333333333333333}}}}}}}}}}}}}}}}}}},"多":{"docs":{},"个":{"docs":{},"配":{"docs":{},"置":{"docs":{},"项":{"docs":{},"设":{"docs":{},"置":{"docs":{},"超":{"docs":{},"时":{"docs":{},",":{"docs":{},"由":{"docs":{},"上":{"docs":{},"至":{"docs":{},"下":{"docs":{},"覆":{"docs":{},"盖":{"docs":{},"(":{"docs":{},"即":{"docs":{},"上":{"docs":{},"面":{"docs":{},"的":{"docs":{},"优":{"docs":{},"先":{"docs":{},")":{"docs":{},",":{"docs":{},"示":{"docs":{},"例":{"docs":{},"如":{"docs":{},"下":{"docs":{},":":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"修":{"docs":{},"改":{"docs":{},"这":{"docs":{},"个":{"docs":{},"策":{"docs":{},"略":{"docs":{},",":{"docs":{},"在":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"时":{"docs":{},",":{"docs":{},"传":{"docs":{},"一":{"docs":{},"个":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"。":{"docs":{},"详":{"docs":{},"见":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"类":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},"。":{"docs":{"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.02127659574468085}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"原":{"docs":{},"生":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"服":{"docs":{},"务":{"docs":{},"互":{"docs":{},"操":{"docs":{},"作":{"docs":{},",":{"docs":{},"即":{"docs":{},":":{"docs":{"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564}}}}}}}}}}}}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"服":{"docs":{},"务":{"docs":{},"互":{"docs":{},"操":{"docs":{},"作":{"docs":{},",":{"docs":{},"即":{"docs":{},":":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}}}}}}}}}}}}}}}}}},"与":{"docs":{},"原":{"docs":{},"生":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"互":{"docs":{},"操":{"docs":{},"作":{"docs":{},",":{"docs":{},"基":{"docs":{},"于":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"协":{"docs":{},"议":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"互":{"docs":{},"操":{"docs":{},"作":{"docs":{},",":{"docs":{},"基":{"docs":{},"于":{"docs":{},"t":{"docs":{},"c":{"docs":{},"p":{"docs":{},"协":{"docs":{},"议":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"于":{"docs":{},"生":{"docs":{},"产":{"docs":{},"环":{"docs":{},"境":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.08638743455497382}}}}}}},"下":{"docs":{},"面":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"表":{"docs":{},"示":{"docs":{},":":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}},"通":{"docs":{},"过":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.044444444444444446},"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.02631578947368421},"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.041666666666666664}}}},"伸":{"docs":{},"缩":{"docs":{},"线":{"docs":{},"程":{"docs":{},"池":{"docs":{},",":{"docs":{},"但":{"docs":{},"池":{"docs":{},"中":{"docs":{},"的":{"docs":{},"线":{"docs":{},"程":{"docs":{},"数":{"docs":{},"只":{"docs":{},"会":{"docs":{},"增":{"docs":{},"长":{"docs":{},"不":{"docs":{},"会":{"docs":{},"收":{"docs":{},"缩":{"docs":{},"。":{"docs":{},"(":{"docs":{},"为":{"docs":{},"避":{"docs":{},"免":{"docs":{},"收":{"docs":{},"缩":{"docs":{},"时":{"docs":{},"突":{"docs":{},"然":{"docs":{},"来":{"docs":{},"了":{"docs":{},"大":{"docs":{},"流":{"docs":{},"量":{"docs":{},"引":{"docs":{},"起":{"docs":{},"的":{"docs":{},"性":{"docs":{},"能":{"docs":{},"问":{"docs":{},"题":{"docs":{},")":{"docs":{},"。":{"docs":{"demos/线程模型.html":{"ref":"demos/线程模型.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"选":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.11507936507936507},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.11261261261261261},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.11219512195121951},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.11290322580645161},"reference-xmlconf/dubbo-monitor.html":{"ref":"reference-xmlconf/dubbo-monitor.html","tf":0.07142857142857142},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.10294117647058823},"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.07692307692307693},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.12290502793296089},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.12},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.1056338028169014},"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421}}},"靠":{"docs":{},"性":{"docs":{},"声":{"docs":{},"明":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}},"阿":{"docs":{},"里":{"docs":{},"内":{"docs":{},"部":{"docs":{},"并":{"docs":{},"没":{"docs":{},"有":{"docs":{},"采":{"docs":{},"用":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"做":{"docs":{},"为":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},",":{"docs":{},"而":{"docs":{},"是":{"docs":{},"使":{"docs":{},"用":{"docs":{},"自":{"docs":{},"己":{"docs":{},"实":{"docs":{},"现":{"docs":{},"的":{"docs":{},"基":{"docs":{},"于":{"docs":{},"数":{"docs":{},"据":{"docs":{},"库":{"docs":{},"的":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},",":{"docs":{},"即":{"docs":{},":":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"并":{"docs":{},"没":{"docs":{},"有":{"docs":{},"在":{"docs":{},"阿":{"docs":{},"里":{"docs":{},"内":{"docs":{},"部":{"docs":{},"长":{"docs":{},"时":{"docs":{},"间":{"docs":{},"运":{"docs":{},"行":{"docs":{},"的":{"docs":{},"可":{"docs":{},"靠":{"docs":{},"性":{"docs":{},"保":{"docs":{},"障":{"docs":{},",":{"docs":{},"此":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"桥":{"docs":{},"接":{"docs":{},"实":{"docs":{},"现":{"docs":{},"只":{"docs":{},"为":{"docs":{},"开":{"docs":{},"源":{"docs":{},"版":{"docs":{},"本":{"docs":{},"提":{"docs":{},"供":{"docs":{},",":{"docs":{},"其":{"docs":{},"可":{"docs":{},"靠":{"docs":{},"性":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"于":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"本":{"docs":{},"身":{"docs":{},"的":{"docs":{},"可":{"docs":{},"靠":{"docs":{},"性":{"docs":{},"。":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"字":{"docs":{},"节":{"docs":{},"码":{"docs":{},"生":{"docs":{},"成":{"docs":{},"。":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}},"必":{"docs":{},"须":{"docs":{},"依":{"docs":{},"赖":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"未":{"docs":{},"来":{"docs":{},"的":{"docs":{},"时":{"docs":{},"间":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}},"过":{"docs":{},"去":{"docs":{},"的":{"docs":{},"时":{"docs":{},"间":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}},"填":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176},"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.02564102564102564},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761},"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421},"reference-xmlconf/dubbo-parameter.html":{"ref":"reference-xmlconf/dubbo-parameter.html","tf":0.07692307692307693}}}},"理":{"docs":{},"论":{"docs":{},"上":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"可":{"docs":{},"以":{"docs":{},"只":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"j":{"docs":{},"d":{"docs":{},"k":{"docs":{},",":{"docs":{},"不":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"于":{"docs":{},"任":{"docs":{},"何":{"docs":{},"三":{"docs":{},"方":{"docs":{},"库":{"docs":{},"运":{"docs":{},"行":{"docs":{},",":{"docs":{},"只":{"docs":{},"需":{"docs":{},"配":{"docs":{},"置":{"docs":{},"使":{"docs":{},"用":{"docs":{},"j":{"docs":{},"d":{"docs":{},"k":{"docs":{},"相":{"docs":{},"关":{"docs":{},"实":{"docs":{},"现":{"docs":{},"策":{"docs":{},"略":{"docs":{},"。":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"的":{"docs":{},"非":{"docs":{},"服":{"docs":{},"务":{"docs":{},"标":{"docs":{},"识":{"docs":{},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"在":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},",":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},",":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"缺":{"docs":{},"省":{"docs":{},"依":{"docs":{},"赖":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}},"只":{"docs":{},"对":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"要":{"docs":{},"修":{"docs":{},"改":{"docs":{},",":{"docs":{},"请":{"docs":{},"配":{"docs":{},"置":{"docs":{"demos/负载均衡.html":{"ref":"demos/负载均衡.html","tf":0.041666666666666664}}}}}}}}}}}}}}}}}}}}}}},"用":{"1":{"6":{"0":{"docs":{},"份":{"docs":{},"虚":{"docs":{},"拟":{"docs":{},"节":{"docs":{},"点":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"要":{"docs":{},"修":{"docs":{},"改":{"docs":{},",":{"docs":{},"请":{"docs":{},"配":{"docs":{},"置":{"docs":{"demos/负载均衡.html":{"ref":"demos/负载均衡.html","tf":0.041666666666666664}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"可":{"docs":{},"按":{"docs":{},"服":{"docs":{},"务":{"docs":{},"接":{"docs":{},"口":{"docs":{},"区":{"docs":{},"分":{"docs":{},"验":{"docs":{},"证":{"docs":{},"场":{"docs":{},"景":{"docs":{},",":{"docs":{},"如":{"docs":{},":":{"docs":{},"@":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"(":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"主":{"docs":{},"机":{"docs":{},"i":{"docs":{},"p":{"docs":{},"查":{"docs":{},"找":{"docs":{},"顺":{"docs":{},"序":{"docs":{},":":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.03333333333333333}}}}}}}}},"端":{"docs":{},"口":{"docs":{},"与":{"docs":{},"协":{"docs":{},"议":{"docs":{},"相":{"docs":{},"关":{"docs":{},":":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.03333333333333333}}}}}}}}}}}},"自":{"docs":{},"动":{"docs":{},"查":{"docs":{},"找":{"docs":{},":":{"docs":{"demos/日志适配.html":{"ref":"demos/日志适配.html","tf":0.07692307692307693}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"把":{"docs":{},"相":{"docs":{},"同":{"docs":{},"服":{"docs":{},"务":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"、":{"docs":{},"接":{"docs":{},"口":{"docs":{},"、":{"docs":{},"版":{"docs":{},"本":{"docs":{},"的":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"认":{"docs":{},"为":{"docs":{},"是":{"docs":{},"相":{"docs":{},"同":{"docs":{},",":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"一":{"docs":{},"份":{"docs":{},"。":{"docs":{},"即":{"docs":{},"以":{"docs":{},"服":{"docs":{},"务":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"、":{"docs":{},"接":{"docs":{},"口":{"docs":{},"、":{"docs":{},"版":{"docs":{},"本":{"docs":{},"为":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"的":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"。":{"docs":{"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.02127659574468085}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"为":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.014084507042253521}},"接":{"docs":{},"口":{"docs":{},"名":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968}}}}},"空":{"docs":{},"串":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}},"的":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}}}}}},"值":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258},"reference-xmlconf/dubbo-monitor.html":{"ref":"reference-xmlconf/dubbo-monitor.html","tf":0.03571428571428571},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176},"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.02564102564102564},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761},"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421},"reference-xmlconf/dubbo-parameter.html":{"ref":"reference-xmlconf/dubbo-parameter.html","tf":0.038461538461538464}}},"向":{"docs":{},"所":{"docs":{},"有":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"注":{"docs":{},"册":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}}}}}}}}}},"使":{"docs":{},"用":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.03153153153153153}}}},"将":{"docs":{},"从":{"docs":{},"所":{"docs":{},"有":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"获":{"docs":{},"服":{"docs":{},"务":{"docs":{},"列":{"docs":{},"表":{"docs":{},"后":{"docs":{},"合":{"docs":{},"并":{"docs":{},"结":{"docs":{},"果":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}}}}}}}}}}}}}}}},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"基":{"docs":{},"于":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"1":{"docs":{},".":{"1":{"docs":{},".":{"7":{"docs":{},"+":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"3":{"docs":{},".":{"2":{"docs":{},".":{"1":{"docs":{},"的":{"docs":{},"t":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"交":{"docs":{},"互":{"docs":{},"。":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"将":{"docs":{},"自":{"docs":{},"动":{"docs":{},"生":{"docs":{},"成":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},".":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"$":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{},"的":{"docs":{},"接":{"docs":{},"口":{"docs":{},",":{"docs":{},"并":{"docs":{},"继":{"docs":{},"承":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},".":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{},"接":{"docs":{},"口":{"docs":{},",":{"docs":{},"并":{"docs":{},"以":{"docs":{},"此":{"docs":{},"接":{"docs":{},"口":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"配":{"docs":{},"置":{"docs":{},":":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}},"使":{"docs":{},"用":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"配":{"docs":{},"置":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968}}}}}}}}}}}}}}}}}},"网":{"docs":{},"络":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}},"传":{"docs":{},"输":{"docs":{},"。":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}},"方":{"docs":{},"式":{"docs":{},",":{"docs":{},"可":{"docs":{},"选":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},",":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}}}},"读":{"docs":{},"写":{"docs":{},"缓":{"docs":{},"冲":{"docs":{},"区":{"docs":{},"大":{"docs":{},"小":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}},"通":{"docs":{},"过":{"docs":{},"m":{"docs":{},"v":{"docs":{},"n":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}},"不":{"docs":{},"传":{"docs":{},"送":{"docs":{},"p":{"docs":{},"o":{"docs":{},"j":{"docs":{},"o":{"docs":{},"的":{"docs":{},"类":{"docs":{},"元":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"在":{"docs":{},"大":{"docs":{},"量":{"docs":{},"p":{"docs":{},"o":{"docs":{},"j":{"docs":{},"o":{"docs":{},"传":{"docs":{},"输":{"docs":{},"时":{"docs":{},",":{"docs":{},"性":{"docs":{},"能":{"docs":{},"较":{"docs":{},"好":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"字":{"docs":{},"节":{"docs":{},"码":{"docs":{},"生":{"docs":{},"成":{"docs":{},"代":{"docs":{},"替":{"docs":{},"反":{"docs":{},"射":{"docs":{},",":{"docs":{},"性":{"docs":{},"能":{"docs":{},"比":{"docs":{},"较":{"docs":{},"好":{"docs":{},"(":{"docs":{},"推":{"docs":{},"荐":{"docs":{},"使":{"docs":{},"用":{"docs":{},")":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},"获":{"docs":{},"取":{"docs":{},"本":{"docs":{},"机":{"docs":{},"地":{"docs":{},"址":{"docs":{},"。":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.03333333333333333}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"参":{"docs":{},"数":{"docs":{},"类":{"docs":{},"型":{"docs":{},"查":{"docs":{},"找":{"docs":{},"参":{"docs":{},"数":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421}}}}}}}}}}}}}}}},"事":{"docs":{},"件":{"docs":{},"的":{"docs":{},"值":{"docs":{},"区":{"docs":{},"分":{"docs":{},"事":{"docs":{},"件":{"docs":{},"类":{"docs":{},"型":{"docs":{},":":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}},"心":{"docs":{},"跳":{"docs":{},"的":{"docs":{},"方":{"docs":{},"式":{"docs":{},"检":{"docs":{},"测":{"docs":{},"脏":{"docs":{},"数":{"docs":{},"据":{"docs":{},",":{"docs":{},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},"时":{"docs":{},"间":{"docs":{},"必":{"docs":{},"须":{"docs":{},"相":{"docs":{},"同":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"对":{"docs":{},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},"有":{"docs":{},"一":{"docs":{},"定":{"docs":{},"压":{"docs":{},"力":{"docs":{},"。":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"常":{"docs":{},"用":{"docs":{},"于":{"docs":{},"写":{"docs":{},"入":{"docs":{},"审":{"docs":{},"计":{"docs":{},"日":{"docs":{},"志":{"docs":{},"等":{"docs":{},"操":{"docs":{},"作":{"docs":{},"。":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}}}}}},"实":{"docs":{},"时":{"docs":{},"性":{"docs":{},"要":{"docs":{},"求":{"docs":{},"较":{"docs":{},"高":{"docs":{},"的":{"docs":{},"读":{"docs":{},"操":{"docs":{},"作":{"docs":{},",":{"docs":{},"但":{"docs":{},"需":{"docs":{},"要":{"docs":{},"浪":{"docs":{},"费":{"docs":{},"更":{"docs":{},"多":{"docs":{},"服":{"docs":{},"务":{"docs":{},"资":{"docs":{},"源":{"docs":{},"。":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}}}}}}}}}}}}}}}}}}}},"消":{"docs":{},"息":{"docs":{},"通":{"docs":{},"知":{"docs":{},"操":{"docs":{},"作":{"docs":{},"。":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}}},"读":{"docs":{},"操":{"docs":{},"作":{"docs":{},",":{"docs":{},"但":{"docs":{},"重":{"docs":{},"试":{"docs":{},"会":{"docs":{},"带":{"docs":{},"来":{"docs":{},"更":{"docs":{},"长":{"docs":{},"延":{"docs":{},"迟":{"docs":{},"。":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}}}}}}}}}}},"通":{"docs":{},"知":{"docs":{},"所":{"docs":{},"有":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"更":{"docs":{},"新":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"或":{"docs":{},"日":{"docs":{},"志":{"docs":{},"等":{"docs":{},"本":{"docs":{},"地":{"docs":{},"资":{"docs":{},"源":{"docs":{},"信":{"docs":{},"息":{"docs":{},"。":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}}}}}}}}}}}}}}}}}},"非":{"docs":{},"幂":{"docs":{},"等":{"docs":{},"性":{"docs":{},"的":{"docs":{},"写":{"docs":{},"操":{"docs":{},"作":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"新":{"docs":{},"增":{"docs":{},"记":{"docs":{},"录":{"docs":{},"。":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}}}}}}}}}}}}}},"由":{"docs":{},"脚":{"docs":{},"本":{"docs":{},"监":{"docs":{},"控":{"docs":{},"中":{"docs":{},"心":{"docs":{},"页":{"docs":{},"面":{"docs":{},"等":{"docs":{},"调":{"docs":{},"用":{"docs":{"demos/静态服务.html":{"ref":"demos/静态服务.html","tf":0.07142857142857142}}}}}}}}}}}}}}}},"配":{"docs":{},"置":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332},"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}},"解":{"docs":{},"析":{"docs":{},"。":{"docs":{"dependencies/dependencies.html":{"ref":"dependencies/dependencies.html","tf":0.010309278350515464}}}}},"规":{"docs":{},"则":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":5}}}},"使":{"docs":{},"用":{"docs":{},"说":{"docs":{},"明":{"docs":{},"想":{"docs":{},"知":{"docs":{},"道":{"docs":{},"如":{"docs":{},"何":{"docs":{},"使":{"docs":{},"用":{"docs":{},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"请":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},"快":{"docs":{},"速":{"docs":{},"启":{"docs":{},"动":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}}}}}}}}}}}}}}}}},"项":{"docs":{},"说":{"docs":{},"明":{"docs":{},"详":{"docs":{},"细":{"docs":{},"配":{"docs":{},"置":{"docs":{},"项":{"docs":{},",":{"docs":{},"请":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},"配":{"docs":{},"置":{"docs":{},"参":{"docs":{},"考":{"docs":{},"手":{"docs":{},"册":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}}}}}}}}}}}}},"一":{"docs":{},"览":{"docs":{},"表":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904}}}}}},"如":{"docs":{},":":{"docs":{"demos/负载均衡.html":{"ref":"demos/负载均衡.html","tf":0.041666666666666664},"demos/分组聚合.html":{"ref":"demos/分组聚合.html","tf":0.07692307692307693},"demos/结果缓存.html":{"ref":"demos/结果缓存.html","tf":0.058823529411764705}}},"下":{"docs":{},":":{"docs":{"demos/线程模型.html":{"ref":"demos/线程模型.html","tf":0.045454545454545456}}}}},"声":{"docs":{},"明":{"docs":{},":":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.021739130434782608}}}}},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"的":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"属":{"docs":{},"性":{"docs":{},"为":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},",":{"docs":{},"此":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"会":{"docs":{},"调":{"docs":{},"用":{"docs":{},"并":{"docs":{},"发":{"docs":{},"数":{"docs":{},"最":{"docs":{},"小":{"docs":{},"的":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"端":{"docs":{},"并":{"docs":{},"发":{"docs":{},"数":{"docs":{},")":{"docs":{},"。":{"docs":{"demos/并发控制.html":{"ref":"demos/并发控制.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},"启":{"docs":{},"动":{"docs":{},"端":{"docs":{},"口":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}}}}}}}},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"配":{"docs":{},"置":{"docs":{},"加":{"docs":{},"载":{"docs":{},"位":{"docs":{},"置":{"docs":{},":":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"=":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"*":{"docs":{},":":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"。":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}},"可":{"docs":{},"通":{"docs":{},"过":{"docs":{},"j":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},"直":{"docs":{},"接":{"docs":{},"访":{"docs":{},"问":{"docs":{},"的":{"docs":{},"目":{"docs":{},"录":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"存":{"docs":{},"放":{"docs":{},"静":{"docs":{},"态":{"docs":{},"文":{"docs":{},"件":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}}}}}}}}}}}}}}}}}}}}}}},"日":{"docs":{},"志":{"docs":{},"子":{"docs":{},"目":{"docs":{},"录":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"多":{"docs":{},"进":{"docs":{},"程":{"docs":{},"启":{"docs":{},"动":{"docs":{},",":{"docs":{},"避":{"docs":{},"免":{"docs":{},"冲":{"docs":{},"突":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}}}}}}}}}}}}}}},"文":{"docs":{},"件":{"docs":{},"路":{"docs":{},"径":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}}},"级":{"docs":{},"别":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}}},"显":{"docs":{},"示":{"docs":{},"的":{"docs":{},"页":{"docs":{},"面":{"docs":{},",":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"加":{"docs":{},"载":{"docs":{},"所":{"docs":{},"有":{"docs":{},"页":{"docs":{},"面":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}}}}}}}}}}}}},":":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.03773584905660377},"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403},"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549},"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564},"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}},"关":{"docs":{},"联":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.011904761904761904},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.009009009009009009},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.008379888268156424},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}},"类":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},".":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},".":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.02564102564102564}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"上":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"文":{"docs":{},"件":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}},"管":{"docs":{},"理":{"docs":{},"信":{"docs":{},"息":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}},"方":{"docs":{},"法":{"docs":{},"如":{"docs":{},"下":{"docs":{},":":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}},"的":{"docs":{},"覆":{"docs":{},"盖":{"docs":{},"规":{"docs":{},"则":{"docs":{},":":{"1":{"docs":{},")":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}},"docs":{}}}}}}},"d":{"docs":{},"u":{"docs":{},"u":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.028795811518324606}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}}}}},"p":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.006289308176100629}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.006006006006006006}}}}}}}}}}}}}}}}}}}},"{":{"docs":{},"}":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}},"r":{"docs":{},"l":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}},".":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"1":{"0":{"docs":{},".":{"2":{"0":{"docs":{},".":{"1":{"6":{"0":{"docs":{},".":{"1":{"9":{"8":{"docs":{},"/":{"docs":{},"w":{"docs":{},"i":{"docs":{},"k":{"docs":{},"i":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"/":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}},"本":{"docs":{},"身":{"docs":{},"的":{"docs":{},"字":{"docs":{},"段":{"docs":{},",":{"docs":{},"如":{"docs":{},":":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},",":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}},"格":{"docs":{},"式":{"docs":{},":":{"docs":{"reference-xmlconf/introduction.html":{"ref":"reference-xmlconf/introduction.html","tf":0.06666666666666667}}}}}}},"t":{"docs":{},"f":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}},"n":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}},"事":{"docs":{},"件":{"docs":{},"。":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"。":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}}},"一":{"docs":{},"次":{"docs":{},"请":{"docs":{},"求":{"docs":{},"派":{"docs":{},"发":{"docs":{},"两":{"docs":{},"种":{"docs":{},"事":{"docs":{},"件":{"docs":{},",":{"docs":{},"需":{"docs":{},"屏":{"docs":{},"蔽":{"docs":{},"无":{"docs":{},"用":{"docs":{},"事":{"docs":{},"件":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}},"致":{"docs":{},"性":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},",":{"docs":{},"相":{"docs":{},"同":{"docs":{},"参":{"docs":{},"数":{"docs":{},"的":{"docs":{},"请":{"docs":{},"求":{"docs":{},"总":{"docs":{},"是":{"docs":{},"发":{"docs":{},"到":{"docs":{},"同":{"docs":{},"一":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},",":{"docs":{},"当":{"docs":{},"某":{"docs":{},"一":{"docs":{},"台":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"挂":{"docs":{},"时":{"docs":{},",":{"docs":{},"原":{"docs":{},"本":{"docs":{},"发":{"docs":{},"往":{"docs":{},"该":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"的":{"docs":{},"请":{"docs":{},"求":{"docs":{},",":{"docs":{},"基":{"docs":{},"于":{"docs":{},"虚":{"docs":{},"拟":{"docs":{},"节":{"docs":{},"点":{"docs":{},",":{"docs":{},"平":{"docs":{},"摊":{"docs":{},"到":{"docs":{},"其":{"docs":{},"它":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},",":{"docs":{},"不":{"docs":{},"会":{"docs":{},"引":{"docs":{},"起":{"docs":{},"剧":{"docs":{},"烈":{"docs":{},"变":{"docs":{},"动":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"。":{"docs":{"demos/负载均衡.html":{"ref":"demos/负载均衡.html","tf":0.041666666666666664}}}}}}}}}}}}}}}}}}}}}}}}}},"个":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"并":{"docs":{},"行":{"docs":{},"执":{"docs":{},"行":{"docs":{},"请":{"docs":{},"求":{"docs":{},"上":{"docs":{},"限":{"docs":{},",":{"docs":{},"即":{"docs":{},"当":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"对":{"docs":{},"一":{"docs":{},"个":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"并":{"docs":{},"发":{"docs":{},"调":{"docs":{},"用":{"docs":{},"到":{"docs":{},"上":{"docs":{},"限":{"docs":{},"后":{"docs":{},",":{"docs":{},"新":{"docs":{},"调":{"docs":{},"用":{"docs":{},"会":{"docs":{},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"可":{"docs":{},"能":{"docs":{},"到":{"docs":{},"超":{"docs":{},"时":{"docs":{},")":{"docs":{},"。":{"docs":{},"在":{"docs":{},"方":{"docs":{},"法":{"docs":{},"上":{"docs":{},"配":{"docs":{},"置":{"docs":{},"(":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},":":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"不":{"docs":{},"可":{"docs":{},"用":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}},"靠":{"docs":{},"异":{"docs":{},"步":{"docs":{},"调":{"docs":{},"用":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}},",":{"docs":{},"重":{"docs":{},"启":{"docs":{},"丢":{"docs":{},"失":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}},"支":{"docs":{},"持":{"docs":{},"权":{"docs":{},"重":{"docs":{},",":{"docs":{},"在":{"docs":{},"容":{"docs":{},"量":{"docs":{},"规":{"docs":{},"划":{"docs":{},"时":{"docs":{},",":{"docs":{},"不":{"docs":{},"能":{"docs":{},"通":{"docs":{},"过":{"docs":{},"权":{"docs":{},"重":{"docs":{},"把":{"docs":{},"压":{"docs":{},"力":{"docs":{},"导":{"docs":{},"向":{"docs":{},"一":{"docs":{},"台":{"docs":{},"机":{"docs":{},"器":{"docs":{},"压":{"docs":{},"测":{"docs":{},"容":{"docs":{},"量":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"稳":{"docs":{},"定":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}},"同":{"docs":{},"服":{"docs":{},"务":{"docs":{},"不":{"docs":{},"同":{"docs":{},"协":{"docs":{},"议":{"docs":{"demos/多协议.html":{"ref":"demos/多协议.html","tf":0.1111111111111111}}}}}},"使":{"docs":{},"用":{"docs":{},"不":{"docs":{},"同":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{"demos/多注册中心.html":{"ref":"demos/多注册中心.html","tf":0.06666666666666667}}}}}}}}}}}}},"区":{"docs":{},"分":{"docs":{},"版":{"docs":{},"本":{"docs":{},":":{"docs":{},"(":{"2":{"docs":{},".":{"2":{"docs":{},".":{"0":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{},"支":{"docs":{},"持":{"docs":{},")":{"docs":{"demos/多版本.html":{"ref":"demos/多版本.html","tf":0.1111111111111111}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}},"允":{"docs":{},"许":{"docs":{},"为":{"docs":{},"空":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}},"等":{"docs":{},"待":{"docs":{},"消":{"docs":{},"息":{"docs":{},"发":{"docs":{},"出":{"docs":{},",":{"docs":{},"将":{"docs":{},"消":{"docs":{},"息":{"docs":{},"放":{"docs":{},"入":{"docs":{},"i":{"docs":{},"o":{"docs":{},"队":{"docs":{},"列":{"docs":{},",":{"docs":{},"即":{"docs":{},"刻":{"docs":{},"返":{"docs":{},"回":{"docs":{},"。":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.021739130434782608}}}}}}}}}}}}}}}}}}}}}}},"号":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}},"抛":{"docs":{},"异":{"docs":{},"常":{"docs":{},",":{"docs":{},"a":{"docs":{},"多":{"docs":{},"的":{"docs":{},"那":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}},"b":{"docs":{},"正":{"docs":{},"常":{"docs":{},"接":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}},"相":{"docs":{},"同":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}},"需":{"docs":{},"要":{"docs":{},"启":{"docs":{},"动":{"docs":{},"任":{"docs":{},"何":{"docs":{},"中":{"docs":{},"心":{"docs":{},"节":{"docs":{},"点":{"docs":{},",":{"docs":{},"只":{"docs":{},"要":{"docs":{},"广":{"docs":{},"播":{"docs":{},"地":{"docs":{},"址":{"docs":{},"一":{"docs":{},"样":{"docs":{},",":{"docs":{},"就":{"docs":{},"可":{"docs":{},"以":{"docs":{},"互":{"docs":{},"相":{"docs":{},"发":{"docs":{},"现":{"docs":{},"。":{"docs":{"reference-registry/multicast.html":{"ref":"reference-registry/multicast.html","tf":0.09090909090909091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"建":{"docs":{},"议":{"docs":{},"使":{"docs":{},"用":{"docs":{},"过":{"docs":{},"于":{"docs":{},"抽":{"docs":{},"象":{"docs":{},"的":{"docs":{},"通":{"docs":{},"用":{"docs":{},"接":{"docs":{},"口":{"docs":{},",":{"docs":{},"如":{"docs":{},":":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}}}}}}}},"要":{"docs":{},"只":{"docs":{},"是":{"docs":{},"因":{"docs":{},"为":{"docs":{},"是":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"而":{"docs":{},"把":{"docs":{},"调":{"docs":{},"用":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}}}}}}}}},"使":{"docs":{},"用":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"文":{"docs":{},"件":{"docs":{},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"推":{"docs":{},"荐":{"docs":{},"使":{"docs":{},"用":{"docs":{},"对":{"docs":{},"应":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"配":{"docs":{},"置":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"事":{"docs":{},"件":{"docs":{},"通":{"docs":{},"知":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":5}},",":{"docs":{},"在":{"docs":{},"远":{"docs":{},"程":{"docs":{},"调":{"docs":{},"用":{"docs":{},"执":{"docs":{},"行":{"docs":{},"前":{"docs":{},"后":{"docs":{},"触":{"docs":{},"发":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}},"处":{"docs":{},"理":{"docs":{},"线":{"docs":{},"程":{"docs":{},"说":{"docs":{},"明":{"docs":{"demos/线程模型.html":{"ref":"demos/线程模型.html","tf":0.045454545454545456}}}}}}}}}},"令":{"docs":{},"牌":{"docs":{},"验":{"docs":{},"证":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/令牌验证.html":{"ref":"demos/令牌验证.html","tf":5}},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"服":{"docs":{},"务":{"docs":{},"授":{"docs":{},"权":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}},"为":{"docs":{},"空":{"docs":{},"表":{"docs":{},"示":{"docs":{},"不":{"docs":{},"开":{"docs":{},"启":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"为":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"随":{"docs":{},"机":{"docs":{},"生":{"docs":{},"成":{"docs":{},"动":{"docs":{},"态":{"docs":{},"令":{"docs":{},"牌":{"docs":{"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}},",":{"docs":{},"否":{"docs":{},"则":{"docs":{},"使":{"docs":{},"用":{"docs":{},"静":{"docs":{},"态":{"docs":{},"令":{"docs":{},"牌":{"docs":{},",":{"docs":{},"令":{"docs":{},"牌":{"docs":{},"的":{"docs":{},"作":{"docs":{},"用":{"docs":{},"是":{"docs":{},"防":{"docs":{},"止":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"绕":{"docs":{},"过":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"直":{"docs":{},"接":{"docs":{},"访":{"docs":{},"问":{"docs":{},",":{"docs":{},"保":{"docs":{},"证":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"的":{"docs":{},"授":{"docs":{},"权":{"docs":{},"功":{"docs":{},"能":{"docs":{},"有":{"docs":{},"效":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"使":{"docs":{},"用":{"docs":{},"点":{"docs":{},"对":{"docs":{},"点":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"需":{"docs":{},"关":{"docs":{},"闭":{"docs":{},"令":{"docs":{},"牌":{"docs":{},"功":{"docs":{},"能":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"伪":{"docs":{},"造":{"docs":{},"返":{"docs":{},"回":{"docs":{},"结":{"docs":{},"果":{"docs":{},",":{"docs":{},"可":{"docs":{},"在":{"docs":{},"失":{"docs":{},"败":{"docs":{},"时":{"docs":{},"执":{"docs":{},"行":{"docs":{},",":{"docs":{},"或":{"docs":{},"直":{"docs":{},"接":{"docs":{},"执":{"docs":{},"行":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"服":{"docs":{},"务":{"docs":{},"降":{"docs":{},"级":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"偶":{"docs":{},"尔":{"docs":{},"会":{"docs":{},"连":{"docs":{},"接":{"docs":{},"失":{"docs":{},"败":{"docs":{},",":{"docs":{},"需":{"docs":{},"重":{"docs":{},"建":{"docs":{},"s":{"docs":{},"t":{"docs":{},"u":{"docs":{},"b":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}},"功":{"docs":{},"能":{"docs":{},"成":{"docs":{},"熟":{"docs":{},"度":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}},"动":{"docs":{},"态":{"docs":{},"下":{"docs":{},"发":{"docs":{},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"实":{"docs":{},"现":{"docs":{},"功":{"docs":{},"能":{"docs":{},"的":{"docs":{},"开":{"docs":{},"关":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}},"决":{"docs":{},"定":{"docs":{},"调":{"docs":{},"用":{"docs":{},"关":{"docs":{},"系":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}},"压":{"docs":{},"力":{"docs":{},"分":{"docs":{},"摊":{"docs":{},"不":{"docs":{},"均":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}},"去":{"docs":{},"中":{"docs":{},"心":{"docs":{},"化":{"docs":{},",":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"安":{"docs":{},"装":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}},"参":{"docs":{},"数":{"docs":{},"回":{"docs":{},"调":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.005235602094240838},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":5}},"方":{"docs":{},"式":{"docs":{},"与":{"docs":{},"调":{"docs":{},"用":{"docs":{},"本":{"docs":{},"地":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"或":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"相":{"docs":{},"同":{"docs":{},",":{"docs":{},"只":{"docs":{},"需":{"docs":{},"要":{"docs":{},"在":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"的":{"docs":{},"配":{"docs":{},"置":{"docs":{},"文":{"docs":{},"件":{"docs":{},"中":{"docs":{},"声":{"docs":{},"明":{"docs":{},"哪":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"是":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"类":{"docs":{},"型":{"docs":{},"即":{"docs":{},"可":{"docs":{},",":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"将":{"docs":{},"基":{"docs":{},"于":{"docs":{},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{},"生":{"docs":{},"成":{"docs":{},"反":{"docs":{},"向":{"docs":{},"代":{"docs":{},"理":{"docs":{},",":{"docs":{},"这":{"docs":{},"样":{"docs":{},"就":{"docs":{},"可":{"docs":{},"以":{"docs":{},"从":{"docs":{},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},"端":{"docs":{},"调":{"docs":{},"用":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"逻":{"docs":{},"辑":{"docs":{},"。":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"验":{"docs":{},"证":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":5}},",":{"docs":{},"j":{"docs":{},"s":{"docs":{},"r":{"3":{"0":{"3":{"docs":{},"验":{"docs":{},"证":{"docs":{},"框":{"docs":{},"架":{"docs":{},"集":{"docs":{},"成":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}},"功":{"docs":{},"能":{"docs":{},"是":{"docs":{},"基":{"docs":{},"于":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}},"示":{"docs":{},"例":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}},"标":{"docs":{},"注":{"docs":{},"示":{"docs":{},"例":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}},"支":{"docs":{},"持":{"docs":{},":":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}},"设":{"docs":{},"置":{"docs":{},"脚":{"docs":{},"本":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"为":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"。":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"否":{"docs":{},"为":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"接":{"docs":{},"口":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"为":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},",":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"将":{"docs":{},"生":{"docs":{},"成":{"docs":{},"反":{"docs":{},"向":{"docs":{},"代":{"docs":{},"理":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"从":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"反":{"docs":{},"向":{"docs":{},"调":{"docs":{},"用":{"docs":{},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},",":{"docs":{},"通":{"docs":{},"常":{"docs":{},"用":{"docs":{},"于":{"docs":{},"事":{"docs":{},"件":{"docs":{},"推":{"docs":{},"送":{"docs":{},".":{"docs":{"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"及":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"不":{"docs":{},"能":{"docs":{},"自":{"docs":{},"定":{"docs":{},"义":{"docs":{},"实":{"docs":{},"现":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},",":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403},"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564}}}}}}}}}}}}}},"需":{"docs":{},"实":{"docs":{},"现":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"接":{"docs":{},"口":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403},"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549},"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}}}}}}}}}}}},"符":{"docs":{},"合":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"规":{"docs":{},"范":{"docs":{"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353}}}}}}}}}}}}}}},"尽":{"docs":{},"量":{"docs":{},"使":{"docs":{},"用":{"docs":{},"基":{"docs":{},"本":{"docs":{},"类":{"docs":{},"型":{"docs":{},"和":{"docs":{},"p":{"docs":{},"o":{"docs":{},"j":{"docs":{},"o":{"docs":{},"。":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}}}}}}}}}}},"见":{"docs":{},":":{"docs":{},"合":{"docs":{},"并":{"docs":{},"结":{"docs":{},"果":{"docs":{},"扩":{"docs":{},"展":{"docs":{"demos/分组聚合.html":{"ref":"demos/分组聚合.html","tf":0.07692307692307693}}}}}}}},"延":{"docs":{},"迟":{"docs":{},"连":{"docs":{},"接":{"docs":{"demos/粘滞连接.html":{"ref":"demos/粘滞连接.html","tf":0.3333333333333333}}}}}},"配":{"docs":{},"置":{"docs":{},"规":{"docs":{},"则":{"docs":{"demos/服务降级.html":{"ref":"demos/服务降级.html","tf":0.05}}}}}}}}},"启":{"docs":{},"动":{"docs":{},"一":{"docs":{},"个":{"docs":{},"内":{"docs":{},"嵌":{"docs":{},"j":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"汇":{"docs":{},"报":{"docs":{},"状":{"docs":{},"态":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}},"。":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}}}}}}}}}}}}}}}},"时":{"docs":{},"检":{"docs":{},"查":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":5}},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"是":{"docs":{},"否":{"docs":{},"存":{"docs":{},"在":{"docs":{},",":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"报":{"docs":{},"错":{"docs":{},",":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"忽":{"docs":{},"略":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"回":{"docs":{},"声":{"docs":{},"测":{"docs":{},"试":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.005235602094240838},"demos/回声测试.html":{"ref":"demos/回声测试.html","tf":5}},"可":{"docs":{},"用":{"docs":{},"性":{"docs":{"demos/回声测试.html":{"ref":"demos/回声测试.html","tf":0.045454545454545456}}}}},"用":{"docs":{},"于":{"docs":{},"检":{"docs":{},"测":{"docs":{},"服":{"docs":{},"务":{"docs":{},"是":{"docs":{},"否":{"docs":{},"可":{"docs":{},"用":{"docs":{},",":{"docs":{},"回":{"docs":{},"声":{"docs":{},"测":{"docs":{},"试":{"docs":{},"按":{"docs":{},"照":{"docs":{},"正":{"docs":{},"常":{"docs":{},"请":{"docs":{},"求":{"docs":{},"流":{"docs":{},"程":{"docs":{},"执":{"docs":{},"行":{"docs":{},",":{"docs":{},"能":{"docs":{},"够":{"docs":{},"测":{"docs":{},"试":{"docs":{},"整":{"docs":{},"个":{"docs":{},"调":{"docs":{},"用":{"docs":{},"是":{"docs":{},"否":{"docs":{},"通":{"docs":{},"畅":{"docs":{},",":{"docs":{},"可":{"docs":{},"用":{"docs":{},"于":{"docs":{},"监":{"docs":{},"控":{"docs":{},"。":{"docs":{"demos/回声测试.html":{"ref":"demos/回声测试.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"基":{"docs":{},"于":{"docs":{},"条":{"docs":{},"件":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"的":{"docs":{},"路":{"docs":{},"由":{"docs":{},"规":{"docs":{},"则":{"docs":{},",":{"docs":{},"功":{"docs":{},"能":{"docs":{},"简":{"docs":{},"单":{"docs":{},"易":{"docs":{},"用":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}},"如":{"docs":{},":":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}},"脚":{"docs":{},"本":{"docs":{},"引":{"docs":{},"擎":{"docs":{},"的":{"docs":{},"路":{"docs":{},"由":{"docs":{},"规":{"docs":{},"则":{"docs":{},",":{"docs":{},"功":{"docs":{},"能":{"docs":{},"强":{"docs":{},"大":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}},"如":{"docs":{},":":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}},"最":{"docs":{},"近":{"docs":{},"最":{"docs":{},"少":{"docs":{},"使":{"docs":{},"用":{"docs":{},"原":{"docs":{},"则":{"docs":{},"删":{"docs":{},"除":{"docs":{},"多":{"docs":{},"余":{"docs":{},"缓":{"docs":{},"存":{"docs":{},",":{"docs":{},"保":{"docs":{},"持":{"docs":{},"最":{"docs":{},"热":{"docs":{},"的":{"docs":{},"数":{"docs":{},"据":{"docs":{},"被":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"。":{"docs":{"demos/结果缓存.html":{"ref":"demos/结果缓存.html","tf":0.058823529411764705}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"i":{"docs":{},"o":{"docs":{},"的":{"docs":{},"非":{"docs":{},"阻":{"docs":{},"塞":{"docs":{},"实":{"docs":{},"现":{"docs":{},"并":{"docs":{},"行":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"启":{"docs":{},"动":{"docs":{},"多":{"docs":{},"线":{"docs":{},"程":{"docs":{},"即":{"docs":{},"可":{"docs":{},"完":{"docs":{},"成":{"docs":{},"并":{"docs":{},"行":{"docs":{},"调":{"docs":{},"用":{"docs":{},"多":{"docs":{},"个":{"docs":{},"远":{"docs":{},"程":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"相":{"docs":{},"对":{"docs":{},"多":{"docs":{},"线":{"docs":{},"程":{"docs":{},"开":{"docs":{},"销":{"docs":{},"较":{"docs":{},"小":{"docs":{},"。":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.021739130434782608}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"t":{"docs":{},"a":{"docs":{},"/":{"docs":{},"x":{"docs":{},"a":{"docs":{},"规":{"docs":{},"范":{"docs":{},"实":{"docs":{},"现":{"docs":{},"。":{"docs":{"demos/分布式事务.html":{"ref":"demos/分布式事务.html","tf":0.3333333333333333}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"的":{"docs":{},"远":{"docs":{},"程":{"docs":{},"调":{"docs":{},"用":{"docs":{},"协":{"docs":{},"议":{"docs":{},"。":{"docs":{"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564}}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"表":{"docs":{},"单":{"docs":{},"的":{"docs":{},"远":{"docs":{},"程":{"docs":{},"调":{"docs":{},"用":{"docs":{},"协":{"docs":{},"议":{"docs":{},"。":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"协":{"docs":{},"议":{"docs":{},"使":{"docs":{},"用":{"docs":{},"说":{"docs":{},"明":{"docs":{"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"x":{"docs":{},"f":{"docs":{},"的":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}}}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"的":{"docs":{},"远":{"docs":{},"程":{"docs":{},"调":{"docs":{},"用":{"docs":{},"协":{"docs":{},"议":{"docs":{},":":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}}}}}}}}}}}}}}},"本":{"docs":{},"类":{"docs":{},"型":{"docs":{},"以":{"docs":{},"及":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},",":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},",":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"等":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"转":{"docs":{},"换":{"docs":{},",":{"docs":{},"直":{"docs":{},"接":{"docs":{},"调":{"docs":{},"用":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"准":{"docs":{},"测":{"docs":{},"试":{"docs":{},"工":{"docs":{},"具":{"docs":{},"包":{"docs":{"benchmark.html":{"ref":"benchmark.html","tf":5.035714285714286}}}}}}}}},"大":{"docs":{},"量":{"docs":{},"访":{"docs":{},"问":{"docs":{},"页":{"docs":{},"面":{"docs":{},"时":{"docs":{},",":{"docs":{},"会":{"docs":{},"影":{"docs":{},"响":{"docs":{},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},"的":{"docs":{},"线":{"docs":{},"程":{"docs":{},"和":{"docs":{},"内":{"docs":{},"存":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}}},"失":{"docs":{},"败":{"docs":{},"安":{"docs":{},"全":{"docs":{},",":{"docs":{},"出":{"docs":{},"现":{"docs":{},"异":{"docs":{},"常":{"docs":{},"时":{"docs":{},",":{"docs":{},"直":{"docs":{},"接":{"docs":{},"忽":{"docs":{},"略":{"docs":{},",":{"docs":{},"通":{"docs":{},"常":{"docs":{},"用":{"docs":{},"于":{"docs":{},"写":{"docs":{},"入":{"docs":{},"审":{"docs":{},"计":{"docs":{},"日":{"docs":{},"志":{"docs":{},"等":{"docs":{},"操":{"docs":{},"作":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}},"。":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}}}}}}}}}},"自":{"docs":{},"动":{"docs":{},"切":{"docs":{},"换":{"docs":{},",":{"docs":{},"当":{"docs":{},"出":{"docs":{},"现":{"docs":{},"失":{"docs":{},"败":{"docs":{},",":{"docs":{},"重":{"docs":{},"试":{"docs":{},"其":{"docs":{},"它":{"docs":{},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},",":{"docs":{},"通":{"docs":{},"常":{"docs":{},"用":{"docs":{},"于":{"docs":{},"读":{"docs":{},"操":{"docs":{},"作":{"docs":{},"(":{"docs":{},"推":{"docs":{},"荐":{"docs":{},"使":{"docs":{},"用":{"docs":{},")":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}},"。":{"docs":{},"(":{"docs":{},"缺":{"docs":{},"省":{"docs":{},")":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}}}}}}}}}}}}}}}}},"恢":{"docs":{},"复":{"docs":{},",":{"docs":{},"后":{"docs":{},"台":{"docs":{},"记":{"docs":{},"录":{"docs":{},"失":{"docs":{},"败":{"docs":{},"请":{"docs":{},"求":{"docs":{},",":{"docs":{},"定":{"docs":{},"时":{"docs":{},"重":{"docs":{},"发":{"docs":{},",":{"docs":{},"通":{"docs":{},"常":{"docs":{},"用":{"docs":{},"于":{"docs":{},"消":{"docs":{},"息":{"docs":{},"通":{"docs":{},"知":{"docs":{},"操":{"docs":{},"作":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}},"。":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}}}}}}}}}}}}}}},"重":{"docs":{},"试":{"docs":{},"次":{"docs":{},"数":{"docs":{},",":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"是":{"2":{"docs":{},"(":{"docs":{},"表":{"docs":{},"示":{"docs":{},"加":{"docs":{},"上":{"docs":{},"第":{"docs":{},"一":{"docs":{},"次":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"会":{"docs":{},"调":{"docs":{},"用":{"3":{"docs":{},"次":{"docs":{},")":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}},"docs":{}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}},"存":{"docs":{},"在":{"docs":{},"慢":{"docs":{},"的":{"docs":{},"机":{"docs":{},"器":{"docs":{},"累":{"docs":{},"积":{"docs":{},"请":{"docs":{},"求":{"docs":{},"问":{"docs":{},"题":{"docs":{},",":{"docs":{},"极":{"docs":{},"端":{"docs":{},"情":{"docs":{},"况":{"docs":{},"可":{"docs":{},"能":{"docs":{},"产":{"docs":{},"生":{"docs":{},"雪":{"docs":{},"崩":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"累":{"docs":{},"积":{"docs":{},"请":{"docs":{},"求":{"docs":{},"的":{"docs":{},"问":{"docs":{},"题":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},":":{"docs":{},"第":{"docs":{},"二":{"docs":{},"台":{"docs":{},"机":{"docs":{},"器":{"docs":{},"很":{"docs":{},"慢":{"docs":{},",":{"docs":{},"但":{"docs":{},"没":{"docs":{},"挂":{"docs":{},",":{"docs":{},"当":{"docs":{},"请":{"docs":{},"求":{"docs":{},"调":{"docs":{},"到":{"docs":{},"第":{"docs":{},"二":{"docs":{},"台":{"docs":{},"时":{"docs":{},"就":{"docs":{},"卡":{"docs":{},"在":{"docs":{},"那":{"docs":{},",":{"docs":{},"久":{"docs":{},"而":{"docs":{},"久":{"docs":{},"之":{"docs":{},",":{"docs":{},"所":{"docs":{},"有":{"docs":{},"请":{"docs":{},"求":{"docs":{},"都":{"docs":{},"卡":{"docs":{},"在":{"docs":{},"调":{"docs":{},"到":{"docs":{},"第":{"docs":{},"二":{"docs":{},"台":{"docs":{},"上":{"docs":{},"。":{"docs":{"demos/负载均衡.html":{"ref":"demos/负载均衡.html","tf":0.041666666666666664}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"问":{"docs":{},"题":{"docs":{},":":{"docs":{},"在":{"5":{"0":{"docs":{},"k":{"docs":{},"数":{"docs":{},"据":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"2":{"docs":{},".":{"0":{"docs":{},"性":{"docs":{},"能":{"docs":{},"不":{"docs":{},"如":{"1":{"docs":{},".":{"0":{"docs":{},",":{"docs":{},"怀":{"docs":{},"疑":{"docs":{},"可":{"docs":{},"能":{"docs":{},"是":{"docs":{},"缓":{"docs":{},"冲":{"docs":{},"区":{"docs":{},"设":{"docs":{},"置":{"docs":{},"的":{"docs":{},"问":{"docs":{},"题":{"docs":{},",":{"docs":{},"下":{"docs":{},"版":{"docs":{},"本":{"docs":{},"会":{"docs":{},"进":{"docs":{},"一":{"docs":{},"步":{"docs":{},"确":{"docs":{},"认":{"docs":{},"。":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}}}}},"docs":{}}},"docs":{}}}}}}}},"docs":{}},"docs":{}}}}}}}},"对":{"docs":{},"性":{"docs":{},"能":{"docs":{},"有":{"docs":{},"影":{"docs":{},"响":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}},"应":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213},"recommend.html":{"ref":"recommend.html","tf":0.018867924528301886}},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"参":{"docs":{},"数":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258},"reference-xmlconf/dubbo-monitor.html":{"ref":"reference-xmlconf/dubbo-monitor.html","tf":0.03571428571428571},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176},"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.02564102564102564},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761},"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421},"reference-xmlconf/dubbo-parameter.html":{"ref":"reference-xmlconf/dubbo-parameter.html","tf":0.038461538461538464}}}}}}},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"中":{"docs":{},"的":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"名":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"、":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"指":{"docs":{},"标":{"docs":{},"名":{"docs":{},"称":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}},"方":{"docs":{},"地":{"docs":{},"址":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}},"每":{"docs":{},"个":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"的":{"docs":{},"最":{"docs":{},"大":{"docs":{},"连":{"docs":{},"接":{"docs":{},"数":{"docs":{},",":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"、":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"、":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"等":{"docs":{},"短":{"docs":{},"连":{"docs":{},"接":{"docs":{},"协":{"docs":{},"议":{"docs":{},"表":{"docs":{},"示":{"docs":{},"限":{"docs":{},"制":{"docs":{},"连":{"docs":{},"接":{"docs":{},"数":{"docs":{},",":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"等":{"docs":{},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{},"协":{"docs":{},"表":{"docs":{},"示":{"docs":{},"建":{"docs":{},"立":{"docs":{},"的":{"docs":{},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{},"个":{"docs":{},"数":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"于":{"docs":{},"输":{"docs":{},"入":{"docs":{},"参":{"docs":{},"数":{"docs":{},"的":{"docs":{},"校":{"docs":{},"验":{"docs":{},"逻":{"docs":{},"辑":{"docs":{},"在":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"端":{"docs":{},"要":{"docs":{},"有":{"docs":{},"。":{"docs":{},"如":{"docs":{},"有":{"docs":{},"性":{"docs":{},"能":{"docs":{},"上":{"docs":{},"的":{"docs":{},"考":{"docs":{},"虑":{"docs":{},",":{"docs":{},"服":{"docs":{},"务":{"docs":{},"实":{"docs":{},"现":{"docs":{},"者":{"docs":{},"可":{"docs":{},"以":{"docs":{},"考":{"docs":{},"虑":{"docs":{},"在":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"包":{"docs":{},"上":{"docs":{},"加":{"docs":{},"上":{"docs":{},"服":{"docs":{},"务":{"docs":{},"s":{"docs":{},"t":{"docs":{},"u":{"docs":{},"b":{"docs":{},"类":{"docs":{},"来":{"docs":{},"完":{"docs":{},"成":{"docs":{},"检":{"docs":{},"验":{"docs":{},"。":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"小":{"docs":{},"规":{"docs":{},"模":{"docs":{},"应":{"docs":{},"用":{"docs":{},"或":{"docs":{},"开":{"docs":{},"发":{"docs":{},"测":{"docs":{},"试":{"docs":{},"环":{"docs":{},"境":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}},"广":{"docs":{},"播":{"docs":{},"调":{"docs":{},"用":{"docs":{},"所":{"docs":{},"有":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},",":{"docs":{},"逐":{"docs":{},"个":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"任":{"docs":{},"意":{"docs":{},"一":{"docs":{},"台":{"docs":{},"报":{"docs":{},"错":{"docs":{},"则":{"docs":{},"报":{"docs":{},"错":{"docs":{},",":{"docs":{},"通":{"docs":{},"常":{"docs":{},"用":{"docs":{},"于":{"docs":{},"更":{"docs":{},"新":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"本":{"docs":{},"地":{"docs":{},"状":{"docs":{},"态":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}},"。":{"docs":{},"(":{"2":{"docs":{},".":{"1":{"docs":{},".":{"0":{"docs":{},"开":{"docs":{},"始":{"docs":{},"支":{"docs":{},"持":{"docs":{},")":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}},"延":{"docs":{},"迟":{"5":{"docs":{},"秒":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"服":{"docs":{},"务":{"docs":{"demos/延迟暴露.html":{"ref":"demos/延迟暴露.html","tf":0.06666666666666667}}}}}}}},"docs":{},"建":{"docs":{},"立":{"docs":{},"连":{"docs":{},"接":{"docs":{},",":{"docs":{},"调":{"docs":{},"用":{"docs":{},"时":{"docs":{},"建":{"docs":{},"立":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}},"暴":{"docs":{},"露":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/延迟暴露.html":{"ref":"demos/延迟暴露.html","tf":5}},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"等":{"docs":{},"待":{"docs":{},"应":{"docs":{},"用":{"docs":{},"加":{"docs":{},"载":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"m":{"docs":{},"u":{"docs":{},"p":{"docs":{},"数":{"docs":{},"据":{"docs":{},",":{"docs":{},"或":{"docs":{},"等":{"docs":{},"待":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"加":{"docs":{},"载":{"docs":{},"完":{"docs":{},"成":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"连":{"docs":{},"接":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/延迟连接.html":{"ref":"demos/延迟连接.html","tf":5}},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"减":{"docs":{},"少":{"docs":{},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{},"数":{"docs":{},",":{"docs":{},"当":{"docs":{},"有":{"docs":{},"调":{"docs":{},"用":{"docs":{},"发":{"docs":{},"起":{"docs":{},"时":{"docs":{},",":{"docs":{},"再":{"docs":{},"创":{"docs":{},"建":{"docs":{},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{},"。":{"docs":{"demos/延迟连接.html":{"ref":"demos/延迟连接.html","tf":0.5}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"到":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"完":{"docs":{},"成":{"docs":{},"后":{"docs":{},",":{"docs":{},"再":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"服":{"docs":{},"务":{"docs":{},":":{"docs":{},"(":{"docs":{},"基":{"docs":{},"于":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"的":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"h":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"事":{"docs":{},"件":{"docs":{},"触":{"docs":{},"发":{"docs":{},"暴":{"docs":{},"露":{"docs":{},")":{"docs":{"demos/延迟暴露.html":{"ref":"demos/延迟暴露.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"注":{"docs":{},"册":{"docs":{},"服":{"docs":{},"务":{"docs":{},"时":{"docs":{},"间":{"docs":{},"(":{"docs":{},"毫":{"docs":{},"秒":{"docs":{},")":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}},"异":{"docs":{},"步":{"docs":{},"调":{"docs":{},"用":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":5},"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}},"时":{"docs":{},",":{"docs":{},"标":{"docs":{},"记":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"时":{"docs":{},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"网":{"docs":{},"络":{"docs":{},"已":{"docs":{},"发":{"docs":{},"出":{"docs":{},"数":{"docs":{},"据":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}}}}}}}}}}}}}}}}}}}}}}},"回":{"docs":{},"调":{"docs":{},"模":{"docs":{},"式":{"docs":{},":":{"docs":{},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}}}}}}}},"无":{"docs":{},"回":{"docs":{},"调":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}},"常":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}},"待":{"docs":{},"发":{"docs":{},"送":{"docs":{},"消":{"docs":{},"息":{"docs":{},"队":{"docs":{},"列":{"docs":{},"派":{"docs":{},"发":{"docs":{},"不":{"docs":{},"及":{"docs":{},"时":{"docs":{},",":{"docs":{},"大":{"docs":{},"压":{"docs":{},"力":{"docs":{},"下":{"docs":{},",":{"docs":{},"会":{"docs":{},"出":{"docs":{},"现":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"g":{"docs":{},"c":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"快":{"docs":{},"速":{"docs":{},"失":{"docs":{},"败":{"docs":{},",":{"docs":{},"只":{"docs":{},"发":{"docs":{},"起":{"docs":{},"一":{"docs":{},"次":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"失":{"docs":{},"败":{"docs":{},"立":{"docs":{},"即":{"docs":{},"报":{"docs":{},"错":{"docs":{},",":{"docs":{},"通":{"docs":{},"常":{"docs":{},"用":{"docs":{},"于":{"docs":{},"非":{"docs":{},"幂":{"docs":{},"等":{"docs":{},"性":{"docs":{},"的":{"docs":{},"写":{"docs":{},"操":{"docs":{},"作":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}},"。":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}}}}}}}}}}}}}}}},"性":{"docs":{},"能":{"docs":{},"较":{"docs":{},"好":{"docs":{},",":{"docs":{},"多":{"docs":{},"语":{"docs":{},"言":{"docs":{},"支":{"docs":{},"持":{"docs":{},"(":{"docs":{},"推":{"docs":{},"荐":{"docs":{},"使":{"docs":{},"用":{"docs":{},")":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}},"差":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.007853403141361256}}}},"调":{"docs":{},"优":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.051587301587301584},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.05405405405405406},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.07804878048780488},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.03225806451612903},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.07262569832402235},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.07333333333333333},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.07746478873239436}},":":{"docs":{},"表":{"docs":{},"示":{"docs":{},"该":{"docs":{},"配":{"docs":{},"置":{"docs":{},"项":{"docs":{},"用":{"docs":{},"于":{"docs":{},"调":{"docs":{},"优":{"docs":{},"性":{"docs":{},"能":{"docs":{},",":{"docs":{},"不":{"docs":{},"同":{"docs":{},"的":{"docs":{},"选":{"docs":{},"项":{"docs":{},"对":{"docs":{},"性":{"docs":{},"能":{"docs":{},"会":{"docs":{},"产":{"docs":{},"生":{"docs":{},"影":{"docs":{},"响":{"docs":{},"。":{"docs":{"reference-xmlconf/introduction.html":{"ref":"reference-xmlconf/introduction.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"优":{"docs":{},"化":{"docs":{"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.029411764705882353}}}},"测":{"docs":{},"试":{"docs":{},"报":{"docs":{},"告":{"docs":{"reference-protocol/introduction.html":{"ref":"reference-protocol/introduction.html","tf":0.3333333333333333},"perf-test.html":{"ref":"perf-test.html","tf":5}}}},"场":{"docs":{},"景":{"docs":{},"(":{"1":{"0":{"docs":{},"并":{"docs":{},"发":{"docs":{},")":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}},"docs":{}},"docs":{}}}}}},"分":{"docs":{},"析":{"docs":{},"评":{"docs":{},"估":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}},"对":{"docs":{},"比":{"docs":{},"分":{"docs":{},"析":{"docs":{},"(":{"docs":{},"新":{"docs":{},"旧":{"docs":{},"环":{"docs":{},"境":{"docs":{},"、":{"docs":{},"不":{"docs":{},"同":{"docs":{},"数":{"docs":{},"据":{"docs":{},"量":{"docs":{},"级":{"docs":{},"等":{"docs":{},")":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}}}}}},"成":{"docs":{},"熟":{"docs":{},"度":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":5}}}}},"支":{"docs":{},"持":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}},"j":{"docs":{},"f":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"统":{"docs":{},"计":{"docs":{},"报":{"docs":{},"表":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}},"d":{"docs":{},"k":{"docs":{},"脚":{"docs":{},"本":{"docs":{},"引":{"docs":{},"擎":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"脚":{"docs":{},"本":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},":":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},",":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"基":{"docs":{},"于":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"双":{"docs":{},"写":{"docs":{},"的":{"docs":{},"集":{"docs":{},"群":{"docs":{},"方":{"docs":{},"式":{"docs":{},",":{"docs":{},"性":{"docs":{},"能":{"docs":{},"高":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}},"网":{"docs":{},"络":{"docs":{},"的":{"docs":{},"集":{"docs":{},"群":{"docs":{},"方":{"docs":{},"式":{"docs":{},",":{"docs":{},"有":{"docs":{},"广":{"docs":{},"泛":{"docs":{},"周":{"docs":{},"边":{"docs":{},"开":{"docs":{},"源":{"docs":{},"产":{"docs":{},"品":{"docs":{},",":{"docs":{},"建":{"docs":{},"议":{"docs":{},"使":{"docs":{},"用":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"版":{"docs":{},"本":{"docs":{},":":{"2":{"docs":{},".":{"0":{"docs":{},".":{"7":{"docs":{},"之":{"docs":{},"后":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}},"docs":{}}},"docs":{}}},"docs":{}}}},"的":{"docs":{"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":0.04}}},"z":{"docs":{},"k":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"和":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"两":{"docs":{},"种":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"实":{"docs":{},"现":{"docs":{},":":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"以":{"docs":{},"下":{"docs":{},"功":{"docs":{},"能":{"docs":{},":":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}},"最":{"docs":{},"少":{"docs":{},"活":{"docs":{},"跃":{"docs":{},"调":{"docs":{},"用":{"docs":{},"数":{"docs":{},",":{"docs":{},"相":{"docs":{},"同":{"docs":{},"活":{"docs":{},"跃":{"docs":{},"数":{"docs":{},"的":{"docs":{},"随":{"docs":{},"机":{"docs":{},",":{"docs":{},"活":{"docs":{},"跃":{"docs":{},"数":{"docs":{},"指":{"docs":{},"调":{"docs":{},"用":{"docs":{},"前":{"docs":{},"后":{"docs":{},"计":{"docs":{},"数":{"docs":{},"差":{"docs":{},",":{"docs":{},"使":{"docs":{},"慢":{"docs":{},"的":{"docs":{},"机":{"docs":{},"器":{"docs":{},"收":{"docs":{},"到":{"docs":{},"更":{"docs":{},"少":{"docs":{},"请":{"docs":{},"求":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}},"。":{"docs":{"demos/负载均衡.html":{"ref":"demos/负载均衡.html","tf":0.041666666666666664}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"大":{"docs":{},"值":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}},"小":{"docs":{},"值":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}},"有":{"docs":{},"些":{"docs":{},"复":{"docs":{},"杂":{"docs":{},"多":{"docs":{},"分":{"docs":{},"支":{"docs":{},"条":{"docs":{},"件":{"docs":{},"情":{"docs":{},"况":{"docs":{},",":{"docs":{},"规":{"docs":{},"则":{"docs":{},"很":{"docs":{},"难":{"docs":{},"描":{"docs":{},"述":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}},"时":{"docs":{},"候":{"docs":{},"希":{"docs":{},"望":{"docs":{},"人":{"docs":{},"工":{"docs":{},"管":{"docs":{},"理":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"的":{"docs":{},"上":{"docs":{},"线":{"docs":{},"和":{"docs":{},"下":{"docs":{},"线":{"docs":{},",":{"docs":{},"此":{"docs":{},"时":{"docs":{},"需":{"docs":{},"将":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"标":{"docs":{},"识":{"docs":{},"为":{"docs":{},"非":{"docs":{},"动":{"docs":{},"态":{"docs":{},"管":{"docs":{},"理":{"docs":{},"模":{"docs":{},"式":{"docs":{"demos/静态服务.html":{"ref":"demos/静态服务.html","tf":0.07142857142857142}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"了":{"docs":{},"这":{"docs":{},"项":{"docs":{},"配":{"docs":{},"置":{"docs":{},"后":{"docs":{},",":{"docs":{},"当":{"docs":{},"应":{"docs":{},"用":{"docs":{},"重":{"docs":{},"启":{"docs":{},"过":{"docs":{},"程":{"docs":{},"中":{"docs":{},",":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"不":{"docs":{},"可":{"docs":{},"用":{"docs":{},"时":{"docs":{},"则":{"docs":{},"应":{"docs":{},"用":{"docs":{},"会":{"docs":{},"从":{"docs":{},"这":{"docs":{},"个":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"文":{"docs":{},"件":{"docs":{},"读":{"docs":{},"取":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"列":{"docs":{},"表":{"docs":{},"的":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"进":{"docs":{},"一":{"docs":{},"步":{"docs":{},"保":{"docs":{},"证":{"docs":{},"应":{"docs":{},"用":{"docs":{},"可":{"docs":{},"靠":{"docs":{},"性":{"docs":{},"。":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"本":{"docs":{},"地":{"docs":{},"伪":{"docs":{},"装":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":5}}}},"存":{"docs":{},"储":{"docs":{},",":{"docs":{},"影":{"docs":{},"响":{"docs":{},"性":{"docs":{},"能":{"docs":{},",":{"docs":{},"受":{"docs":{},"磁":{"docs":{},"盘":{"docs":{},"大":{"docs":{},"小":{"docs":{},"限":{"docs":{},"制":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}},"根":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":5}}}},"调":{"docs":{},"用":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.005235602094240838},"demos/本地调用.html":{"ref":"demos/本地调用.html","tf":5}},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"了":{"docs":{},"i":{"docs":{},"n":{"docs":{},"j":{"docs":{},"v":{"docs":{},"m":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"伪":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"它":{"docs":{},"不":{"docs":{},"开":{"docs":{},"启":{"docs":{},"端":{"docs":{},"口":{"docs":{},",":{"docs":{},"不":{"docs":{},"发":{"docs":{},"起":{"docs":{},"远":{"docs":{},"程":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"只":{"docs":{},"在":{"docs":{},"j":{"docs":{},"v":{"docs":{},"m":{"docs":{},"内":{"docs":{},"直":{"docs":{},"接":{"docs":{},"关":{"docs":{},"联":{"docs":{},",":{"docs":{},"但":{"docs":{},"执":{"docs":{},"行":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"的":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"链":{"docs":{},"。":{"docs":{"demos/本地调用.html":{"ref":"demos/本地调用.html","tf":0.0625}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"端":{"docs":{},"是":{"docs":{},"否":{"docs":{},"为":{"docs":{},"提":{"docs":{},"供":{"docs":{},"端":{"docs":{},",":{"docs":{},"这":{"docs":{},"里":{"docs":{},"会":{"docs":{},"返":{"docs":{},"回":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904}}}}}}}}}}}}}}},"消":{"docs":{},"费":{"docs":{},"端":{"docs":{},",":{"docs":{},"这":{"docs":{},"里":{"docs":{},"会":{"docs":{},"返":{"docs":{},"回":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904}}}}}}}}}}}}}}}}}}},"次":{"docs":{},"性":{"docs":{},"能":{"docs":{},"测":{"docs":{},"试":{"docs":{},"考":{"docs":{},"察":{"docs":{},"的":{"docs":{},"是":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"本":{"docs":{},"身":{"docs":{},"的":{"docs":{},"性":{"docs":{},"能":{"docs":{},",":{"docs":{},"实":{"docs":{},"际":{"docs":{},"使":{"docs":{},"用":{"docs":{},"过":{"docs":{},"程":{"docs":{},"中":{"docs":{},"的":{"docs":{},"性":{"docs":{},"能":{"docs":{},"有":{"docs":{},"待":{"docs":{},"应":{"docs":{},"用":{"docs":{},"来":{"docs":{},"验":{"docs":{},"证":{"docs":{},"。":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"测":{"docs":{},"试":{"docs":{},"了":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"2":{"docs":{},".":{"0":{"docs":{},"所":{"docs":{},"有":{"docs":{},"支":{"docs":{},"持":{"docs":{},"的":{"docs":{},"协":{"docs":{},"议":{"docs":{},"在":{"docs":{},"不":{"docs":{},"同":{"docs":{},"大":{"docs":{},"小":{"docs":{},"和":{"docs":{},"数":{"docs":{},"据":{"docs":{},"类":{"docs":{},"型":{"docs":{},"下":{"docs":{},"的":{"docs":{},"表":{"docs":{},"现":{"docs":{},",":{"docs":{},"并":{"docs":{},"与":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"1":{"docs":{},".":{"0":{"docs":{},"进":{"docs":{},"行":{"docs":{},"了":{"docs":{},"对":{"docs":{},"比":{"docs":{},"。":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}},"条":{"docs":{},"件":{"docs":{},"路":{"docs":{},"由":{"docs":{},"规":{"docs":{},"则":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}},"支":{"docs":{},"持":{"docs":{},":":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}},"没":{"docs":{},"有":{"docs":{},"运":{"docs":{},"行":{"docs":{},"沙":{"docs":{},"箱":{"docs":{},",":{"docs":{},"脚":{"docs":{},"本":{"docs":{},"能":{"docs":{},"力":{"docs":{},"过":{"docs":{},"于":{"docs":{},"强":{"docs":{},"大":{"docs":{},",":{"docs":{},"可":{"docs":{},"能":{"docs":{},"成":{"docs":{},"为":{"docs":{},"后":{"docs":{},"门":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}}},"集":{"docs":{},"群":{"docs":{},"支":{"docs":{},"持":{"docs":{},",":{"docs":{},"可":{"docs":{},"能":{"docs":{},"单":{"docs":{},"点":{"docs":{},"故":{"docs":{},"障":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}},",":{"docs":{},"但":{"docs":{},"故":{"docs":{},"障":{"docs":{},"后":{"docs":{},"不":{"docs":{},"影":{"docs":{},"响":{"docs":{},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},"运":{"docs":{},"行":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}}}}}}},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"时":{"docs":{},"报":{"docs":{},"错":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.06060606060606061}}}}}}}},"配":{"docs":{},"置":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},",":{"docs":{},"则":{"docs":{},"会":{"docs":{},"分":{"docs":{},"配":{"docs":{},"一":{"docs":{},"个":{"docs":{},"没":{"docs":{},"有":{"docs":{},"被":{"docs":{},"占":{"docs":{},"用":{"docs":{},"的":{"docs":{},"端":{"docs":{},"口":{"docs":{},"。":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"泛":{"docs":{},"化":{"docs":{},"实":{"docs":{},"现":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":5},"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}},",":{"docs":{},"无":{"docs":{},"需":{"docs":{},"业":{"docs":{},"务":{"docs":{},"接":{"docs":{},"口":{"docs":{},"类":{"docs":{},"实":{"docs":{},"现":{"docs":{},"任":{"docs":{},"意":{"docs":{},"接":{"docs":{},"口":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"平":{"docs":{},"台":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}}}}}}}},"引":{"docs":{},"用":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":5}}}},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"无":{"docs":{},"需":{"docs":{},"业":{"docs":{},"务":{"docs":{},"接":{"docs":{},"口":{"docs":{},"类":{"docs":{},"进":{"docs":{},"行":{"docs":{},"远":{"docs":{},"程":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"测":{"docs":{},"试":{"docs":{},"平":{"docs":{},"台":{"docs":{},",":{"docs":{},"开":{"docs":{},"放":{"docs":{},"网":{"docs":{},"关":{"docs":{},"桥":{"docs":{},"接":{"docs":{},"等":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"接":{"docs":{},"口":{"docs":{},"调":{"docs":{},"用":{"docs":{},"方":{"docs":{},"式":{"docs":{},"主":{"docs":{},"要":{"docs":{},"用":{"docs":{},"于":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"没":{"docs":{},"有":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"接":{"docs":{},"口":{"docs":{},"及":{"docs":{},"模":{"docs":{},"型":{"docs":{},"类":{"docs":{},"元":{"docs":{},"的":{"docs":{},"情":{"docs":{},"况":{"docs":{},",":{"docs":{},"参":{"docs":{},"数":{"docs":{},"及":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"中":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"p":{"docs":{},"o":{"docs":{},"j":{"docs":{},"o":{"docs":{},"均":{"docs":{},"用":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"表":{"docs":{},"示":{"docs":{},",":{"docs":{},"通":{"docs":{},"常":{"docs":{},"用":{"docs":{},"于":{"docs":{},"框":{"docs":{},"架":{"docs":{},"集":{"docs":{},"成":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},":":{"docs":{},"实":{"docs":{},"现":{"docs":{},"一":{"docs":{},"个":{"docs":{},"通":{"docs":{},"用":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},"测":{"docs":{},"试":{"docs":{},"框":{"docs":{},"架":{"docs":{},",":{"docs":{},"可":{"docs":{},"通":{"docs":{},"过":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"调":{"docs":{},"用":{"docs":{},"所":{"docs":{},"有":{"docs":{},"服":{"docs":{},"务":{"docs":{},"实":{"docs":{},"现":{"docs":{},"。":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"现":{"docs":{},"方":{"docs":{},"式":{"docs":{},"主":{"docs":{},"要":{"docs":{},"用":{"docs":{},"于":{"docs":{},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},"端":{"docs":{},"没":{"docs":{},"有":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"接":{"docs":{},"口":{"docs":{},"及":{"docs":{},"模":{"docs":{},"型":{"docs":{},"类":{"docs":{},"元":{"docs":{},"的":{"docs":{},"情":{"docs":{},"况":{"docs":{},",":{"docs":{},"参":{"docs":{},"数":{"docs":{},"及":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"中":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"p":{"docs":{},"o":{"docs":{},"j":{"docs":{},"o":{"docs":{},"均":{"docs":{},"用":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"表":{"docs":{},"示":{"docs":{},",":{"docs":{},"通":{"docs":{},"常":{"docs":{},"用":{"docs":{},"于":{"docs":{},"框":{"docs":{},"架":{"docs":{},"集":{"docs":{},"成":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},":":{"docs":{},"实":{"docs":{},"现":{"docs":{},"一":{"docs":{},"个":{"docs":{},"通":{"docs":{},"用":{"docs":{},"的":{"docs":{},"远":{"docs":{},"程":{"docs":{},"服":{"docs":{},"务":{"docs":{},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"框":{"docs":{},"架":{"docs":{},",":{"docs":{},"可":{"docs":{},"通":{"docs":{},"过":{"docs":{},"实":{"docs":{},"现":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"接":{"docs":{},"口":{"docs":{},"处":{"docs":{},"理":{"docs":{},"所":{"docs":{},"有":{"docs":{},"服":{"docs":{},"务":{"docs":{},"请":{"docs":{},"求":{"docs":{},"。":{"docs":{"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"测":{"docs":{},"试":{"docs":{},"环":{"docs":{},"境":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}},"使":{"docs":{},"用":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}},"分":{"docs":{},"析":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"局":{"docs":{},"限":{"docs":{},"性":{"docs":{},"分":{"docs":{},"析":{"docs":{},"(":{"docs":{},"可":{"docs":{},"选":{"docs":{},")":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}},"目":{"docs":{},"的":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"结":{"docs":{},"果":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"脚":{"docs":{},"本":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"说":{"docs":{},"明":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"覆":{"docs":{},"盖":{"docs":{},"率":{"docs":{},"报":{"docs":{},"告":{"docs":{"coveragence.html":{"ref":"coveragence.html","tf":5.166666666666667}}}}}}}}},"点":{"docs":{},"对":{"docs":{},"点":{"docs":{},"直":{"docs":{},"连":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"测":{"docs":{},"试":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}},"者":{"docs":{},"地":{"docs":{},"址":{"docs":{},",":{"docs":{},"将":{"docs":{},"绕":{"docs":{},"过":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}}}}}}}}}}}}}}}}}},"特":{"docs":{},"殊":{"docs":{},"场":{"docs":{},"景":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}},"使":{"docs":{},"用":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.005235602094240838}}}}}}}},"直":{"docs":{},"连":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/直连提供者.html":{"ref":"demos/直连提供者.html","tf":5}}}}},"监":{"docs":{},"控":{"docs":{},"中":{"docs":{},"心":{"docs":{},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},"地":{"docs":{},"址":{"docs":{},",":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"=":{"docs":{},"\"":{"1":{"0":{"docs":{},".":{"2":{"0":{"docs":{},".":{"1":{"3":{"0":{"docs":{},".":{"2":{"3":{"0":{"docs":{},":":{"1":{"2":{"0":{"8":{"0":{"docs":{},"\"":{"docs":{"reference-xmlconf/dubbo-monitor.html":{"ref":"reference-xmlconf/dubbo-monitor.html","tf":0.03571428571428571}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}},":":{"docs":{"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564}}}},"接":{"docs":{},"对":{"docs":{},"基":{"docs":{},"本":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"验":{"docs":{},"证":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}},"策":{"docs":{},"略":{"docs":{},"成":{"docs":{},"熟":{"docs":{},"度":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}},"粘":{"docs":{},"滞":{"docs":{},"连":{"docs":{},"接":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/粘滞连接.html":{"ref":"demos/粘滞连接.html","tf":5}},",":{"docs":{},"总":{"docs":{},"是":{"docs":{},"向":{"docs":{},"同":{"docs":{},"一":{"docs":{},"个":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"发":{"docs":{},"起":{"docs":{},"请":{"docs":{},"求":{"docs":{},",":{"docs":{},"除":{"docs":{},"非":{"docs":{},"此":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"挂":{"docs":{},"掉":{"docs":{},",":{"docs":{},"再":{"docs":{},"切":{"docs":{},"换":{"docs":{},"到":{"docs":{},"另":{"docs":{},"一":{"docs":{},"台":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"将":{"docs":{},"自":{"docs":{},"动":{"docs":{},"开":{"docs":{},"启":{"docs":{},"延":{"docs":{},"迟":{"docs":{},"连":{"docs":{},"接":{"docs":{},",":{"docs":{},"以":{"docs":{},"减":{"docs":{},"少":{"docs":{},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{},"数":{"docs":{},",":{"docs":{"demos/粘滞连接.html":{"ref":"demos/粘滞连接.html","tf":0.3333333333333333}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"于":{"docs":{},"有":{"docs":{},"状":{"docs":{},"态":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"尽":{"docs":{},"可":{"docs":{},"能":{"docs":{},"让":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"总":{"docs":{},"是":{"docs":{},"向":{"docs":{},"同":{"docs":{},"一":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"发":{"docs":{},"起":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"除":{"docs":{},"非":{"docs":{},"该":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"挂":{"docs":{},"了":{"docs":{},",":{"docs":{},"再":{"docs":{},"连":{"docs":{},"另":{"docs":{},"一":{"docs":{},"台":{"docs":{},"。":{"docs":{"demos/粘滞连接.html":{"ref":"demos/粘滞连接.html","tf":0.3333333333333333}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"纯":{"docs":{},"文":{"docs":{},"本":{"docs":{},",":{"docs":{},"可":{"docs":{},"跨":{"docs":{},"语":{"docs":{},"言":{"docs":{},"解":{"docs":{},"析":{"docs":{},",":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"采":{"docs":{},"用":{"docs":{},"f":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"解":{"docs":{},"析":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}}}}}}}},"线":{"docs":{},"程":{"docs":{},"池":{"docs":{},"不":{"docs":{},"可":{"docs":{},"扩":{"docs":{},"展":{"docs":{},",":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"不":{"docs":{},"能":{"docs":{},"拦":{"docs":{},"截":{"docs":{},"下":{"docs":{},"一":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"可":{"docs":{},"选":{"docs":{},":":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"e":{"docs":{},"d":{"docs":{},"/":{"docs":{},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}},"队":{"docs":{},"列":{"docs":{},"大":{"docs":{},"小":{"docs":{},",":{"docs":{},"当":{"docs":{},"线":{"docs":{},"程":{"docs":{},"池":{"docs":{},"满":{"docs":{},"时":{"docs":{},",":{"docs":{},"排":{"docs":{},"队":{"docs":{},"等":{"docs":{},"待":{"docs":{},"执":{"docs":{},"行":{"docs":{},"的":{"docs":{},"队":{"docs":{},"列":{"docs":{},"大":{"docs":{},"小":{"docs":{},",":{"docs":{},"建":{"docs":{},"议":{"docs":{},"不":{"docs":{},"要":{"docs":{},"设":{"docs":{},"置":{"docs":{},",":{"docs":{},"当":{"docs":{},"线":{"docs":{},"程":{"docs":{},"程":{"docs":{},"池":{"docs":{},"时":{"docs":{},"应":{"docs":{},"立":{"docs":{},"即":{"docs":{},"失":{"docs":{},"败":{"docs":{},",":{"docs":{},"重":{"docs":{},"试":{"docs":{},"其":{"docs":{},"它":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"机":{"docs":{},"器":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"排":{"docs":{},"队":{"docs":{},",":{"docs":{},"除":{"docs":{},"非":{"docs":{},"有":{"docs":{},"特":{"docs":{},"殊":{"docs":{},"需":{"docs":{},"求":{"docs":{},"。":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"模":{"docs":{},"型":{"docs":{"demos/线程模型.html":{"ref":"demos/线程模型.html","tf":5}}}}}},"结":{"docs":{},"果":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}},"缓":{"docs":{},"存":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/结果缓存.html":{"ref":"demos/结果缓存.html","tf":5}},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"加":{"docs":{},"速":{"docs":{},"请":{"docs":{},"求":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}},"热":{"docs":{},"门":{"docs":{},"数":{"docs":{},"据":{"docs":{},"的":{"docs":{},"访":{"docs":{},"问":{"docs":{},"速":{"docs":{},"度":{"docs":{},",":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"提":{"docs":{},"供":{"docs":{},"声":{"docs":{},"明":{"docs":{},"式":{"docs":{},"缓":{"docs":{},"存":{"docs":{},",":{"docs":{},"以":{"docs":{},"减":{"docs":{},"少":{"docs":{},"用":{"docs":{},"户":{"docs":{},"加":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"的":{"docs":{},"工":{"docs":{},"作":{"docs":{},"量":{"docs":{},"。":{"docs":{"demos/结果缓存.html":{"ref":"demos/结果缓存.html","tf":0.058823529411764705}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"尾":{"docs":{},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"通":{"docs":{},"配":{"docs":{},",":{"docs":{},"如":{"docs":{},":":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}},"老":{"docs":{},"牌":{"docs":{},"n":{"docs":{},"i":{"docs":{},"o":{"docs":{},"框":{"docs":{},"架":{"docs":{},",":{"docs":{},"稳":{"docs":{},"定":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}},"版":{"docs":{},"本":{"docs":{},"服":{"docs":{},"务":{"docs":{"demos/多版本.html":{"ref":"demos/多版本.html","tf":0.1111111111111111}}}}}}},"脚":{"docs":{},"本":{"docs":{},"路":{"docs":{},"由":{"docs":{},"规":{"docs":{},"则":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}},"没":{"docs":{},"有":{"docs":{},"沙":{"docs":{},"箱":{"docs":{},"约":{"docs":{},"束":{"docs":{},",":{"docs":{},"可":{"docs":{},"执":{"docs":{},"行":{"docs":{},"任":{"docs":{},"意":{"docs":{},"代":{"docs":{},"码":{"docs":{},",":{"docs":{},"存":{"docs":{},"在":{"docs":{},"后":{"docs":{},"门":{"docs":{},"风":{"docs":{},"险":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}}}}}}}},"要":{"docs":{},"求":{"docs":{},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},"时":{"docs":{},"间":{"docs":{},"同":{"docs":{},"步":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"检":{"docs":{},"查":{"docs":{},"心":{"docs":{},"跳":{"docs":{},"过":{"docs":{},"期":{"docs":{},"脏":{"docs":{},"数":{"docs":{},"据":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}}}},"访":{"docs":{},"问":{"docs":{},"日":{"docs":{},"志":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/访问日志.html":{"ref":"demos/访问日志.html","tf":5}},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"记":{"docs":{},"录":{"docs":{},"调":{"docs":{},"用":{"docs":{},"信":{"docs":{},"息":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}},"试":{"docs":{},"用":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.05235602094240838}}}},"路":{"docs":{},"由":{"docs":{},"规":{"docs":{},"则":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":5}},"扩":{"docs":{},"展":{"docs":{},"点":{"docs":{},":":{"docs":{},"路":{"docs":{},"由":{"docs":{},"扩":{"docs":{},"展":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}},"的":{"docs":{},"优":{"docs":{},"先":{"docs":{},"级":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"排":{"docs":{},"序":{"docs":{},",":{"docs":{},"优":{"docs":{},"先":{"docs":{},"级":{"docs":{},"越":{"docs":{},"大":{"docs":{},"越":{"docs":{},"靠":{"docs":{},"前":{"docs":{},"执":{"docs":{},"行":{"docs":{},",":{"docs":{},"可":{"docs":{},"不":{"docs":{},"填":{"docs":{},",":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"为":{"0":{"docs":{},"。":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"参":{"docs":{},"数":{"docs":{},"值":{"docs":{"reference-xmlconf/dubbo-parameter.html":{"ref":"reference-xmlconf/dubbo-parameter.html","tf":0.038461538461538464}}},"键":{"docs":{"reference-xmlconf/dubbo-parameter.html":{"ref":"reference-xmlconf/dubbo-parameter.html","tf":0.038461538461538464}}}}}},"径":{"docs":{},"对":{"docs":{},"应":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"(":{"docs":{},")":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"未":{"docs":{},"设":{"docs":{},"置":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},",":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"为":{"docs":{},"接":{"docs":{},"口":{"docs":{},"名":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"轮":{"docs":{},"循":{"docs":{},",":{"docs":{},"按":{"docs":{},"公":{"docs":{},"约":{"docs":{},"后":{"docs":{},"的":{"docs":{},"权":{"docs":{},"重":{"docs":{},"设":{"docs":{},"置":{"docs":{},"轮":{"docs":{},"循":{"docs":{},"比":{"docs":{},"率":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}},"。":{"docs":{"demos/负载均衡.html":{"ref":"demos/负载均衡.html","tf":0.041666666666666664}}}}}}}}}}}}}}}}}}},"速":{"docs":{},"度":{"docs":{},"慢":{"docs":{},",":{"docs":{},"任":{"docs":{},"意":{"docs":{},"一":{"docs":{},"台":{"docs":{},"报":{"docs":{},"错":{"docs":{},"则":{"docs":{},"报":{"docs":{},"错":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}},"采":{"docs":{},"用":{"docs":{},"n":{"docs":{},"i":{"docs":{},"o":{"docs":{},"复":{"docs":{},"用":{"docs":{},"单":{"docs":{},"一":{"docs":{},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{},",":{"docs":{},"并":{"docs":{},"使":{"docs":{},"用":{"docs":{},"线":{"docs":{},"程":{"docs":{},"池":{"docs":{},"并":{"docs":{},"发":{"docs":{},"处":{"docs":{},"理":{"docs":{},"请":{"docs":{},"求":{"docs":{},",":{"docs":{},"减":{"docs":{},"少":{"docs":{},"握":{"docs":{},"手":{"docs":{},"和":{"docs":{},"加":{"docs":{},"大":{"docs":{},"并":{"docs":{},"发":{"docs":{},"效":{"docs":{},"率":{"docs":{},",":{"docs":{},"性":{"docs":{},"能":{"docs":{},"较":{"docs":{},"好":{"docs":{},"(":{"docs":{},"推":{"docs":{},"荐":{"docs":{},"使":{"docs":{},"用":{"docs":{},")":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"的":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},"实":{"docs":{},"现":{"docs":{"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353}}}}}}}}}}}}}}}}}}}}}}}},"重":{"docs":{},"试":{"docs":{},"会":{"docs":{},"带":{"docs":{},"来":{"docs":{},"更":{"docs":{},"长":{"docs":{},"延":{"docs":{},"迟":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}}}}},"次":{"docs":{},"数":{"docs":{},"配":{"docs":{},"置":{"docs":{},"如":{"docs":{},":":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}}}},"附":{"docs":{},"加":{"docs":{},"参":{"docs":{},"数":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419}}}}}},"隐":{"docs":{},"式":{"docs":{},"传":{"docs":{},"参":{"docs":{"maturity/maturity.html":{"ref":"maturity/maturity.html","tf":0.002617801047120419},"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}},"上":{"docs":{},"图":{"docs":{},"中":{"docs":{},"以":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"为":{"docs":{},"例":{"docs":{},",":{"docs":{},"显":{"docs":{},"示":{"docs":{},"了":{"docs":{},"配":{"docs":{},"置":{"docs":{},"的":{"docs":{},"查":{"docs":{},"找":{"docs":{},"顺":{"docs":{},"序":{"docs":{},",":{"docs":{},"其":{"docs":{},"它":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"下":{"docs":{},"文":{"docs":{},"中":{"docs":{},"存":{"docs":{},"放":{"docs":{},"的":{"docs":{},"是":{"docs":{},"当":{"docs":{},"前":{"docs":{},"调":{"docs":{},"用":{"docs":{},"过":{"docs":{},"程":{"docs":{},"中":{"docs":{},"所":{"docs":{},"需":{"docs":{},"的":{"docs":{},"环":{"docs":{},"境":{"docs":{},"信":{"docs":{},"息":{"docs":{},"。":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904}}}}}}}}}}}}}}}}}}}}}},"信":{"docs":{},"息":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":5}}}},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}}},"述":{"docs":{},"场":{"docs":{},"景":{"docs":{},"在":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"1":{"docs":{},".":{"0":{"docs":{},"\\":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"2":{"docs":{},".":{"0":{"docs":{},"(":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"2":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},")":{"docs":{},"\\":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"2":{"docs":{},".":{"0":{"docs":{},"(":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},")":{"docs":{},"\\":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"\\":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"3":{"docs":{},".":{"2":{"docs":{},".":{"0":{"docs":{},"\\":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"(":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},")":{"docs":{},"进":{"docs":{},"行":{"1":{"0":{"docs":{},"分":{"docs":{},"钟":{"docs":{},"的":{"docs":{},"性":{"docs":{},"能":{"docs":{},"测":{"docs":{},"试":{"docs":{},"。":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}}}},"docs":{}}}}}}}}}},"docs":{}}},"docs":{}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}}},"协":{"docs":{},"议":{"docs":{},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"配":{"docs":{},"置":{"docs":{},"提":{"docs":{},"供":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"协":{"docs":{},"议":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"协":{"docs":{},"议":{"docs":{},"由":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"指":{"docs":{},"定":{"docs":{},",":{"docs":{},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},"被":{"docs":{},"动":{"docs":{},"接":{"docs":{},"受":{"docs":{},"。":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"demos/本地调用.html":{"ref":"demos/本地调用.html","tf":0.0625}}},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"d":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}},"名":{"docs":{},"称":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},"方":{"docs":{},"式":{"docs":{},",":{"docs":{},"当":{"docs":{},"协":{"docs":{},"议":{"docs":{},"支":{"docs":{},"持":{"docs":{},"多":{"docs":{},"种":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},"方":{"docs":{},"式":{"docs":{},"时":{"docs":{},"使":{"docs":{},"用":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},":":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},",":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"2":{"docs":{},",":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},",":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},",":{"docs":{},"以":{"docs":{},"及":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"等":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805}}},",":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"等":{"docs":{"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"实":{"docs":{},"现":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},":":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},",":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},"等":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},"端":{"docs":{},"实":{"docs":{},"现":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},":":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},",":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},"等":{"docs":{},",":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"j":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},",":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"等":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"端":{"docs":{},"和":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"实":{"docs":{},"现":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},":":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},",":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},"等":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"分":{"docs":{},"拆":{"docs":{},"为":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"和":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"配":{"docs":{},"置":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"消":{"docs":{},"息":{"docs":{},"派":{"docs":{},"发":{"docs":{},"方":{"docs":{},"式":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"指":{"docs":{},"定":{"docs":{},"线":{"docs":{},"程":{"docs":{},"模":{"docs":{},"型":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},":":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},",":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"上":{"docs":{},"下":{"docs":{},"文":{"docs":{},"路":{"docs":{},"径":{"docs":{},"必":{"docs":{},"须":{"docs":{},"与":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"应":{"docs":{},"用":{"docs":{},"的":{"docs":{},"上":{"docs":{},"下":{"docs":{},"文":{"docs":{},"路":{"docs":{},"径":{"docs":{},"相":{"docs":{},"同":{"docs":{},"。":{"docs":{"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}}}}}}}}}}}}}}}}}}}}}},"端":{"docs":{},"口":{"docs":{},"必":{"docs":{},"须":{"docs":{},"与":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"容":{"docs":{},"器":{"docs":{},"的":{"docs":{},"端":{"docs":{},"口":{"docs":{},"相":{"docs":{},"同":{"docs":{},",":{"docs":{"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}}}}}}}}}}}}}}}}},"编":{"docs":{},"码":{"docs":{},"方":{"docs":{},"式":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}},"参":{"docs":{},"考":{"docs":{},"手":{"docs":{},"册":{"docs":{"reference-protocol/introduction.html":{"ref":"reference-protocol/introduction.html","tf":5}}}}}},":":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549},"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.05128205128205128}}},"是":{"docs":{},"对":{"docs":{"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":0.04}}}}}},"应":{"docs":{},"用":{"docs":{},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"配":{"docs":{},"置":{"docs":{},"当":{"docs":{},"前":{"docs":{},"应":{"docs":{},"用":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"不":{"docs":{},"管":{"docs":{},"该":{"docs":{},"应":{"docs":{},"用":{"docs":{},"是":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"还":{"docs":{},"是":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"。":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"负":{"docs":{},"责":{"docs":{},"人":{"docs":{},"、":{"docs":{},"组":{"docs":{},"织":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}},"信":{"docs":{},"息":{"docs":{},"配":{"docs":{},"置":{"docs":{},":":{"docs":{},"配":{"docs":{},"置":{"docs":{},"类":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},".":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"环":{"docs":{},"境":{"docs":{},",":{"docs":{},"如":{"docs":{},":":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{},"/":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"/":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},",":{"docs":{},"不":{"docs":{},"同":{"docs":{},"环":{"docs":{},"境":{"docs":{},"使":{"docs":{},"用":{"docs":{},"不":{"docs":{},"同":{"docs":{},"的":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"值":{"docs":{},",":{"docs":{},"以":{"docs":{},"及":{"docs":{},"作":{"docs":{},"为":{"docs":{},"只":{"docs":{},"用":{"docs":{},"于":{"docs":{},"开":{"docs":{},"发":{"docs":{},"测":{"docs":{},"试":{"docs":{},"功":{"docs":{},"能":{"docs":{},"的":{"docs":{},"限":{"docs":{},"制":{"docs":{},"条":{"docs":{},"件":{"docs":{"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"负":{"docs":{},"责":{"docs":{},"人":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"服":{"docs":{},"务":{"docs":{},"治":{"docs":{},"理":{"docs":{},",":{"docs":{},"请":{"docs":{},"填":{"docs":{},"写":{"docs":{},"负":{"docs":{},"责":{"docs":{},"人":{"docs":{},"公":{"docs":{},"司":{"docs":{},"邮":{"docs":{},"箱":{"docs":{},"前":{"docs":{},"缀":{"docs":{"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176}}}}}}}}}}}}}}}}}}}}}}}}},"名":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}},"建":{"docs":{},"议":{"docs":{},"由":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"设":{"docs":{},"置":{"docs":{},"超":{"docs":{},"时":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},"需":{"docs":{},"要":{"docs":{},"执":{"docs":{},"行":{"docs":{},"多":{"docs":{},"长":{"docs":{},"时":{"docs":{},"间":{"docs":{},",":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"更":{"docs":{},"清":{"docs":{},"楚":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"一":{"docs":{},"个":{"docs":{},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},"同":{"docs":{},"时":{"docs":{},"引":{"docs":{},"用":{"docs":{},"多":{"docs":{},"个":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"就":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"关":{"docs":{},"心":{"docs":{},"每":{"docs":{},"个":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"超":{"docs":{},"时":{"docs":{},"设":{"docs":{},"置":{"docs":{},"。":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"不":{"docs":{},"要":{"docs":{},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"让":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"自":{"docs":{},"动":{"docs":{},"获":{"docs":{},"取":{"docs":{},"本":{"docs":{},"机":{"docs":{},"i":{"docs":{},"p":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805}}}}}}}}}}}}}}}}}}}}},"使":{"docs":{},"用":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}},"两":{"docs":{},"位":{"docs":{},"版":{"docs":{},"本":{"docs":{},"号":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"第":{"docs":{},"三":{"docs":{},"位":{"docs":{},"版":{"docs":{},"本":{"docs":{},"号":{"docs":{},"通":{"docs":{},"常":{"docs":{},"表":{"docs":{},"示":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"升":{"docs":{},"级":{"docs":{},",":{"docs":{},"只":{"docs":{},"有":{"docs":{},"不":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"时":{"docs":{},"才":{"docs":{},"需":{"docs":{},"要":{"docs":{},"变":{"docs":{},"更":{"docs":{},"服":{"docs":{},"务":{"docs":{},"版":{"docs":{},"本":{"docs":{},"。":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"异":{"docs":{},"常":{"docs":{},"汇":{"docs":{},"报":{"docs":{},"错":{"docs":{},"误":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"返":{"docs":{},"回":{"docs":{},"错":{"docs":{},"误":{"docs":{},"码":{"docs":{},",":{"docs":{},"异":{"docs":{},"常":{"docs":{},"信":{"docs":{},"息":{"docs":{},"能":{"docs":{},"携":{"docs":{},"带":{"docs":{},"更":{"docs":{},"多":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"以":{"docs":{},"及":{"docs":{},"语":{"docs":{},"义":{"docs":{},"更":{"docs":{},"友":{"docs":{},"好":{"docs":{},",":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"将":{"docs":{},"服":{"docs":{},"务":{"docs":{},"接":{"docs":{},"口":{"docs":{},",":{"docs":{},"服":{"docs":{},"务":{"docs":{},"模":{"docs":{},"型":{"docs":{},",":{"docs":{},"服":{"docs":{},"务":{"docs":{},"异":{"docs":{},"常":{"docs":{},"等":{"docs":{},"均":{"docs":{},"放":{"docs":{},"在":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"包":{"docs":{},"中":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"服":{"docs":{},"务":{"docs":{},"模":{"docs":{},"型":{"docs":{},"及":{"docs":{},"异":{"docs":{},"常":{"docs":{},"也":{"docs":{},"是":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"的":{"docs":{},"一":{"docs":{},"部":{"docs":{},"分":{"docs":{},",":{"docs":{},"同":{"docs":{},"时":{"docs":{},",":{"docs":{},"这":{"docs":{},"样":{"docs":{},"做":{"docs":{},"也":{"docs":{},"符":{"docs":{},"合":{"docs":{},"分":{"docs":{},"包":{"docs":{},"原":{"docs":{},"则":{"docs":{},":":{"docs":{},"重":{"docs":{},"用":{"docs":{},"发":{"docs":{},"布":{"docs":{},"等":{"docs":{},"价":{"docs":{},"原":{"docs":{},"则":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},")":{"docs":{},",":{"docs":{},"共":{"docs":{},"同":{"docs":{},"重":{"docs":{},"用":{"docs":{},"原":{"docs":{},"则":{"docs":{},"(":{"docs":{},"c":{"docs":{},"r":{"docs":{},"p":{"docs":{},")":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"引":{"docs":{},"用":{"docs":{"demos/服务分组.html":{"ref":"demos/服务分组.html","tf":0.2}},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"远":{"docs":{},"程":{"docs":{},"服":{"docs":{},"务":{"docs":{},"代":{"docs":{},"理":{"docs":{},",":{"docs":{},"一":{"docs":{},"个":{"docs":{},"引":{"docs":{},"用":{"docs":{},"可":{"docs":{},"以":{"docs":{},"指":{"docs":{},"向":{"docs":{},"多":{"docs":{},"个":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"。":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"远":{"docs":{},"程":{"docs":{},"服":{"docs":{},"务":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.010638297872340425},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}},"缺":{"docs":{},"省":{"docs":{},"是":{"docs":{},"延":{"docs":{},"迟":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"的":{"docs":{},",":{"docs":{},"只":{"docs":{},"有":{"docs":{},"引":{"docs":{},"用":{"docs":{},"被":{"docs":{},"注":{"docs":{},"入":{"docs":{},"到":{"docs":{},"其":{"docs":{},"它":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},",":{"docs":{},"或":{"docs":{},"被":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},"获":{"docs":{},"取":{"docs":{},",":{"docs":{},"才":{"docs":{},"会":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"。":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"新":{"docs":{},"版":{"docs":{},"本":{"docs":{"demos/多版本.html":{"ref":"demos/多版本.html","tf":0.1111111111111111}}}}},"老":{"docs":{},"版":{"docs":{},"本":{"docs":{"demos/多版本.html":{"ref":"demos/多版本.html","tf":0.1111111111111111}}}}}}},"或":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.06666666666666667},"demos/负载均衡.html":{"ref":"demos/负载均衡.html","tf":0.125},"demos/本地调用.html":{"ref":"demos/本地调用.html","tf":0.0625},"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818},"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332},"demos/并发控制.html":{"ref":"demos/并发控制.html","tf":0.2},"demos/连接控制.html":{"ref":"demos/连接控制.html","tf":0.14285714285714285},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258},"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.02631578947368421},"reference-registry/multicast.html":{"ref":"reference-registry/multicast.html","tf":0.18181818181818182},"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.0625}},":":{"docs":{"demos/结果缓存.html":{"ref":"demos/结果缓存.html","tf":0.058823529411764705},"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.07894736842105263}},"(":{"2":{"docs":{},".":{"1":{"docs":{},".":{"0":{"docs":{},"开":{"docs":{},"始":{"docs":{},"支":{"docs":{},"持":{"docs":{},")":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}},"docs":{}}},"docs":{}}},"docs":{},"通":{"docs":{},"过":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"下":{"docs":{},"的":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"配":{"docs":{},"置":{"docs":{},"传":{"docs":{},"入":{"docs":{},"要":{"docs":{},"加":{"docs":{},"载":{"docs":{},"的":{"docs":{},"容":{"docs":{},"器":{"docs":{},")":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"v":{"docs":{},"m":{"docs":{},"启":{"docs":{},"动":{"docs":{},"参":{"docs":{},"数":{"docs":{},"传":{"docs":{},"入":{"docs":{},"要":{"docs":{},"加":{"docs":{},"载":{"docs":{},"的":{"docs":{},"容":{"docs":{},"器":{"docs":{},")":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"函":{"docs":{},"数":{"docs":{},"参":{"docs":{},"数":{"docs":{},"传":{"docs":{},"入":{"docs":{},"要":{"docs":{},"加":{"docs":{},"载":{"docs":{},"的":{"docs":{},"容":{"docs":{},"器":{"docs":{},")":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}}}}}}}}}}}}}}}}}}}},"者":{"docs":{"demos/只订阅.html":{"ref":"demos/只订阅.html","tf":0.25},"demos/只注册.html":{"ref":"demos/只注册.html","tf":0.25},"demos/静态服务.html":{"ref":"demos/静态服务.html","tf":0.07142857142857142},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805}},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"用":{"docs":{},"标":{"docs":{},"准":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},"用":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"的":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"协":{"docs":{},"议":{"docs":{},"调":{"docs":{},"用":{"docs":{},"。":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},"用":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"的":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"协":{"docs":{},"议":{"docs":{},"调":{"docs":{},"用":{"docs":{},"。":{"docs":{"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},"用":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"的":{"docs":{},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"协":{"docs":{},"议":{"docs":{},"调":{"docs":{},"用":{"docs":{},"。":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"点":{"docs":{},"对":{"docs":{},"点":{"docs":{},"直":{"docs":{},"连":{"docs":{},":":{"docs":{"reference-protocol/memcached.html":{"ref":"reference-protocol/memcached.html","tf":0.047619047619047616},"reference-protocol/redis.html":{"ref":"reference-protocol/redis.html","tf":0.05}}}}}}}}},":":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}},"在":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"中":{"docs":{},"加":{"docs":{},"入":{"docs":{},"主":{"docs":{},"机":{"docs":{},"地":{"docs":{},"址":{"docs":{},"的":{"docs":{},"配":{"docs":{},"置":{"docs":{},":":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"直":{"docs":{},"接":{"docs":{},"下":{"docs":{},"载":{"docs":{},":":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"o":{"1":{"docs":{},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"2":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},"/":{"docs":{},"s":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"u":{"docs":{},"p":{"docs":{},"f":{"docs":{},"/":{"docs":{},"z":{"docs":{},"k":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"f":{"docs":{},"l":{"docs":{},"i":{"docs":{},"x":{"docs":{},"/":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"/":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"/":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}},"所":{"docs":{},"有":{"docs":{},"标":{"docs":{},"签":{"docs":{},"者":{"docs":{},"支":{"docs":{},"持":{"docs":{},"自":{"docs":{},"定":{"docs":{},"义":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"不":{"docs":{},"同":{"docs":{},"扩":{"docs":{},"展":{"docs":{},"点":{"docs":{},"实":{"docs":{},"现":{"docs":{},"的":{"docs":{},"特":{"docs":{},"殊":{"docs":{},"配":{"docs":{},"置":{"docs":{},"。":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}}}}}}}}}}}}}}}}}}}}},"消":{"docs":{},"息":{"docs":{},"都":{"docs":{},"不":{"docs":{},"派":{"docs":{},"发":{"docs":{},"到":{"docs":{},"线":{"docs":{},"程":{"docs":{},"池":{"docs":{},",":{"docs":{},"全":{"docs":{},"部":{"docs":{},"在":{"docs":{},"i":{"docs":{},"o":{"docs":{},"线":{"docs":{},"程":{"docs":{},"上":{"docs":{},"直":{"docs":{},"接":{"docs":{},"执":{"docs":{},"行":{"docs":{},"。":{"docs":{"demos/线程模型.html":{"ref":"demos/线程模型.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}},"派":{"docs":{},"发":{"docs":{},"到":{"docs":{},"线":{"docs":{},"程":{"docs":{},"池":{"docs":{},",":{"docs":{},"包":{"docs":{},"括":{"docs":{},"请":{"docs":{},"求":{"docs":{},",":{"docs":{},"响":{"docs":{},"应":{"docs":{},",":{"docs":{},"连":{"docs":{},"接":{"docs":{},"事":{"docs":{},"件":{"docs":{},",":{"docs":{},"断":{"docs":{},"开":{"docs":{},"事":{"docs":{},"件":{"docs":{},",":{"docs":{},"心":{"docs":{},"跳":{"docs":{},"等":{"docs":{},"。":{"docs":{"demos/线程模型.html":{"ref":"demos/线程模型.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"服":{"docs":{},"务":{"docs":{},"自":{"docs":{},"动":{"docs":{},"实":{"docs":{},"现":{"docs":{},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"接":{"docs":{},"口":{"docs":{},",":{"docs":{},"只":{"docs":{},"需":{"docs":{},"将":{"docs":{},"任":{"docs":{},"意":{"docs":{},"服":{"docs":{},"务":{"docs":{},"引":{"docs":{},"用":{"docs":{},"强":{"docs":{},"制":{"docs":{},"转":{"docs":{},"型":{"docs":{},"为":{"docs":{},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{},"即":{"docs":{},"可":{"docs":{},"使":{"docs":{},"用":{"docs":{},"。":{"docs":{"demos/回声测试.html":{"ref":"demos/回声测试.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"共":{"docs":{},"用":{"docs":{},"一":{"docs":{},"个":{"docs":{},"端":{"docs":{},"口":{"docs":{},":":{"docs":{},"(":{"docs":{},"与":{"docs":{},"原":{"docs":{},"生":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"不":{"docs":{},"兼":{"docs":{},"容":{"docs":{},")":{"docs":{"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":0.04}}}}}}}}}}}}}}}}}}}}}}}}},"配":{"docs":{},"置":{"docs":{},"信":{"docs":{},"息":{"docs":{},"都":{"docs":{},"将":{"docs":{},"转":{"docs":{},"换":{"docs":{},"为":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"参":{"docs":{},"见":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904}}}}}}}}}}}}}}}}}},"最":{"docs":{},"终":{"docs":{},"都":{"docs":{},"将":{"docs":{},"转":{"docs":{},"换":{"docs":{},"为":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"表":{"docs":{},"示":{"docs":{},",":{"docs":{},"并":{"docs":{},"由":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"生":{"docs":{},"成":{"docs":{},",":{"docs":{},"经":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"传":{"docs":{},"递":{"docs":{},"给":{"docs":{},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},",":{"docs":{},"各":{"docs":{},"属":{"docs":{},"性":{"docs":{},"对":{"docs":{},"应":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"参":{"docs":{},"见":{"docs":{},"配":{"docs":{},"置":{"docs":{},"项":{"docs":{},"一":{"docs":{},"览":{"docs":{},"表":{"docs":{},"中":{"docs":{},"的":{"docs":{},"\"":{"docs":{},"对":{"docs":{},"应":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"参":{"docs":{},"数":{"docs":{},"\"":{"docs":{},"列":{"docs":{},"。":{"docs":{"reference-xmlconf/introduction.html":{"ref":"reference-xmlconf/introduction.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"项":{"docs":{},"分":{"docs":{},"为":{"docs":{},"三":{"docs":{},"大":{"docs":{},"类":{"docs":{},",":{"docs":{},"参":{"docs":{},"见":{"docs":{},"下":{"docs":{},"表":{"docs":{},"中":{"docs":{},"的":{"docs":{},"\"":{"docs":{},"作":{"docs":{},"用":{"docs":{},"\"":{"docs":{},"一":{"docs":{},"列":{"docs":{},"。":{"docs":{"reference-xmlconf/introduction.html":{"ref":"reference-xmlconf/introduction.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}},"支":{"docs":{},"持":{"docs":{},"的":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"命":{"docs":{},"令":{"docs":{},",":{"docs":{},"多":{"docs":{},"个":{"docs":{},"命":{"docs":{},"令":{"docs":{},"用":{"docs":{},"逗":{"docs":{},"号":{"docs":{},"分":{"docs":{},"隔":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}}}}}}}},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"的":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"值":{"docs":{},",":{"docs":{},"当":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"和":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"某":{"docs":{},"属":{"docs":{},"性":{"docs":{},"没":{"docs":{},"有":{"docs":{},"配":{"docs":{},"置":{"docs":{},"时":{"docs":{},",":{"docs":{},"采":{"docs":{},"用":{"docs":{},"此":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"值":{"docs":{},",":{"docs":{},"可":{"docs":{},"选":{"docs":{},"。":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"启":{"docs":{},"动":{"docs":{},"时":{"docs":{},"广":{"docs":{},"播":{"docs":{},"自":{"docs":{},"己":{"docs":{},"的":{"docs":{},"地":{"docs":{},"址":{"docs":{},"。":{"docs":{"reference-registry/multicast.html":{"ref":"reference-registry/multicast.html","tf":0.09090909090909091}}}}}}}}}}}}},"收":{"docs":{},"到":{"docs":{},"订":{"docs":{},"阅":{"docs":{},"请":{"docs":{},"求":{"docs":{},"时":{"docs":{},",":{"docs":{},"单":{"docs":{},"播":{"docs":{},"自":{"docs":{},"己":{"docs":{},"的":{"docs":{},"地":{"docs":{},"址":{"docs":{},"给":{"docs":{},"订":{"docs":{},"阅":{"docs":{},"者":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"设":{"docs":{},"置":{"docs":{},"了":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{},"则":{"docs":{},"广":{"docs":{},"播":{"docs":{},"给":{"docs":{},"订":{"docs":{},"阅":{"docs":{},"者":{"docs":{},"。":{"docs":{"reference-registry/multicast.html":{"ref":"reference-registry/multicast.html","tf":0.09090909090909091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"者":{"docs":{},"与":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"部":{"docs":{},"署":{"docs":{},"在":{"docs":{},"同":{"docs":{},"集":{"docs":{},"群":{"docs":{},"内":{"docs":{},",":{"docs":{},"本":{"docs":{},"机":{"docs":{},"只":{"docs":{},"访":{"docs":{},"问":{"docs":{},"本":{"docs":{},"机":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},":":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}}}}}}}},"上":{"docs":{},"下":{"docs":{},"文":{"docs":{},"路":{"docs":{},"径":{"docs":{},",":{"docs":{},"为":{"docs":{},"服":{"docs":{},"务":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"的":{"docs":{},"前":{"docs":{},"缀":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}},"用":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"的":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"协":{"docs":{},"议":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"直":{"docs":{},"接":{"docs":{},"用":{"docs":{},"标":{"docs":{},"准":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"接":{"docs":{},"口":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"协":{"docs":{},"议":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"直":{"docs":{},"接":{"docs":{},"用":{"docs":{},"标":{"docs":{},"准":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"接":{"docs":{},"口":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"协":{"docs":{},"议":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"直":{"docs":{},"接":{"docs":{},"用":{"docs":{},"标":{"docs":{},"准":{"docs":{},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"接":{"docs":{},"口":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"列":{"docs":{},"表":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"文":{"docs":{},"件":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}},"端":{"docs":{},"特":{"docs":{},"定":{"docs":{},"接":{"docs":{},"口":{"docs":{},"的":{"docs":{},"配":{"docs":{},"置":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"配":{"docs":{},"置":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}},"方":{"docs":{},"法":{"docs":{},"级":{"docs":{},"优":{"docs":{},"先":{"docs":{},",":{"docs":{},"接":{"docs":{},"口":{"docs":{},"级":{"docs":{},"次":{"docs":{},"之":{"docs":{},",":{"docs":{},"全":{"docs":{},"局":{"docs":{},"配":{"docs":{},"置":{"docs":{},"再":{"docs":{},"次":{"docs":{},"之":{"docs":{},"。":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}}}}}}}}}}}},"设":{"docs":{},"置":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}},"配":{"docs":{},"置":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}},":":{"docs":{},"配":{"docs":{},"置":{"docs":{},"类":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},".":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},".":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"说":{"docs":{},"明":{"docs":{},":":{"docs":{},"该":{"docs":{},"标":{"docs":{},"签":{"docs":{},"为":{"docs":{},"|":{"docs":{},"或":{"docs":{},"|":{"docs":{},"的":{"docs":{},"子":{"docs":{},"标":{"docs":{},"签":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"控":{"docs":{},"制":{"docs":{},"到":{"docs":{},"方":{"docs":{},"法":{"docs":{},"级":{"docs":{},",":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"别":{"docs":{},"优":{"docs":{},"于":{"docs":{},"接":{"docs":{},"口":{"docs":{},"级":{"docs":{},"别":{"docs":{},",":{"docs":{},"即":{"docs":{},"小":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"优":{"docs":{},"先":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"和":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"指":{"docs":{},"定":{"docs":{},"方":{"docs":{},"法":{"docs":{},"级":{"docs":{},"的":{"docs":{},"配":{"docs":{},"置":{"docs":{},"信":{"docs":{},"息":{"docs":{},"。":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"名":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761},"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421}},"建":{"docs":{},"议":{"docs":{},"和":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"d":{"docs":{},"的":{"docs":{},"标":{"docs":{},"准":{"docs":{},"方":{"docs":{},"法":{"docs":{},"名":{"docs":{},"相":{"docs":{},"同":{"docs":{},",":{"docs":{},"即":{"docs":{},":":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},")":{"docs":{},",":{"docs":{"reference-protocol/memcached.html":{"ref":"reference-protocol/memcached.html","tf":0.047619047619047616}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"的":{"docs":{},"标":{"docs":{},"准":{"docs":{},"方":{"docs":{},"法":{"docs":{},"名":{"docs":{},"相":{"docs":{},"同":{"docs":{},",":{"docs":{},"即":{"docs":{},":":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},")":{"docs":{},",":{"docs":{"reference-protocol/redis.html":{"ref":"reference-protocol/redis.html","tf":0.05}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"执":{"docs":{},"行":{"docs":{},"前":{"docs":{},"拦":{"docs":{},"截":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}},"有":{"docs":{},"异":{"docs":{},"常":{"docs":{},"拦":{"docs":{},"截":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}},"返":{"docs":{},"回":{"docs":{},"后":{"docs":{},"拦":{"docs":{},"截":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}}}},"调":{"docs":{},"用":{"docs":{},"是":{"docs":{},"否":{"docs":{},"需":{"docs":{},"要":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},",":{"docs":{},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"设":{"docs":{},"置":{"docs":{},"为":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"时":{"docs":{},"才":{"docs":{},"生":{"docs":{},"效":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"设":{"docs":{},"置":{"docs":{},"为":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},",":{"docs":{},"则":{"docs":{},"返":{"docs":{},"回":{"docs":{},"f":{"docs":{},"u":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},",":{"docs":{},"或":{"docs":{},"回":{"docs":{},"调":{"docs":{},"o":{"docs":{},"n":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"等":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"设":{"docs":{},"置":{"docs":{},"为":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{},"则":{"docs":{},"请":{"docs":{},"求":{"docs":{},"发":{"docs":{},"送":{"docs":{},"成":{"docs":{},"功":{"docs":{},"后":{"docs":{},"直":{"docs":{},"接":{"docs":{},"返":{"docs":{},"回":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"超":{"docs":{},"时":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}},"时":{"docs":{},"间":{"docs":{},"(":{"docs":{},"毫":{"docs":{},"秒":{"docs":{},")":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}}}}}}},"参":{"docs":{},"数":{"docs":{},"配":{"docs":{},"置":{"docs":{},":":{"docs":{},"配":{"docs":{},"置":{"docs":{},"类":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},".":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},".":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"说":{"docs":{},"明":{"docs":{},":":{"docs":{},"该":{"docs":{},"标":{"docs":{},"签":{"docs":{},"为":{"docs":{},"|":{"docs":{},"的":{"docs":{},"子":{"docs":{},"标":{"docs":{},"签":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"方":{"docs":{},"法":{"docs":{},"参":{"docs":{},"数":{"docs":{},"的":{"docs":{},"特":{"docs":{},"征":{"docs":{},"描":{"docs":{},"述":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},":":{"docs":{"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"模":{"docs":{},"块":{"docs":{},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"配":{"docs":{},"置":{"docs":{},"当":{"docs":{},"前":{"docs":{},"模":{"docs":{},"块":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"可":{"docs":{},"选":{"docs":{},"。":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}}}}}}}}}}}},"信":{"docs":{},"息":{"docs":{},"配":{"docs":{},"置":{"docs":{},":":{"docs":{"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.02564102564102564}}}}}}},"负":{"docs":{},"责":{"docs":{},"人":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"服":{"docs":{},"务":{"docs":{},"治":{"docs":{},"理":{"docs":{},",":{"docs":{},"请":{"docs":{},"填":{"docs":{},"写":{"docs":{},"负":{"docs":{},"责":{"docs":{},"人":{"docs":{},"公":{"docs":{},"司":{"docs":{},"邮":{"docs":{},"箱":{"docs":{},"前":{"docs":{},"缀":{"docs":{"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.02564102564102564}}}}}}}}}}}}}}}}}}}}}}}}}},"型":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}}},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"当":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"某":{"docs":{},"属":{"docs":{},"性":{"docs":{},"没":{"docs":{},"有":{"docs":{},"配":{"docs":{},"置":{"docs":{},"时":{"docs":{},",":{"docs":{},"采":{"docs":{},"用":{"docs":{},"此":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"值":{"docs":{},",":{"docs":{},"可":{"docs":{},"选":{"docs":{},"。":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"启":{"docs":{},"动":{"docs":{},"时":{"docs":{},"广":{"docs":{},"播":{"docs":{},"订":{"docs":{},"阅":{"docs":{},"请":{"docs":{},"求":{"docs":{},"。":{"docs":{"reference-registry/multicast.html":{"ref":"reference-registry/multicast.html","tf":0.09090909090909091}}}}}}}}}}}},"收":{"docs":{},"到":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"地":{"docs":{},"址":{"docs":{},"时":{"docs":{},",":{"docs":{},"连":{"docs":{},"接":{"docs":{},"该":{"docs":{},"地":{"docs":{},"址":{"docs":{},"进":{"docs":{},"行":{"docs":{},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},"调":{"docs":{},"用":{"docs":{},"。":{"docs":{"reference-registry/multicast.html":{"ref":"reference-registry/multicast.html","tf":0.09090909090909091}}}}}}}}}}}}}}}}}}}}}}}}},"者":{"docs":{},"启":{"docs":{},"动":{"docs":{},"时":{"docs":{},",":{"docs":{},"没":{"docs":{},"有":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"是":{"docs":{},"否":{"docs":{},"抛":{"docs":{},"异":{"docs":{},"常":{"docs":{},"f":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}},"端":{"docs":{},",":{"docs":{},"最":{"docs":{},"大":{"docs":{},"并":{"docs":{},"发":{"docs":{},"调":{"docs":{},"用":{"docs":{},"限":{"docs":{},"制":{"docs":{},",":{"docs":{},"即":{"docs":{},"当":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"对":{"docs":{},"一":{"docs":{},"个":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"并":{"docs":{},"发":{"docs":{},"调":{"docs":{},"用":{"docs":{},"到":{"docs":{},"上":{"docs":{},"限":{"docs":{},"后":{"docs":{},",":{"docs":{},"新":{"docs":{},"调":{"docs":{},"用":{"docs":{},"会":{"docs":{},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"直":{"docs":{},"到":{"docs":{},"超":{"docs":{},"时":{"docs":{},"。":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"除":{"docs":{},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"中":{"docs":{},"的":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},",":{"docs":{},"销":{"docs":{},"毁":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"并":{"docs":{},"释":{"docs":{},"放":{"docs":{},"对":{"docs":{},"应":{"docs":{},"的":{"docs":{},"资":{"docs":{},"源":{"docs":{},"。":{"docs":{"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.02127659574468085}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"示":{"docs":{},"例":{"docs":{},":":{"docs":{"configuration/xml.html":{"ref":"configuration/xml.html","tf":0.027777777777777776},"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762},"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421},"recommend.html":{"ref":"recommend.html","tf":0.018867924528301886}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"/":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":0.04}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"代":{"docs":{},"码":{"docs":{},":":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"/":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{"demos/结果缓存.html":{"ref":"demos/结果缓存.html","tf":0.058823529411764705}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"典":{"docs":{},"型":{"docs":{},"配":{"docs":{},"置":{"docs":{},"如":{"docs":{},":":{"docs":{"configuration/properties.html":{"ref":"configuration/properties.html","tf":0.045454545454545456}}}}}}}},"将":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"配":{"docs":{},"置":{"docs":{},"的":{"docs":{},"标":{"docs":{},"签":{"docs":{},"名":{"docs":{},",":{"docs":{},"加":{"docs":{},"属":{"docs":{},"性":{"docs":{},"名":{"docs":{},",":{"docs":{},"用":{"docs":{},"点":{"docs":{},"分":{"docs":{},"隔":{"docs":{},",":{"docs":{},"多":{"docs":{},"个":{"docs":{},"属":{"docs":{},"性":{"docs":{},"拆":{"docs":{},"成":{"docs":{},"多":{"docs":{},"行":{"docs":{},":":{"docs":{"configuration/properties.html":{"ref":"configuration/properties.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"访":{"docs":{},"问":{"docs":{},"日":{"docs":{},"志":{"docs":{},"输":{"docs":{},"出":{"docs":{},"到":{"docs":{},"当":{"docs":{},"前":{"docs":{},"应":{"docs":{},"用":{"docs":{},"的":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"4":{"docs":{},"j":{"docs":{},"日":{"docs":{},"志":{"docs":{},":":{"docs":{"demos/访问日志.html":{"ref":"demos/访问日志.html","tf":0.25}}}}}}},"docs":{}}}}}}}}},"指":{"docs":{},"定":{"docs":{},"文":{"docs":{},"件":{"docs":{},":":{"docs":{"demos/访问日志.html":{"ref":"demos/访问日志.html","tf":0.25}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0392156862745098}}}}}}}},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},".":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}}}}}}}}}}}}}}}}}}}},"自":{"docs":{},"己":{"docs":{},"的":{"docs":{},"b":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},"工":{"docs":{},"程":{"docs":{},"打":{"docs":{},"成":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{},"包":{"docs":{},",":{"docs":{},"如":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},".":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"属":{"docs":{},"性":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258},"reference-xmlconf/dubbo-monitor.html":{"ref":"reference-xmlconf/dubbo-monitor.html","tf":0.03571428571428571},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176},"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.02564102564102564},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761},"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421},"reference-xmlconf/dubbo-parameter.html":{"ref":"reference-xmlconf/dubbo-parameter.html","tf":0.038461538461538464}},"配":{"docs":{},"置":{"docs":{"configuration/properties.html":{"ref":"configuration/properties.html","tf":5}}}},"(":{"docs":{},"或":{"docs":{},"者":{"docs":{},"说":{"docs":{},"类":{"docs":{},"b":{"docs":{},"少":{"docs":{},"一":{"docs":{},"种":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}}},")":{"docs":{},"|":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}},"改":{"docs":{},"变":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"配":{"docs":{},"置":{"docs":{},"位":{"docs":{},"置":{"docs":{},"。":{"docs":{"configuration/properties.html":{"ref":"configuration/properties.html","tf":0.045454545454545456}}}}}}},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"当":{"docs":{},"设":{"docs":{},"置":{"docs":{},"了":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"凡":{"docs":{},"是":{"docs":{},"需":{"docs":{},"要":{"docs":{},"输":{"docs":{},"入":{"docs":{},"服":{"docs":{},"务":{"docs":{},"名":{"docs":{},"作":{"docs":{},"为":{"docs":{},"参":{"docs":{},"数":{"docs":{},"的":{"docs":{},"命":{"docs":{},"令":{"docs":{},",":{"docs":{},"都":{"docs":{},"可":{"docs":{},"以":{"docs":{},"省":{"docs":{},"略":{"docs":{},"服":{"docs":{},"务":{"docs":{},"参":{"docs":{},"数":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"映":{"docs":{},"射":{"docs":{},"规":{"docs":{},"则":{"docs":{},":":{"docs":{"configuration/properties.html":{"ref":"configuration/properties.html","tf":0.045454545454545456}}}}}}},"比":{"docs":{},"如":{"docs":{},":":{"docs":{"reference-xmlconf/dubbo-parameter.html":{"ref":"reference-xmlconf/dubbo-parameter.html","tf":0.038461538461538464}},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"=":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"等":{"docs":{},"价":{"docs":{},"于":{"docs":{"configuration/properties.html":{"ref":"configuration/properties.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},".":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},".":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"=":{"1":{"2":{"3":{"4":{"docs":{},"等":{"docs":{},"价":{"docs":{},"于":{"docs":{},"(":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"i":{"docs":{},"d":{"docs":{},"没":{"docs":{},"配":{"docs":{},"时":{"docs":{},",":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"使":{"docs":{},"用":{"docs":{},"协":{"docs":{},"议":{"docs":{},"名":{"docs":{},"作":{"docs":{},"为":{"docs":{},"i":{"docs":{},"d":{"docs":{},")":{"docs":{"configuration/properties.html":{"ref":"configuration/properties.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"=":{"1":{"0":{"docs":{},".":{"2":{"0":{"docs":{},".":{"1":{"5":{"3":{"docs":{},".":{"1":{"0":{"docs":{},":":{"9":{"0":{"9":{"0":{"docs":{},"等":{"docs":{},"价":{"docs":{},"于":{"docs":{"configuration/properties.html":{"ref":"configuration/properties.html","tf":0.045454545454545456}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"=":{"1":{"0":{"docs":{},".":{"2":{"0":{"docs":{},".":{"1":{"5":{"3":{"docs":{},".":{"1":{"0":{"docs":{},":":{"9":{"0":{"9":{"0":{"docs":{},"等":{"docs":{},"价":{"docs":{},"于":{"docs":{"configuration/properties.html":{"ref":"configuration/properties.html","tf":0.045454545454545456}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"不":{"docs":{},"同":{"docs":{},"服":{"docs":{},"务":{"docs":{},"在":{"docs":{},"性":{"docs":{},"能":{"docs":{},"上":{"docs":{},"适":{"docs":{},"用":{"docs":{},"不":{"docs":{},"同":{"docs":{},"协":{"docs":{},"议":{"docs":{},"进":{"docs":{},"行":{"docs":{},"传":{"docs":{},"输":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"大":{"docs":{},"数":{"docs":{},"据":{"docs":{},"用":{"docs":{},"短":{"docs":{},"连":{"docs":{},"接":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"小":{"docs":{},"数":{"docs":{},"据":{"docs":{},"大":{"docs":{},"并":{"docs":{},"发":{"docs":{},"用":{"docs":{},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{},"协":{"docs":{},"议":{"docs":{"demos/多协议.html":{"ref":"demos/多协议.html","tf":0.1111111111111111}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"需":{"docs":{},"要":{"docs":{},"与":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"互":{"docs":{},"操":{"docs":{},"作":{"docs":{"demos/多协议.html":{"ref":"demos/多协议.html","tf":0.1111111111111111}}}}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"m":{"docs":{},"有":{"docs":{},"些":{"docs":{},"服":{"docs":{},"务":{"docs":{},"是":{"docs":{},"专":{"docs":{},"门":{"docs":{},"为":{"docs":{},"国":{"docs":{},"际":{"docs":{},"站":{"docs":{},"设":{"docs":{},"计":{"docs":{},"的":{"docs":{},",":{"docs":{},"有":{"docs":{},"些":{"docs":{},"服":{"docs":{},"务":{"docs":{},"是":{"docs":{},"专":{"docs":{},"门":{"docs":{},"为":{"docs":{},"中":{"docs":{},"文":{"docs":{},"站":{"docs":{},"设":{"docs":{},"计":{"docs":{},"的":{"docs":{},"。":{"docs":{"demos/多注册中心.html":{"ref":"demos/多注册中心.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"需":{"docs":{},"同":{"docs":{},"时":{"docs":{},"调":{"docs":{},"用":{"docs":{},"中":{"docs":{},"文":{"docs":{},"站":{"docs":{},"和":{"docs":{},"国":{"docs":{},"际":{"docs":{},"站":{"docs":{},"的":{"docs":{},"p":{"docs":{},"c":{"2":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"p":{"docs":{},"c":{"2":{"docs":{},"在":{"docs":{},"中":{"docs":{},"文":{"docs":{},"站":{"docs":{},"和":{"docs":{},"国":{"docs":{},"际":{"docs":{},"站":{"docs":{},"均":{"docs":{},"有":{"docs":{},"部":{"docs":{},"署":{"docs":{},",":{"docs":{},"接":{"docs":{},"口":{"docs":{},"及":{"docs":{},"版":{"docs":{},"本":{"docs":{},"号":{"docs":{},"都":{"docs":{},"一":{"docs":{},"样":{"docs":{},",":{"docs":{},"但":{"docs":{},"连":{"docs":{},"的":{"docs":{},"数":{"docs":{},"据":{"docs":{},"库":{"docs":{},"不":{"docs":{},"一":{"docs":{},"样":{"docs":{},"。":{"docs":{"demos/多注册中心.html":{"ref":"demos/多注册中心.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}},"中":{"docs":{},"文":{"docs":{},"站":{"docs":{},"有":{"docs":{},"些":{"docs":{},"服":{"docs":{},"务":{"docs":{},"来":{"docs":{},"不":{"docs":{},"及":{"docs":{},"在":{"docs":{},"青":{"docs":{},"岛":{"docs":{},"部":{"docs":{},"署":{"docs":{},",":{"docs":{},"只":{"docs":{},"在":{"docs":{},"杭":{"docs":{},"州":{"docs":{},"部":{"docs":{},"署":{"docs":{},",":{"docs":{},"而":{"docs":{},"青":{"docs":{},"岛":{"docs":{},"的":{"docs":{},"其":{"docs":{},"它":{"docs":{},"应":{"docs":{},"用":{"docs":{},"需":{"docs":{},"要":{"docs":{},"引":{"docs":{},"用":{"docs":{},"此":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"就":{"docs":{},"可":{"docs":{},"以":{"docs":{},"将":{"docs":{},"服":{"docs":{},"务":{"docs":{},"同":{"docs":{},"时":{"docs":{},"注":{"docs":{},"册":{"docs":{},"到":{"docs":{},"两":{"docs":{},"个":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"。":{"docs":{"demos/多注册中心.html":{"ref":"demos/多注册中心.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"调":{"docs":{},"b":{"docs":{},",":{"docs":{},"b":{"docs":{},"再":{"docs":{},"调":{"docs":{},"c":{"docs":{},",":{"docs":{},"则":{"docs":{},"b":{"docs":{},"机":{"docs":{},"器":{"docs":{},"上":{"docs":{},",":{"docs":{},"在":{"docs":{},"b":{"docs":{},"调":{"docs":{},"c":{"docs":{},"之":{"docs":{},"前":{"docs":{},",":{"docs":{},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"记":{"docs":{},"录":{"docs":{},"的":{"docs":{},"是":{"docs":{},"a":{"docs":{},"调":{"docs":{},"b":{"docs":{},"的":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"在":{"docs":{},"b":{"docs":{},"调":{"docs":{},"c":{"docs":{},"之":{"docs":{},"后":{"docs":{},",":{"docs":{},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"记":{"docs":{},"录":{"docs":{},"的":{"docs":{},"是":{"docs":{},"b":{"docs":{},"调":{"docs":{},"c":{"docs":{},"的":{"docs":{},"信":{"docs":{},"息":{"docs":{},"。":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}},"覆":{"docs":{},"盖":{"docs":{},"策":{"docs":{},"略":{"docs":{},":":{"docs":{"configuration/properties.html":{"ref":"configuration/properties.html","tf":0.045454545454545456}}}}},"规":{"docs":{},"则":{"docs":{},"是":{"docs":{},"否":{"docs":{},"生":{"docs":{},"效":{"docs":{},",":{"docs":{},"可":{"docs":{},"不":{"docs":{},"填":{"docs":{},",":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"生":{"docs":{},"效":{"docs":{},"。":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762},"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}}}}},".":{"docs":{},".":{"docs":{},".":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.026595744680851064},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.013422818791946308},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818},"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.047619047619047616},"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762},"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.02127659574468085}},".":{"docs":{},".":{"docs":{},".":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.029411764705882353},"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.02127659574468085}}}}}}},"]":{"docs":{},"[":{"docs":{},"a":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}}},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761},"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421}}}},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}}},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"i":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}}},"/":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.017543859649122806}},"/":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.13829787234042554},"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.029411764705882353},"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.04804804804804805},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.06040268456375839},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.09090909090909091},"demos/回声测试.html":{"ref":"demos/回声测试.html","tf":0.13636363636363635},"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.17857142857142858},"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.17391304347826086},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.017045454545454544},"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.09090909090909091},"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.041666666666666664},"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.06382978723404255}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421}}}}}},"*":{"docs":{"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}},":":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"/":{"docs":{},"s":{"docs":{},"d":{"docs":{},"a":{"docs":{},":":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}},"=":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.06914893617021277},"demos/静态服务.html":{"ref":"demos/静态服务.html","tf":0.14285714285714285},"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.05405405405405406},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.0738255033557047},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.03636363636363636},"demos/回声测试.html":{"ref":"demos/回声测试.html","tf":0.13636363636363635},"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.08333333333333333},"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.08695652173913043},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.022727272727272728},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.04827586206896552},"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818},"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.041666666666666664},"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.10952380952380952},"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.05263157894736842},"demos/服务降级.html":{"ref":"demos/服务降级.html","tf":0.1},"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.1276595744680851},"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.017543859649122806},"reference-protocol/memcached.html":{"ref":"reference-protocol/memcached.html","tf":0.09523809523809523},"reference-protocol/redis.html":{"ref":"reference-protocol/redis.html","tf":0.1},"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}},">":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.07142857142857142}}}},"e":{"5":{"5":{"2":{"0":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"s":{"docs":{},"b":{"docs":{},",":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"demos/线程模型.html":{"ref":"demos/线程模型.html","tf":0.045454545454545456},"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761},"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"demos/静态服务.html":{"ref":"demos/静态服务.html","tf":0.07142857142857142},"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762},"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421},"demos/服务降级.html":{"ref":"demos/服务降级.html","tf":0.05},"reference-protocol/memcached.html":{"ref":"reference-protocol/memcached.html","tf":0.047619047619047616},"reference-protocol/redis.html":{"ref":"reference-protocol/redis.html","tf":0.05}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"/":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"g":{"docs":{"demos/分组聚合.html":{"ref":"demos/分组聚合.html","tf":0.07692307692307693}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"demos/结果缓存.html":{"ref":"demos/结果缓存.html","tf":0.058823529411764705}}}},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}},"p":{"docs":{},"i":{"docs":{},"r":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.009009009009009009}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"reference-registry/simple.html":{"ref":"reference-registry/simple.html","tf":0.09090909090909091}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}},")":{"docs":{},";":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}},",":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.013793103448275862}}},"i":{"docs":{},"t":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}},":":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}},")":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003},"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818},"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}}},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},")":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.009009009009009009}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"i":{"docs":{},"d":{"docs":{},",":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"demos/回声测试.html":{"ref":"demos/回声测试.html","tf":0.09090909090909091}},"e":{"docs":{},".":{"docs":{},"$":{"docs":{},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"o":{"docs":{},"k":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"demos/回声测试.html":{"ref":"demos/回声测试.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}},"y":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762},"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.029411764705882353},"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}},"t":{"docs":{},"h":{"0":{"docs":{},":":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"docs":{}}}},"和":{"docs":{"demos/并发控制.html":{"ref":"demos/并发控制.html","tf":0.06666666666666667},"demos/连接控制.html":{"ref":"demos/连接控制.html","tf":0.14285714285714285}},"本":{"docs":{},"地":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"一":{"docs":{},"样":{"docs":{},"使":{"docs":{},"用":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}}}}}},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"包":{"docs":{},"放":{"docs":{},"到":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"目":{"docs":{},"录":{"docs":{},"下":{"docs":{"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"多":{"docs":{},"个":{"docs":{},"协":{"docs":{},"议":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}}}}}},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.010638297872340425}}}}}}}}}}}}}}}}}}}}}}}}},"协":{"docs":{},"议":{"docs":{"demos/多协议.html":{"ref":"demos/多协议.html","tf":5}},"暴":{"docs":{},"露":{"docs":{},"服":{"docs":{},"务":{"docs":{"demos/多协议.html":{"ref":"demos/多协议.html","tf":0.1111111111111111}}}}}}}},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{"demos/多注册中心.html":{"ref":"demos/多注册中心.html","tf":5}},"引":{"docs":{},"用":{"docs":{"demos/多注册中心.html":{"ref":"demos/多注册中心.html","tf":0.06666666666666667}}}},"注":{"docs":{},"册":{"docs":{"demos/多注册中心.html":{"ref":"demos/多注册中心.html","tf":0.06666666666666667}}}}}}}},"版":{"docs":{},"本":{"docs":{"demos/多版本.html":{"ref":"demos/多版本.html","tf":5}}}},"出":{"docs":{},"来":{"docs":{},"的":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"进":{"docs":{},"行":{"docs":{},"传":{"docs":{},"输":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}}},"端":{"docs":{},"口":{"docs":{},":":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403},"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549},"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564}}}}}},"设":{"docs":{},"置":{"docs":{"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564}},"方":{"docs":{},"法":{"docs":{},"级":{"docs":{},"配":{"docs":{},"置":{"docs":{"configuration/api.html":{"ref":"configuration/api.html","tf":0.005319148936170213}}}}}}},"服":{"docs":{},"务":{"docs":{},"协":{"docs":{},"议":{"docs":{},":":{"docs":{"demos/本地调用.html":{"ref":"demos/本地调用.html","tf":0.0625}}},":":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403},"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}}}},"默":{"docs":{},"认":{"docs":{},"协":{"docs":{},"议":{"docs":{},":":{"docs":{"demos/本地调用.html":{"ref":"demos/本地调用.html","tf":0.0625}}},":":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403},"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549},"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564}}}}}}},"优":{"docs":{},"雅":{"docs":{},"停":{"docs":{},"机":{"docs":{},"超":{"docs":{},"时":{"docs":{},"时":{"docs":{},"间":{"docs":{},",":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"超":{"docs":{},"时":{"docs":{},"时":{"docs":{},"间":{"docs":{},"是":{"1":{"0":{"docs":{},"秒":{"docs":{},":":{"docs":{},"(":{"docs":{},"超":{"docs":{},"时":{"docs":{},"则":{"docs":{},"强":{"docs":{},"制":{"docs":{},"关":{"docs":{},"闭":{"docs":{},")":{"docs":{"demos/优雅停机.html":{"ref":"demos/优雅停机.html","tf":0.07142857142857142}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"登":{"docs":{},"录":{"docs":{},"信":{"docs":{},"息":{"docs":{},"。":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}},"的":{"docs":{},"根":{"docs":{},"节":{"docs":{},"点":{"docs":{},",":{"docs":{},"不":{"docs":{},"设":{"docs":{},"置":{"docs":{},"将":{"docs":{},"使":{"docs":{},"用":{"docs":{},"无":{"docs":{},"根":{"docs":{},"树":{"docs":{},"。":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"中":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"的":{"docs":{},"前":{"docs":{},"缀":{"docs":{},",":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"为":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"。":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}},"集":{"docs":{},"群":{"docs":{},"策":{"docs":{},"略":{"docs":{},",":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"为":{"docs":{},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"。":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}},"为":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},",":{"docs":{},"将":{"docs":{},"向":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"中":{"docs":{},"输":{"docs":{},"出":{"docs":{},"访":{"docs":{},"问":{"docs":{},"日":{"docs":{},"志":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"填":{"docs":{},"写":{"docs":{},"访":{"docs":{},"问":{"docs":{},"日":{"docs":{},"志":{"docs":{},"文":{"docs":{},"件":{"docs":{},"路":{"docs":{},"径":{"docs":{},",":{"docs":{},"直":{"docs":{},"接":{"docs":{},"把":{"docs":{},"访":{"docs":{},"问":{"docs":{},"日":{"docs":{},"志":{"docs":{},"输":{"docs":{},"出":{"docs":{},"到":{"docs":{},"指":{"docs":{},"定":{"docs":{},"文":{"docs":{},"件":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"表":{"docs":{},"示":{"docs":{},"使":{"docs":{},"用":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"类":{"docs":{},"名":{"docs":{},",":{"docs":{},"即":{"docs":{},":":{"docs":{},"接":{"docs":{},"口":{"docs":{},"名":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}},"代":{"docs":{},"理":{"docs":{},"类":{"docs":{},"名":{"docs":{},",":{"docs":{},"即":{"docs":{},":":{"docs":{},"接":{"docs":{},"口":{"docs":{},"名":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}}}}}}}}},"@":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.029411764705882353}}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"=":{"docs":{},"\"":{"1":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{},"\"":{"docs":{},")":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.029411764705882353}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"=":{"docs":{},"\"":{"1":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{},"\"":{"docs":{},")":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.029411764705882353}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"(":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}},"f":{"docs":{},"u":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"s":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},")":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.009009009009009009}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"(":{"1":{"0":{"0":{"docs":{},")":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}},"docs":{}},"docs":{}},"docs":{}}}},"i":{"docs":{},"n":{"docs":{},"(":{"1":{"8":{"docs":{},")":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}},"docs":{}},"docs":{}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}},"l":{"docs":{},"(":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}}}}},"{":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.058823529411764705},"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.05405405405405406},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.04697986577181208},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.05454545454545454},"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.023809523809523808},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.07954545454545454},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.04827586206896552},"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.09090909090909091},"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.08333333333333333},"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.009523809523809525},"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}},"\"":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},".":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"\"":{"docs":{},"}":{"docs":{},",":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{},"\"":{"docs":{},"}":{"docs":{},")":{"docs":{},";":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}}},"}":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.058823529411764705},"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.05405405405405406},"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.03355704697986577},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.05454545454545454},"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.023809523809523808},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.07954545454545454},"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.04827586206896552},"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.09090909090909091},"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.08333333333333333},"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762},"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}},")":{"docs":{},";":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.011363636363636364}}}},",":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},":":{"docs":{},"(":{"docs":{},"等":{"docs":{},"价":{"docs":{},"于":{"docs":{},"前":{"docs":{},"面":{"docs":{},"的":{"docs":{},":":{"docs":{},")":{"docs":{"configuration/annotation.html":{"ref":"configuration/annotation.html","tf":0.029411764705882353}}}}}}}}}}}},"自":{"docs":{},"定":{"docs":{},"义":{"docs":{},"接":{"docs":{},"口":{"docs":{},":":{"docs":{"reference-protocol/memcached.html":{"ref":"reference-protocol/memcached.html","tf":0.047619047619047616},"reference-protocol/redis.html":{"ref":"reference-protocol/redis.html","tf":0.05}}}}}}}}}},"用":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"配":{"docs":{},"置":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"reference-xmlconf/dubbo-parameter.html":{"ref":"reference-xmlconf/dubbo-parameter.html","tf":0.038461538461538464}}}},"在":{"docs":{},"服":{"docs":{},"务":{"docs":{},"级":{"docs":{},"别":{"docs":{},"设":{"docs":{},"置":{"docs":{},":":{"docs":{"demos/令牌验证.html":{"ref":"demos/令牌验证.html","tf":0.16666666666666666}}}}}}}}}}}},"关":{"docs":{},"闭":{"docs":{},"所":{"docs":{},"有":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"启":{"docs":{},"动":{"docs":{},"时":{"docs":{},"检":{"docs":{},"查":{"docs":{},":":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}}}}}}}}}}}}},"某":{"docs":{},"个":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"启":{"docs":{},"动":{"docs":{},"时":{"docs":{},"检":{"docs":{},"查":{"docs":{},":":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}}}}}}}}}}}}},"检":{"docs":{},"查":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},",":{"docs":{},"测":{"docs":{},"试":{"docs":{},"时":{"docs":{},",":{"docs":{},"有":{"docs":{},"些":{"docs":{},"服":{"docs":{},"务":{"docs":{},"不":{"docs":{},"关":{"docs":{},"心":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"出":{"docs":{},"现":{"docs":{},"了":{"docs":{},"循":{"docs":{},"环":{"docs":{},"依":{"docs":{},"赖":{"docs":{},",":{"docs":{},"必":{"docs":{},"须":{"docs":{},"有":{"docs":{},"一":{"docs":{},"方":{"docs":{},"先":{"docs":{},"启":{"docs":{},"动":{"docs":{},"。":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"启":{"docs":{},"动":{"docs":{},"时":{"docs":{},"检":{"docs":{},"查":{"docs":{},":":{"docs":{"demos/启动时检查.html":{"ref":"demos/启动时检查.html","tf":0.030303030303030304}}}}}}}}}}}}},"联":{"docs":{},"验":{"docs":{},"证":{"docs":{},"示":{"docs":{},"例":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}},"键":{"docs":{},"参":{"docs":{},"数":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}},"各":{"docs":{},"节":{"docs":{},"点":{"docs":{},"关":{"docs":{},"系":{"docs":{},":":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"性":{"docs":{},"能":{"docs":{},"情":{"docs":{},"况":{"docs":{},",":{"docs":{},"请":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},"性":{"docs":{},"能":{"docs":{},"测":{"docs":{},"试":{"docs":{},"报":{"docs":{},"告":{"docs":{"reference-protocol/introduction.html":{"ref":"reference-protocol/introduction.html","tf":0.3333333333333333}}}}}}}}}}}}}}}}},"兼":{"docs":{},"容":{"docs":{},"性":{"docs":{},"不":{"docs":{},"同":{"docs":{},",":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}},"来":{"docs":{},"设":{"docs":{},"置":{"docs":{},"最":{"docs":{},"大":{"docs":{},"并":{"docs":{},"行":{"docs":{},"数":{"docs":{},"。":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}},"重":{"docs":{},"试":{"docs":{},"次":{"docs":{},"数":{"docs":{},"(":{"docs":{},"不":{"docs":{},"含":{"docs":{},"第":{"docs":{},"一":{"docs":{},"次":{"docs":{},")":{"docs":{},"。":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}}}}}}}}}}},"集":{"docs":{},"群":{"docs":{},"容":{"docs":{},"错":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":5}},"模":{"docs":{},"式":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}},"模":{"docs":{},"式":{"docs":{},"配":{"docs":{},"置":{"docs":{},"如":{"docs":{},":":{"docs":{"demos/集群容错.html":{"ref":"demos/集群容错.html","tf":0.022222222222222223}}}}}}}},"方":{"docs":{},"式":{"docs":{},",":{"docs":{},"可":{"docs":{},"选":{"docs":{},":":{"docs":{},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"f":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"/":{"docs":{},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{},"e":{"docs":{},"/":{"docs":{},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"/":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"成":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"桥":{"docs":{},"接":{"docs":{},"各":{"docs":{},"种":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"实":{"docs":{},"现":{"docs":{},"。":{"docs":{"demos/结果缓存.html":{"ref":"demos/结果缓存.html","tf":0.058823529411764705}}}}}}}}}}}}}}}},"使":{"docs":{},"慢":{"docs":{},"的":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"收":{"docs":{},"到":{"docs":{},"更":{"docs":{},"少":{"docs":{},"请":{"docs":{},"求":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"越":{"docs":{},"慢":{"docs":{},"的":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"的":{"docs":{},"调":{"docs":{},"用":{"docs":{},"前":{"docs":{},"后":{"docs":{},"计":{"docs":{},"数":{"docs":{},"差":{"docs":{},"会":{"docs":{},"越":{"docs":{},"大":{"docs":{},"。":{"docs":{"demos/负载均衡.html":{"ref":"demos/负载均衡.html","tf":0.041666666666666664}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"1":{"2":{"docs":{},"台":{"docs":{},"网":{"docs":{},"站":{"docs":{},"标":{"docs":{},"配":{"docs":{},"机":{"docs":{},"器":{"docs":{},"提":{"docs":{},"供":{"docs":{},"服":{"docs":{},"务":{"docs":{},"(":{"8":{"docs":{},"核":{"docs":{},"c":{"docs":{},"p":{"docs":{},"u":{"docs":{},",":{"8":{"docs":{},"g":{"docs":{},"内":{"docs":{},"存":{"docs":{},")":{"docs":{"capacity-plan.html":{"ref":"capacity-plan.html","tf":0.09090909090909091}}}}}}},"docs":{}}}}}}},"docs":{}}}}}}}}}}}}}},"docs":{}},"8":{"docs":{},"台":{"docs":{},"网":{"docs":{},"站":{"docs":{},"标":{"docs":{},"配":{"docs":{},"机":{"docs":{},"器":{"docs":{},"提":{"docs":{},"供":{"docs":{},"服":{"docs":{},"务":{"docs":{},"(":{"8":{"docs":{},"核":{"docs":{},"c":{"docs":{},"p":{"docs":{},"u":{"docs":{},",":{"8":{"docs":{},"g":{"docs":{},"内":{"docs":{},"存":{"docs":{},")":{"docs":{"capacity-plan.html":{"ref":"capacity-plan.html","tf":0.09090909090909091}}}}}}},"docs":{}}}}}}},"docs":{}}}}}}}}}}}}}},"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"对":{"docs":{},"象":{"docs":{"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.02127659574468085}}}}}}}}}}}}}},"方":{"docs":{},"式":{"docs":{},"如":{"docs":{},"下":{"docs":{},":":{"docs":{"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.02127659574468085}}}}}}},"指":{"docs":{},"定":{"docs":{},"的":{"docs":{},"协":{"docs":{},"议":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"在":{"docs":{},"多":{"docs":{},"协":{"docs":{},"议":{"docs":{},"时":{"docs":{},"使":{"docs":{},"用":{"docs":{},",":{"docs":{},"值":{"docs":{},"为":{"docs":{},"的":{"docs":{},"i":{"docs":{},"d":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"多":{"docs":{},"个":{"docs":{},"协":{"docs":{},"议":{"docs":{},"i":{"docs":{},"d":{"docs":{},"用":{"docs":{},"逗":{"docs":{},"号":{"docs":{},"分":{"docs":{},"隔":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"文":{"docs":{},"件":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"地":{"docs":{},"址":{"docs":{},"列":{"docs":{},"表":{"docs":{},"及":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"列":{"docs":{},"表":{"docs":{},",":{"docs":{},"应":{"docs":{},"用":{"docs":{},"重":{"docs":{},"启":{"docs":{},"时":{"docs":{},"将":{"docs":{},"基":{"docs":{},"于":{"docs":{},"此":{"docs":{},"文":{"docs":{},"件":{"docs":{},"恢":{"docs":{},"复":{"docs":{},",":{"docs":{},"注":{"docs":{},"意":{"docs":{},":":{"docs":{},"两":{"docs":{},"个":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"不":{"docs":{},"能":{"docs":{},"使":{"docs":{},"用":{"docs":{},"同":{"docs":{},"一":{"docs":{},"文":{"docs":{},"件":{"docs":{},"存":{"docs":{},"储":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"的":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"结":{"docs":{},"构":{"docs":{},"存":{"docs":{},"储":{"docs":{},"数":{"docs":{},"据":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}}}},"p":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{},"/":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"事":{"docs":{},"件":{"docs":{},"通":{"docs":{},"知":{"docs":{},"数":{"docs":{},"据":{"docs":{},"变":{"docs":{},"更":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"如":{"docs":{},":":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"n":{"docs":{},"的":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"监":{"docs":{},"控":{"docs":{},"项":{"docs":{},"监":{"docs":{},"控":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"上":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"的":{"docs":{},"产":{"docs":{},"品":{"docs":{},"授":{"docs":{},"权":{"docs":{},"服":{"docs":{},"务":{"docs":{},"项":{"docs":{},"目":{"docs":{"capacity-plan.html":{"ref":"capacity-plan.html","tf":0.09090909090909091}}}}}}}}}},"会":{"docs":{},"员":{"docs":{},"服":{"docs":{},"务":{"docs":{},"项":{"docs":{},"目":{"docs":{"capacity-plan.html":{"ref":"capacity-plan.html","tf":0.09090909090909091}}}}}}}}}}}}}},"固":{"docs":{},"定":{"docs":{},"端":{"docs":{},"口":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"要":{"docs":{},"使":{"docs":{},"用":{"docs":{},"随":{"docs":{},"机":{"docs":{},"端":{"docs":{},"口":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}},"算":{"docs":{},"法":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"e":{"docs":{},"n":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"k":{"docs":{},"i":{"docs":{},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"a":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"docs":{},"w":{"docs":{},"i":{"docs":{},"k":{"docs":{},"i":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"。":{"docs":{"demos/负载均衡.html":{"ref":"demos/负载均衡.html","tf":0.041666666666666664}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"负":{"docs":{},"载":{"docs":{},"均":{"docs":{},"衡":{"docs":{"demos/负载均衡.html":{"ref":"demos/负载均衡.html","tf":5}},"策":{"docs":{},"略":{"docs":{},",":{"docs":{},"可":{"docs":{},"选":{"docs":{},"值":{"docs":{},":":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{},",":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},",":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},",":{"docs":{},"分":{"docs":{},"别":{"docs":{},"表":{"docs":{},"示":{"docs":{},":":{"docs":{},"随":{"docs":{},"机":{"docs":{},",":{"docs":{},"轮":{"docs":{},"循":{"docs":{},",":{"docs":{},"最":{"docs":{},"少":{"docs":{},"活":{"docs":{},"跃":{"docs":{},"调":{"docs":{},"用":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"算":{"docs":{},"法":{"docs":{},"(":{"docs":{},"有":{"docs":{},"多":{"docs":{},"个":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"时":{"docs":{},",":{"docs":{},"如":{"docs":{},"何":{"docs":{},"挑":{"docs":{},"选":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"调":{"docs":{},"用":{"docs":{},")":{"docs":{},",":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"是":{"docs":{},"随":{"docs":{},"机":{"docs":{},"(":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{},")":{"docs":{},"。":{"docs":{},"还":{"docs":{},"可":{"docs":{},"以":{"docs":{},"有":{"docs":{},"轮":{"docs":{},"询":{"docs":{},"(":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},"、":{"docs":{},"最":{"docs":{},"不":{"docs":{},"活":{"docs":{},"跃":{"docs":{},"优":{"docs":{},"先":{"docs":{},"(":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},",":{"docs":{},"指":{"docs":{},"从":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"端":{"docs":{},"并":{"docs":{},"发":{"docs":{},"调":{"docs":{},"用":{"docs":{},"最":{"docs":{},"好":{"docs":{},"的":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"减":{"docs":{},"少":{"docs":{},"的":{"docs":{},"反":{"docs":{},"应":{"docs":{},"慢":{"docs":{},"的":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"反":{"docs":{},"应":{"docs":{},"更":{"docs":{},"容":{"docs":{},"易":{"docs":{},"累":{"docs":{},"积":{"docs":{},"并":{"docs":{},"发":{"docs":{},"的":{"docs":{},"调":{"docs":{},"用":{"docs":{},")":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"只":{"docs":{},"有":{"docs":{},"请":{"docs":{},"求":{"docs":{},"响":{"docs":{},"应":{"docs":{},"消":{"docs":{},"息":{"docs":{},"派":{"docs":{},"发":{"docs":{},"到":{"docs":{},"线":{"docs":{},"程":{"docs":{},"池":{"docs":{},",":{"docs":{},"其":{"docs":{},"它":{"docs":{},"连":{"docs":{},"接":{"docs":{},"断":{"docs":{},"开":{"docs":{},"事":{"docs":{},"件":{"docs":{},",":{"docs":{},"心":{"docs":{},"跳":{"docs":{},"等":{"docs":{},"消":{"docs":{},"息":{"docs":{},",":{"docs":{},"直":{"docs":{},"接":{"docs":{},"在":{"docs":{},"i":{"docs":{},"o":{"docs":{},"线":{"docs":{},"程":{"docs":{},"上":{"docs":{},"执":{"docs":{},"行":{"docs":{},"。":{"docs":{"demos/线程模型.html":{"ref":"demos/线程模型.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"请":{"docs":{},"求":{"docs":{},"消":{"docs":{},"息":{"docs":{},"派":{"docs":{},"发":{"docs":{},"到":{"docs":{},"线":{"docs":{},"程":{"docs":{},"池":{"docs":{},",":{"docs":{},"不":{"docs":{},"含":{"docs":{},"响":{"docs":{},"应":{"docs":{},",":{"docs":{},"响":{"docs":{},"应":{"docs":{},"和":{"docs":{},"其":{"docs":{},"它":{"docs":{},"连":{"docs":{},"接":{"docs":{},"断":{"docs":{},"开":{"docs":{},"事":{"docs":{},"件":{"docs":{},",":{"docs":{},"心":{"docs":{},"跳":{"docs":{},"等":{"docs":{},"消":{"docs":{},"息":{"docs":{},",":{"docs":{},"直":{"docs":{},"接":{"docs":{},"在":{"docs":{},"i":{"docs":{},"o":{"docs":{},"线":{"docs":{},"程":{"docs":{},"上":{"docs":{},"执":{"docs":{},"行":{"docs":{},"。":{"docs":{"demos/线程模型.html":{"ref":"demos/线程模型.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"订":{"docs":{},"阅":{"docs":{"demos/只订阅.html":{"ref":"demos/只订阅.html","tf":5}}}},"注":{"docs":{},"册":{"docs":{"demos/只注册.html":{"ref":"demos/只注册.html","tf":5}}}},"对":{"docs":{},"使":{"docs":{},"用":{"docs":{},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{},"的":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"协":{"docs":{},"议":{"docs":{},"生":{"docs":{},"效":{"docs":{},"。":{"docs":{"demos/延迟连接.html":{"ref":"demos/延迟连接.html","tf":0.5}}}}}}}}}}}}}}}}}}},"调":{"docs":{},"用":{"docs":{},"指":{"docs":{},"定":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},",":{"docs":{},"其":{"docs":{},"它":{"docs":{},"协":{"docs":{},"议":{"docs":{},"忽":{"docs":{},"略":{"docs":{},"。":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}}}}}}}}}}}}}}}}}},"写":{"docs":{},"入":{"docs":{},"和":{"docs":{},"读":{"docs":{},"取":{"docs":{},"任":{"docs":{},"意":{"docs":{},"一":{"docs":{},"台":{"docs":{},",":{"docs":{},"失":{"docs":{},"败":{"docs":{},"时":{"docs":{},"重":{"docs":{},"试":{"docs":{},"另":{"docs":{},"一":{"docs":{},"台":{"docs":{},",":{"docs":{},"需":{"docs":{},"要":{"docs":{},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},"端":{"docs":{},"自":{"docs":{},"行":{"docs":{},"配":{"docs":{},"置":{"docs":{},"数":{"docs":{},"据":{"docs":{},"同":{"docs":{},"步":{"docs":{},"。":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"固":{"docs":{},"定":{"docs":{},"大":{"docs":{},"小":{"docs":{},"线":{"docs":{},"程":{"docs":{},"池":{"docs":{},",":{"docs":{},"启":{"docs":{},"动":{"docs":{},"时":{"docs":{},"建":{"docs":{},"立":{"docs":{},"线":{"docs":{},"程":{"docs":{},",":{"docs":{},"不":{"docs":{},"关":{"docs":{},"闭":{"docs":{},",":{"docs":{},"一":{"docs":{},"直":{"docs":{},"持":{"docs":{},"有":{"docs":{},"。":{"docs":{},"(":{"docs":{},"缺":{"docs":{},"省":{"docs":{},")":{"docs":{"demos/线程模型.html":{"ref":"demos/线程模型.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"缓":{"docs":{},"存":{"docs":{},"线":{"docs":{},"程":{"docs":{},"池":{"docs":{},",":{"docs":{},"空":{"docs":{},"闲":{"docs":{},"一":{"docs":{},"分":{"docs":{},"钟":{"docs":{},"自":{"docs":{},"动":{"docs":{},"删":{"docs":{},"除":{"docs":{},",":{"docs":{},"需":{"docs":{},"要":{"docs":{},"时":{"docs":{},"重":{"docs":{},"建":{"docs":{},"。":{"docs":{"demos/线程模型.html":{"ref":"demos/线程模型.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"可":{"docs":{},"扩":{"docs":{},"展":{"docs":{},",":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"扩":{"docs":{},"展":{"docs":{},"点":{"docs":{"demos/结果缓存.html":{"ref":"demos/结果缓存.html","tf":0.058823529411764705}}}}}}}}}}}}}}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"reference-xmlconf/dubbo-parameter.html":{"ref":"reference-xmlconf/dubbo-parameter.html","tf":0.07692307692307693}},"为":{"docs":{},"服":{"docs":{},"务":{"docs":{},"名":{"docs":{},",":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"为":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},",":{"docs":{},"此":{"docs":{},"配":{"docs":{},"置":{"docs":{},"优":{"docs":{},"先":{"docs":{},"级":{"docs":{},"最":{"docs":{},"高":{"docs":{},",":{"1":{"docs":{},".":{"0":{"docs":{},".":{"1":{"5":{"docs":{},"及":{"docs":{},"以":{"docs":{},"上":{"docs":{},"版":{"docs":{},"本":{"docs":{},"支":{"docs":{},"持":{"docs":{"demos/直连提供者.html":{"ref":"demos/直连提供者.html","tf":0.05263157894736842}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}},",":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.011363636363636364}}},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.0425531914893617}}}}}}}},"e":{"docs":{},"p":{"docs":{},"a":{"docs":{},"l":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}},"y":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}},"b":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"中":{"docs":{},"配":{"docs":{},"置":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"指":{"docs":{},"向":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},",":{"docs":{},"将":{"docs":{},"绕":{"docs":{},"过":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},",":{"docs":{},"多":{"docs":{},"个":{"docs":{},"地":{"docs":{},"址":{"docs":{},"用":{"docs":{},"分":{"docs":{},"号":{"docs":{},"隔":{"docs":{},"开":{"docs":{},",":{"docs":{},"配":{"docs":{},"置":{"docs":{},"如":{"docs":{},"下":{"docs":{},":":{"docs":{"demos/直连提供者.html":{"ref":"demos/直连提供者.html","tf":0.05263157894736842}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"“":{"docs":{},"对":{"docs":{},"应":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"参":{"docs":{},"数":{"docs":{},"”":{"docs":{},"一":{"docs":{},"列":{"docs":{},"。":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"名":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},".":{"docs":{},"n":{"docs":{},"o":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"说":{"docs":{},"明":{"docs":{},"。":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}},"引":{"docs":{},"用":{"docs":{},"此":{"docs":{},"i":{"docs":{},"d":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"i":{"docs":{},"d":{"docs":{},"不":{"docs":{},"填":{"docs":{},",":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"和":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"属":{"docs":{},"性":{"docs":{},"值":{"docs":{},"一":{"docs":{},"样":{"docs":{},",":{"docs":{},"重":{"docs":{},"复":{"docs":{},"则":{"docs":{},"在":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"后":{"docs":{},"加":{"docs":{},"序":{"docs":{},"号":{"docs":{},"。":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"里":{"docs":{},"的":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"中":{"docs":{},"的":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"s":{"docs":{},"s":{"docs":{},"的":{"docs":{},"值":{"docs":{},"改":{"docs":{},"为":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"1":{"2":{"7":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{},".":{"1":{"docs":{},":":{"2":{"1":{"8":{"1":{"docs":{},"即":{"docs":{},"可":{"docs":{},"使":{"docs":{},"用":{"docs":{},"。":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"1":{"2":{"7":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{},".":{"1":{"docs":{},":":{"6":{"3":{"7":{"9":{"docs":{},"即":{"docs":{},"可":{"docs":{},"使":{"docs":{},"用":{"docs":{},"。":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"然":{"docs":{},"后":{"docs":{},"在":{"docs":{},"映":{"docs":{},"射":{"docs":{},"文":{"docs":{},"件":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"中":{"docs":{},"加":{"docs":{},"入":{"docs":{},":":{"docs":{},"(":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"为":{"docs":{},"服":{"docs":{},"务":{"docs":{},"名":{"docs":{},",":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"为":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},")":{"docs":{"demos/直连提供者.html":{"ref":"demos/直连提供者.html","tf":0.05263157894736842}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"使":{"docs":{},"用":{"docs":{},"时":{"docs":{},",":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"感":{"docs":{},"知":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"d":{"docs":{},"的":{"docs":{},"地":{"docs":{},"址":{"docs":{},":":{"docs":{"reference-protocol/memcached.html":{"ref":"reference-protocol/memcached.html","tf":0.047619047619047616}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"的":{"docs":{},"地":{"docs":{},"址":{"docs":{},":":{"docs":{"reference-protocol/redis.html":{"ref":"reference-protocol/redis.html","tf":0.05}}}}}}}}}}}}}}}}}}}}}}}},"将":{"docs":{},"剩":{"docs":{},"下":{"docs":{},"的":{"docs":{},"一":{"docs":{},"半":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"升":{"docs":{},"级":{"docs":{},"为":{"docs":{},"新":{"docs":{},"版":{"docs":{},"本":{"docs":{"demos/多版本.html":{"ref":"demos/多版本.html","tf":0.1111111111111111}}}}}}}}}}}}}}}}},",":{"docs":{},"检":{"docs":{},"测":{"docs":{},"有":{"docs":{},"没":{"docs":{},"有":{"docs":{},"请":{"docs":{},"求":{"docs":{},"的":{"docs":{},"响":{"docs":{},"应":{"docs":{},"还":{"docs":{},"没":{"docs":{},"有":{"docs":{},"返":{"docs":{},"回":{"docs":{},",":{"docs":{},"等":{"docs":{},"待":{"docs":{},"响":{"docs":{},"应":{"docs":{},"返":{"docs":{},"回":{"docs":{},",":{"docs":{},"除":{"docs":{},"非":{"docs":{},"超":{"docs":{},"时":{"docs":{},",":{"docs":{},"则":{"docs":{},"强":{"docs":{},"制":{"docs":{},"关":{"docs":{},"闭":{"docs":{},"。":{"docs":{"demos/优雅停机.html":{"ref":"demos/优雅停机.html","tf":0.07142857142857142}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"线":{"docs":{},"程":{"docs":{},"池":{"docs":{},"中":{"docs":{},"的":{"docs":{},"线":{"docs":{},"程":{"docs":{},"是":{"docs":{},"否":{"docs":{},"正":{"docs":{},"在":{"docs":{},"运":{"docs":{},"行":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"有":{"docs":{},",":{"docs":{},"等":{"docs":{},"待":{"docs":{},"所":{"docs":{},"有":{"docs":{},"线":{"docs":{},"程":{"docs":{},"执":{"docs":{},"行":{"docs":{},"完":{"docs":{},"成":{"docs":{},",":{"docs":{},"除":{"docs":{},"非":{"docs":{},"超":{"docs":{},"时":{"docs":{},",":{"docs":{},"则":{"docs":{},"强":{"docs":{},"制":{"docs":{},"关":{"docs":{},"闭":{"docs":{},"。":{"docs":{"demos/优雅停机.html":{"ref":"demos/优雅停机.html","tf":0.07142857142857142}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"禁":{"docs":{},"用":{"docs":{},"注":{"docs":{},"册":{"docs":{},"配":{"docs":{},"置":{"docs":{"demos/只订阅.html":{"ref":"demos/只订阅.html","tf":0.25}}}}}},"订":{"docs":{},"阅":{"docs":{},"配":{"docs":{},"置":{"docs":{"demos/只注册.html":{"ref":"demos/只注册.html","tf":0.25}}}}}},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},":":{"docs":{},"(":{"docs":{},"通":{"docs":{},"常":{"docs":{},"用":{"docs":{},"于":{"docs":{},"临":{"docs":{},"时":{"docs":{},"踢":{"docs":{},"除":{"docs":{},"某":{"docs":{},"台":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"机":{"docs":{},"器":{"docs":{},",":{"docs":{},"相":{"docs":{},"似":{"docs":{},"的":{"docs":{},",":{"docs":{},"禁":{"docs":{},"止":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"访":{"docs":{},"问":{"docs":{},"请":{"docs":{},"使":{"docs":{},"用":{"docs":{},"路":{"docs":{},"由":{"docs":{},"规":{"docs":{},"则":{"docs":{},")":{"docs":{"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"解":{"docs":{},"决":{"docs":{},"方":{"docs":{},"案":{"docs":{},"可":{"docs":{},"以":{"docs":{},"让":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"开":{"docs":{},"发":{"docs":{},"方":{"docs":{},",":{"docs":{},"只":{"docs":{},"订":{"docs":{},"阅":{"docs":{},"服":{"docs":{},"务":{"docs":{},"(":{"docs":{},"开":{"docs":{},"发":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},"可":{"docs":{},"能":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"其":{"docs":{},"它":{"docs":{},"服":{"docs":{},"务":{"docs":{},")":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"注":{"docs":{},"册":{"docs":{},"正":{"docs":{},"在":{"docs":{},"开":{"docs":{},"发":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"通":{"docs":{},"过":{"docs":{},"直":{"docs":{},"连":{"docs":{},"测":{"docs":{},"试":{"docs":{},"正":{"docs":{},"在":{"docs":{},"开":{"docs":{},"发":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},"。":{"docs":{"demos/只订阅.html":{"ref":"demos/只订阅.html","tf":0.25}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"方":{"docs":{},",":{"docs":{},"只":{"docs":{},"注":{"docs":{},"册":{"docs":{},"服":{"docs":{},"务":{"docs":{},"到":{"docs":{},"另":{"docs":{},"一":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"从":{"docs":{},"另":{"docs":{},"一":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"订":{"docs":{},"阅":{"docs":{},"服":{"docs":{},"务":{"docs":{},"。":{"docs":{"demos/只注册.html":{"ref":"demos/只注册.html","tf":0.25}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"问":{"docs":{},"题":{"docs":{},"为":{"docs":{},"方":{"docs":{},"便":{"docs":{},"开":{"docs":{},"发":{"docs":{},"测":{"docs":{},"试":{"docs":{},",":{"docs":{},"经":{"docs":{},"常":{"docs":{},"会":{"docs":{},"在":{"docs":{},"线":{"docs":{},"下":{"docs":{},"共":{"docs":{},"用":{"docs":{},"一":{"docs":{},"个":{"docs":{},"所":{"docs":{},"有":{"docs":{},"服":{"docs":{},"务":{"docs":{},"可":{"docs":{},"用":{"docs":{},"的":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},",":{"docs":{},"这":{"docs":{},"时":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"一":{"docs":{},"个":{"docs":{},"正":{"docs":{},"在":{"docs":{},"开":{"docs":{},"发":{"docs":{},"中":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"注":{"docs":{},"册":{"docs":{},",":{"docs":{},"可":{"docs":{},"能":{"docs":{},"会":{"docs":{},"影":{"docs":{},"响":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"不":{"docs":{},"能":{"docs":{},"正":{"docs":{},"常":{"docs":{},"运":{"docs":{},"行":{"docs":{},"。":{"docs":{"demos/只订阅.html":{"ref":"demos/只订阅.html","tf":0.25}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"如":{"docs":{},"果":{"docs":{},"有":{"docs":{},"两":{"docs":{},"个":{"docs":{},"镜":{"docs":{},"像":{"docs":{},"环":{"docs":{},"境":{"docs":{},",":{"docs":{},"两":{"docs":{},"个":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},",":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"服":{"docs":{},"务":{"docs":{},"只":{"docs":{},"在":{"docs":{},"其":{"docs":{},"中":{"docs":{},"一":{"docs":{},"个":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"有":{"docs":{},"部":{"docs":{},"署":{"docs":{},",":{"docs":{},"另":{"docs":{},"一":{"docs":{},"个":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"还":{"docs":{},"没":{"docs":{},"来":{"docs":{},"得":{"docs":{},"及":{"docs":{},"部":{"docs":{},"署":{"docs":{},",":{"docs":{},"而":{"docs":{},"两":{"docs":{},"个":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"的":{"docs":{},"其":{"docs":{},"它":{"docs":{},"应":{"docs":{},"用":{"docs":{},"都":{"docs":{},"需":{"docs":{},"要":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"此":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"需":{"docs":{},"要":{"docs":{},"将":{"docs":{},"服":{"docs":{},"务":{"docs":{},"同":{"docs":{},"时":{"docs":{},"注":{"docs":{},"册":{"docs":{},"到":{"docs":{},"两":{"docs":{},"个":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},",":{"docs":{},"但":{"docs":{},"却":{"docs":{},"不":{"docs":{},"能":{"docs":{},"让":{"docs":{},"此":{"docs":{},"服":{"docs":{},"务":{"docs":{},"同":{"docs":{},"时":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"两":{"docs":{},"个":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"的":{"docs":{},"其":{"docs":{},"它":{"docs":{},"服":{"docs":{},"务":{"docs":{},"。":{"docs":{"demos/只注册.html":{"ref":"demos/只注册.html","tf":0.25}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"静":{"docs":{},"态":{"docs":{},"服":{"docs":{},"务":{"docs":{"demos/静态服务.html":{"ref":"demos/静态服务.html","tf":5}}}}}},"任":{"docs":{},"意":{"docs":{},"组":{"docs":{},":":{"docs":{"demos/服务分组.html":{"ref":"demos/服务分组.html","tf":0.2}}}}}},"再":{"docs":{},"将":{"docs":{},"所":{"docs":{},"有":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"升":{"docs":{},"级":{"docs":{},"为":{"docs":{},"新":{"docs":{},"版":{"docs":{},"本":{"docs":{"demos/多版本.html":{"ref":"demos/多版本.html","tf":0.1111111111111111}}}}}}}}}}}}}}},"新":{"docs":{},"版":{"docs":{},"本":{"docs":{},"服":{"docs":{},"务":{"docs":{"demos/多版本.html":{"ref":"demos/多版本.html","tf":0.1111111111111111}}}}}},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"b":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},"工":{"docs":{},"程":{"docs":{},",":{"docs":{},"如":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},",":{"docs":{},"实":{"docs":{},"现":{"docs":{},"a":{"docs":{},"b":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"n":{"docs":{"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}}}}}}}}}}}}}}}}}}}}}}}}}}}},"代":{"docs":{},"码":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"/":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{"demos/分组聚合.html":{"ref":"demos/分组聚合.html","tf":0.07692307692307693}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"合":{"docs":{},"并":{"docs":{},"指":{"docs":{},"定":{"docs":{},"分":{"docs":{},"组":{"docs":{"demos/分组聚合.html":{"ref":"demos/分组聚合.html","tf":0.07692307692307693}}}}}}}},"指":{"docs":{},"定":{"docs":{},"合":{"docs":{},"并":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"将":{"docs":{},"调":{"docs":{},"用":{"docs":{},"返":{"docs":{},"回":{"docs":{},"结":{"docs":{},"果":{"docs":{},"的":{"docs":{},"指":{"docs":{},"定":{"docs":{},"方":{"docs":{},"法":{"docs":{},"进":{"docs":{},"行":{"docs":{},"合":{"docs":{},"并":{"docs":{},",":{"docs":{},"合":{"docs":{},"并":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"类":{"docs":{},"型":{"docs":{},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"返":{"docs":{},"回":{"docs":{},"结":{"docs":{},"果":{"docs":{},"类":{"docs":{},"型":{"docs":{},"本":{"docs":{},"身":{"docs":{"demos/分组聚合.html":{"ref":"demos/分组聚合.html","tf":0.07692307692307693}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"策":{"docs":{},"略":{"docs":{},",":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"根":{"docs":{},"据":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"类":{"docs":{},"型":{"docs":{},"自":{"docs":{},"动":{"docs":{},"匹":{"docs":{},"配":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"同":{"docs":{},"一":{"docs":{},"类":{"docs":{},"型":{"docs":{},"有":{"docs":{},"两":{"docs":{},"个":{"docs":{},"合":{"docs":{},"并":{"docs":{},"器":{"docs":{},"时":{"docs":{},",":{"docs":{},"需":{"docs":{},"指":{"docs":{},"定":{"docs":{},"合":{"docs":{},"并":{"docs":{},"器":{"docs":{},"的":{"docs":{},"名":{"docs":{},"称":{"docs":{"demos/分组聚合.html":{"ref":"demos/分组聚合.html","tf":0.07692307692307693}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"方":{"docs":{},"法":{"docs":{},"合":{"docs":{},"并":{"docs":{},"结":{"docs":{},"果":{"docs":{},",":{"docs":{},"其":{"docs":{},"它":{"docs":{},"未":{"docs":{},"指":{"docs":{},"定":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"将":{"docs":{},"只":{"docs":{},"调":{"docs":{},"用":{"docs":{},"一":{"docs":{},"个":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"demos/分组聚合.html":{"ref":"demos/分组聚合.html","tf":0.07692307692307693}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{},"值":{"docs":{},"为":{"docs":{},"的":{"docs":{},"i":{"docs":{},"d":{"docs":{},"属":{"docs":{},"性":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968}}}}}}}}}}}}}}}}}}},"向":{"docs":{},"一":{"docs":{},"个":{"docs":{},"通":{"docs":{},"用":{"docs":{},"服":{"docs":{},"务":{"docs":{},"实":{"docs":{},"现":{"docs":{"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}}}}}}}}}}}},"按":{"docs":{},"组":{"docs":{},"合":{"docs":{},"并":{"docs":{},"返":{"docs":{},"回":{"docs":{},"结":{"docs":{},"果":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"菜":{"docs":{},"单":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"接":{"docs":{},"口":{"docs":{},"一":{"docs":{},"样":{"docs":{},",":{"docs":{},"但":{"docs":{},"有":{"docs":{},"多":{"docs":{},"种":{"docs":{},"实":{"docs":{},"现":{"docs":{},",":{"docs":{},"用":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"区":{"docs":{},"分":{"docs":{},",":{"docs":{},"现":{"docs":{},"在":{"docs":{},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},"需":{"docs":{},"从":{"docs":{},"每":{"docs":{},"种":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"中":{"docs":{},"调":{"docs":{},"用":{"docs":{},"一":{"docs":{},"次":{"docs":{},"返":{"docs":{},"回":{"docs":{},"结":{"docs":{},"果":{"docs":{},",":{"docs":{},"合":{"docs":{},"并":{"docs":{},"结":{"docs":{},"果":{"docs":{},"返":{"docs":{},"回":{"docs":{},",":{"docs":{},"这":{"docs":{},"样":{"docs":{},"就":{"docs":{},"可":{"docs":{},"以":{"docs":{},"实":{"docs":{},"现":{"docs":{},"聚":{"docs":{},"合":{"docs":{},"菜":{"docs":{},"单":{"docs":{},"项":{"docs":{},"。":{"docs":{},"从":{"2":{"docs":{},".":{"1":{"docs":{},".":{"0":{"docs":{},"版":{"docs":{},"本":{"docs":{},"开":{"docs":{},"始":{"docs":{},"支":{"docs":{},"持":{"docs":{},",":{"docs":{"demos/分组聚合.html":{"ref":"demos/分组聚合.html","tf":0.07692307692307693}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"搜":{"docs":{},"索":{"docs":{},"所":{"docs":{},"有":{"docs":{},"分":{"docs":{},"组":{"docs":{"demos/分组聚合.html":{"ref":"demos/分组聚合.html","tf":0.07692307692307693}}}}}}}},"某":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},"不":{"docs":{},"合":{"docs":{},"并":{"docs":{},"结":{"docs":{},"果":{"docs":{},",":{"docs":{},"其":{"docs":{},"它":{"docs":{},"都":{"docs":{},"合":{"docs":{},"并":{"docs":{},"结":{"docs":{},"果":{"docs":{"demos/分组聚合.html":{"ref":"demos/分组聚合.html","tf":0.07692307692307693}}}}}}}}}}}}}}}}}}},"\"":{"1":{"docs":{},".":{"6":{"docs":{},".":{"0":{"docs":{},"_":{"1":{"8":{"docs":{},"\"":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818},"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}},"/":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}},"^":{"docs":{},"\\":{"docs":{},"\\":{"docs":{},"s":{"docs":{},"*":{"docs":{},"\\":{"docs":{},"\\":{"docs":{},"w":{"docs":{},"+":{"docs":{},"(":{"docs":{},"?":{"docs":{},":":{"docs":{},"\\":{"docs":{},"\\":{"docs":{},".":{"docs":{},"{":{"0":{"docs":{},",":{"1":{"docs":{},"}":{"docs":{},"[":{"docs":{},"\\":{"docs":{},"\\":{"docs":{},"w":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},":":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}},"r":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"`":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},",":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},".":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"\"":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{},"\"":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}}}}}}}},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.013422818791946308}}}}}}}},"y":{"docs":{},"y":{"docs":{},"y":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.013422818791946308}}}}}}}},"容":{"docs":{},"错":{"docs":{},"数":{"docs":{},"据":{"docs":{},"\"":{"docs":{},";":{"docs":{"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818},"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}}}}}}}},")":{"docs":{},")":{"docs":{},";":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}},"=":{"docs":{},">":{"docs":{},"\"":{"docs":{},"之":{"docs":{},"前":{"docs":{},"的":{"docs":{},"为":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"条":{"docs":{},"件":{"docs":{},",":{"docs":{},"所":{"docs":{},"有":{"docs":{},"参":{"docs":{},"数":{"docs":{},"和":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"的":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"进":{"docs":{},"行":{"docs":{},"对":{"docs":{},"比":{"docs":{},",":{"docs":{},"当":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"满":{"docs":{},"足":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"条":{"docs":{},"件":{"docs":{},"时":{"docs":{},",":{"docs":{},"对":{"docs":{},"该":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"执":{"docs":{},"行":{"docs":{},"后":{"docs":{},"面":{"docs":{},"的":{"docs":{},"过":{"docs":{},"滤":{"docs":{},"规":{"docs":{},"则":{"docs":{},"。":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"后":{"docs":{},"为":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"地":{"docs":{},"址":{"docs":{},"列":{"docs":{},"表":{"docs":{},"的":{"docs":{},"过":{"docs":{},"滤":{"docs":{},"条":{"docs":{},"件":{"docs":{},",":{"docs":{},"所":{"docs":{},"有":{"docs":{},"参":{"docs":{},"数":{"docs":{},"和":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"的":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"进":{"docs":{},"行":{"docs":{},"对":{"docs":{},"比":{"docs":{},",":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"最":{"docs":{},"终":{"docs":{},"只":{"docs":{},"拿":{"docs":{},"到":{"docs":{},"过":{"docs":{},"滤":{"docs":{},"后":{"docs":{},"的":{"docs":{},"地":{"docs":{},"址":{"docs":{},"列":{"docs":{},"表":{"docs":{},"。":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"0":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"?":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"=":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"&":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"&":{"docs":{},"r":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"=":{"docs":{},"\"":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"}":{"docs":{},")":{"docs":{},":":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.014388489208633094}}}}}}}}}}}},"'":{"docs":{},"/":{"docs":{},"'":{"docs":{},")":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}},"]":{"docs":{},"+":{"docs":{},")":{"docs":{},"*":{"docs":{},"@":{"docs":{},"[":{"docs":{},"a":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}},"与":{"docs":{"demos/结果缓存.html":{"ref":"demos/结果缓存.html","tf":0.058823529411764705}},"方":{"docs":{},"法":{"docs":{},"同":{"docs":{},"名":{"docs":{},"接":{"docs":{},"口":{"docs":{},",":{"docs":{},"首":{"docs":{},"字":{"docs":{},"母":{"docs":{},"大":{"docs":{},"写":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"区":{"docs":{},"分":{"docs":{},"验":{"docs":{},"证":{"docs":{},"场":{"docs":{},"景":{"docs":{},",":{"docs":{},"如":{"docs":{},":":{"docs":{},"@":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"(":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"二":{"docs":{},"选":{"docs":{},"一":{"docs":{"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421}}}}}}}}}}},"保":{"docs":{},"存":{"docs":{},"时":{"docs":{},"不":{"docs":{},"允":{"docs":{},"许":{"docs":{},"为":{"docs":{},"空":{"docs":{},",":{"docs":{},"更":{"docs":{},"新":{"docs":{},"时":{"docs":{},"允":{"docs":{},"许":{"docs":{},"为":{"docs":{},"空":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}}}}}},"同":{"docs":{},"时":{"docs":{},"验":{"docs":{},"证":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"组":{"docs":{},"规":{"docs":{},"则":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}},"调":{"docs":{},"用":{"1":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"为":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"5":{"docs":{},"k":{"docs":{},")":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"1":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"为":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"对":{"docs":{},"象":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"1":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"为":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"(":{"docs":{},"值":{"docs":{},"为":{"3":{"docs":{},"个":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"持":{"docs":{},"续":{"docs":{},"运":{"docs":{},"行":{"5":{"0":{"docs":{},"小":{"docs":{},"时":{"docs":{},"。":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}},"docs":{}}}}}}},"docs":{}}}}}}}}}}}}},"docs":{}}}},"理":{"docs":{},"等":{"docs":{},"待":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"返":{"docs":{},"回":{"docs":{},"。":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.021739130434782608}}}}}}}}}}},"步":{"docs":{},"回":{"docs":{},"调":{"docs":{},"模":{"docs":{},"式":{"docs":{},":":{"docs":{},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}}}}}}}}},"无":{"docs":{},"回":{"docs":{},"调":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}},"一":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{},"分":{"docs":{},"成":{"docs":{},"多":{"docs":{},"组":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},":":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}}}},"完":{"docs":{},"整":{"docs":{},"示":{"docs":{},"例":{"docs":{},"代":{"docs":{},"码":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"/":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"现":{"docs":{},"的":{"docs":{},",":{"docs":{},"用":{"docs":{},"户":{"docs":{},"只":{"docs":{},"需":{"docs":{},"标":{"docs":{},"识":{"docs":{},"j":{"docs":{},"s":{"docs":{},"r":{"3":{"0":{"3":{"docs":{},"标":{"docs":{},"准":{"docs":{},"的":{"docs":{},"验":{"docs":{},"证":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{},"并":{"docs":{},"通":{"docs":{},"过":{"docs":{},"声":{"docs":{},"明":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"来":{"docs":{},"实":{"docs":{},"现":{"docs":{},"验":{"docs":{},"证":{"docs":{},"。":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"通":{"docs":{},"过":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"创":{"docs":{},"建":{"docs":{},"本":{"docs":{},"地":{"docs":{},"接":{"docs":{},"口":{"docs":{},"代":{"docs":{},"理":{"docs":{},",":{"docs":{},"并":{"docs":{},"实":{"docs":{},"现":{"docs":{},"自":{"docs":{},"己":{"docs":{},"的":{"docs":{},"业":{"docs":{},"务":{"docs":{},"逻":{"docs":{},"辑":{"docs":{},",":{"docs":{},"如":{"docs":{},"下":{"docs":{"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"父":{"docs":{},"类":{"docs":{},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}}}}}}}}}},"际":{"docs":{},"值":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}},"抛":{"docs":{},"出":{"docs":{},"的":{"docs":{},"是":{"docs":{},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}},"异":{"docs":{},"常":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.017543859649122806}}}}},"里":{"docs":{},"面":{"docs":{},"嵌":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"长":{"docs":{},"度":{"docs":{},"或":{"docs":{},"大":{"docs":{},"小":{"docs":{},"范":{"docs":{},"围":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}},"验":{"docs":{},"证":{"docs":{},"参":{"docs":{},"数":{"docs":{},"不":{"docs":{},"为":{"docs":{},"空":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}},"异":{"docs":{},"常":{"docs":{},"信":{"docs":{},"息":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}},"方":{"docs":{},"式":{"docs":{},"可":{"docs":{},"扩":{"docs":{},"展":{"docs":{},",":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},"验":{"docs":{},"证":{"docs":{},"扩":{"docs":{},"展":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}}}}}}}}},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"不":{"docs":{},"更":{"docs":{},"新":{"docs":{},"该":{"docs":{},"字":{"docs":{},"段":{"docs":{"demos/参数验证.html":{"ref":"demos/参数验证.html","tf":0.003003003003003003}}}}}}}}}},"使":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"在":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"容":{"docs":{},"器":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"完":{"docs":{},"后":{"docs":{},",":{"docs":{},"再":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"服":{"docs":{},"务":{"docs":{},"。":{"docs":{"demos/延迟暴露.html":{"ref":"demos/延迟暴露.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"设":{"docs":{},"为":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}},"此":{"docs":{},"属":{"docs":{},"性":{"docs":{},"只":{"docs":{},"在":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}},"将":{"docs":{},"不":{"docs":{},"生":{"docs":{},"成":{"docs":{},"$":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{},"接":{"docs":{},"口":{"docs":{},",":{"docs":{},"而":{"docs":{},"使":{"docs":{},"用":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"的":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"接":{"docs":{},"口":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"和":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"。":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"订":{"docs":{},"阅":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"分":{"docs":{},"组":{"docs":{},"和":{"docs":{},"所":{"docs":{},"有":{"docs":{},"版":{"docs":{},"本":{"docs":{},"的":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"。":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}}}},"假":{"docs":{},"设":{"docs":{},"存":{"docs":{},"在":{"docs":{},"p":{"docs":{},"o":{"docs":{},"j":{"docs":{},"o":{"docs":{},"如":{"docs":{},":":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}}}},"则":{"docs":{},"p":{"docs":{},"o":{"docs":{},"j":{"docs":{},"o":{"docs":{},"数":{"docs":{},"据":{"docs":{},":":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}}},"声":{"docs":{},"明":{"docs":{},"为":{"docs":{},"泛":{"docs":{},"化":{"docs":{},"接":{"docs":{},"口":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154}}}}}}}}},"弱":{"docs":{},"类":{"docs":{},"型":{"docs":{},"接":{"docs":{},"口":{"docs":{},"名":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}}}}}}}},"该":{"docs":{},"实":{"docs":{},"例":{"docs":{},"很":{"docs":{},"重":{"docs":{},"量":{"docs":{},",":{"docs":{},"里":{"docs":{},"面":{"docs":{},"封":{"docs":{},"装":{"docs":{},"了":{"docs":{},"所":{"docs":{},"有":{"docs":{},"与":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"及":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"连":{"docs":{},"接":{"docs":{},",":{"docs":{},"请":{"docs":{},"缓":{"docs":{},"存":{"docs":{"demos/泛化引用.html":{"ref":"demos/泛化引用.html","tf":0.006711409395973154},"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},"是":{"docs":{},"否":{"docs":{},"注":{"docs":{},"册":{"docs":{},"到":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805}}}}}}}}}}}}}}}},"接":{"docs":{},"口":{"docs":{},"上":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"方":{"docs":{},"法":{"docs":{},"使":{"docs":{},"用":{"docs":{},"同":{"docs":{},"一":{"docs":{},"个":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"如":{"docs":{},"果":{"docs":{},"需":{"docs":{},"要":{"docs":{},"更":{"docs":{},"复":{"docs":{},"杂":{"docs":{},"的":{"docs":{},"规":{"docs":{},"则":{"docs":{},",":{"docs":{},"请":{"docs":{},"使":{"docs":{},"用":{"docs":{},"用":{"docs":{},"路":{"docs":{},"由":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"$":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"demos/泛化实现.html":{"ref":"demos/泛化实现.html","tf":0.01818181818181818}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.009523809523809525}}}}}}},"强":{"docs":{},"制":{"docs":{},"转":{"docs":{},"型":{"docs":{},"为":{"docs":{},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"demos/回声测试.html":{"ref":"demos/回声测试.html","tf":0.045454545454545456}}}}}}}}}}}}}}}},"烈":{"docs":{},"建":{"docs":{},"议":{"docs":{},"不":{"docs":{},"要":{"docs":{},"在":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"实":{"docs":{},"现":{"docs":{},"类":{"docs":{},"中":{"docs":{},"有":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},"的":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"全":{"docs":{},"部":{"docs":{},"采":{"docs":{},"用":{"docs":{},"i":{"docs":{},"o":{"docs":{},"c":{"docs":{},"注":{"docs":{},"入":{"docs":{},"的":{"docs":{},"方":{"docs":{},"式":{"docs":{},"使":{"docs":{},"用":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"的":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"。":{"docs":{"demos/延迟暴露.html":{"ref":"demos/延迟暴露.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"远":{"docs":{},"程":{"docs":{},"服":{"docs":{},"务":{"docs":{},"引":{"docs":{},"用":{"docs":{"demos/回声测试.html":{"ref":"demos/回声测试.html","tf":0.045454545454545456}}}},"后":{"docs":{},",":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"通":{"docs":{},"常":{"docs":{},"只":{"docs":{},"剩":{"docs":{},"下":{"docs":{},"接":{"docs":{},"口":{"docs":{},",":{"docs":{},"而":{"docs":{},"实":{"docs":{},"现":{"docs":{},"全":{"docs":{},"在":{"docs":{},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},"端":{"docs":{},",":{"docs":{},"但":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"有":{"docs":{},"些":{"docs":{},"时":{"docs":{},"候":{"docs":{},"想":{"docs":{},"在":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"也":{"docs":{},"执":{"docs":{},"行":{"docs":{},"部":{"docs":{},"分":{"docs":{},"逻":{"docs":{},"辑":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},":":{"docs":{},"做":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"缓":{"docs":{},"存":{"docs":{},",":{"docs":{},"提":{"docs":{},"前":{"docs":{},"验":{"docs":{},"证":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"调":{"docs":{},"用":{"docs":{},"失":{"docs":{},"败":{"docs":{},"后":{"docs":{},"伪":{"docs":{},"造":{"docs":{},"容":{"docs":{},"错":{"docs":{},"数":{"docs":{},"据":{"docs":{},"等":{"docs":{},"等":{"docs":{},",":{"docs":{},"此":{"docs":{},"时":{"docs":{},"就":{"docs":{},"需":{"docs":{},"要":{"docs":{},"在":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"中":{"docs":{},"带":{"docs":{},"上":{"docs":{},"s":{"docs":{},"t":{"docs":{},"u":{"docs":{},"b":{"docs":{},",":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"生":{"docs":{},"成":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"x":{"docs":{},"y":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"会":{"docs":{},"把":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"x":{"docs":{},"y":{"docs":{},"通":{"docs":{},"过":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"传":{"docs":{},"给":{"docs":{},"s":{"docs":{},"t":{"docs":{},"u":{"docs":{},"b":{"docs":{},",":{"docs":{},"然":{"docs":{},"后":{"docs":{},"把":{"docs":{},"s":{"docs":{},"t":{"docs":{},"u":{"docs":{},"b":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"组":{"docs":{},"给":{"docs":{},"用":{"docs":{},"户":{"docs":{},",":{"docs":{},"s":{"docs":{},"t":{"docs":{},"u":{"docs":{},"b":{"docs":{},"可":{"docs":{},"以":{"docs":{},"决":{"docs":{},"定":{"docs":{},"要":{"docs":{},"不":{"docs":{},"要":{"docs":{},"去":{"docs":{},"调":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"x":{"docs":{},"y":{"docs":{},"。":{"docs":{"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"调":{"docs":{},"用":{"docs":{},"超":{"docs":{},"时":{"docs":{},"时":{"docs":{},"间":{"docs":{},"(":{"docs":{},"毫":{"docs":{},"秒":{"docs":{},")":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}}}}},"重":{"docs":{},"试":{"docs":{},"次":{"docs":{},"数":{"docs":{},",":{"docs":{},"不":{"docs":{},"包":{"docs":{},"括":{"docs":{},"第":{"docs":{},"一":{"docs":{},"次":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"重":{"docs":{},"试":{"docs":{},"请":{"docs":{},"设":{"docs":{},"为":{"0":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}},"调":{"docs":{},"用":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904}}}}}},"y":{"docs":{},"y":{"docs":{},"y":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"y":{"docs":{},"y":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}},"获":{"docs":{},"取":{"docs":{},"当":{"docs":{},"前":{"docs":{},"服":{"docs":{},"务":{"docs":{},"配":{"docs":{},"置":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"所":{"docs":{},"有":{"docs":{},"配":{"docs":{},"置":{"docs":{},"信":{"docs":{},"息":{"docs":{},"都":{"docs":{},"将":{"docs":{},"转":{"docs":{},"换":{"docs":{},"为":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}},"最":{"docs":{},"后":{"docs":{},"一":{"docs":{},"次":{"docs":{},"调":{"docs":{},"用":{"docs":{},"的":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"i":{"docs":{},"p":{"docs":{},"地":{"docs":{},"址":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904}}}}}}}}}}}}}}}},"调":{"docs":{},"用":{"docs":{},"方":{"docs":{},"i":{"docs":{},"p":{"docs":{},"地":{"docs":{},"址":{"docs":{"demos/上下文信息.html":{"ref":"demos/上下文信息.html","tf":0.011904761904761904}}}}}}}}}}},"你":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"设":{"docs":{},"置":{"docs":{},"是":{"docs":{},"否":{"docs":{},"等":{"docs":{},"待":{"docs":{},"消":{"docs":{},"息":{"docs":{},"发":{"docs":{},"出":{"docs":{},":":{"docs":{},"(":{"docs":{},"异":{"docs":{},"步":{"docs":{},"总":{"docs":{},"是":{"docs":{},"不":{"docs":{},"等":{"docs":{},"待":{"docs":{},"返":{"docs":{},"回":{"docs":{},")":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.021739130434782608}}}}}}}}}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"做":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"本":{"docs":{},"地":{"docs":{},"缓":{"docs":{},"存":{"docs":{},",":{"docs":{},"或":{"docs":{},"预":{"docs":{},"先":{"docs":{},"验":{"docs":{},"证":{"docs":{},"参":{"docs":{},"数":{"docs":{},"是":{"docs":{},"否":{"docs":{},"合":{"docs":{},"法":{"docs":{},",":{"docs":{},"等":{"docs":{},"等":{"docs":{"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"容":{"docs":{},"错":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"做":{"docs":{},"任":{"docs":{},"何":{"docs":{},"a":{"docs":{},"o":{"docs":{},"p":{"docs":{},"拦":{"docs":{},"截":{"docs":{},"事":{"docs":{},"项":{"docs":{"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818}}}}}}}}}}}}}}}}},"伪":{"docs":{},"造":{"docs":{},"容":{"docs":{},"错":{"docs":{},"数":{"docs":{},"据":{"docs":{},",":{"docs":{},"此":{"docs":{},"方":{"docs":{},"法":{"docs":{},"只":{"docs":{},"在":{"docs":{},"出":{"docs":{},"现":{"docs":{},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"时":{"docs":{},"被":{"docs":{},"执":{"docs":{},"行":{"docs":{"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"拿":{"docs":{},"到":{"docs":{},"调":{"docs":{},"用":{"docs":{},"的":{"docs":{},"f":{"docs":{},"u":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"当":{"docs":{},"结":{"docs":{},"果":{"docs":{},"返":{"docs":{},"回":{"docs":{},"后":{"docs":{},",":{"docs":{},"会":{"docs":{},"被":{"docs":{},"通":{"docs":{},"知":{"docs":{},"和":{"docs":{},"设":{"docs":{},"置":{"docs":{},"到":{"docs":{},"此":{"docs":{},"f":{"docs":{},"u":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"。":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.043478260869565216}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"等":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.014285714285714285}},"待":{"docs":{},"消":{"docs":{},"息":{"docs":{},"发":{"docs":{},"出":{"docs":{},",":{"docs":{},"消":{"docs":{},"息":{"docs":{},"发":{"docs":{},"送":{"docs":{},"失":{"docs":{},"败":{"docs":{},"将":{"docs":{},"抛":{"docs":{},"出":{"docs":{},"异":{"docs":{},"常":{"docs":{},"。":{"docs":{"demos/异步调用.html":{"ref":"demos/异步调用.html","tf":0.021739130434782608}}}}}}}}}}}}}}}}}}}},"号":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}},",":{"docs":{},"通":{"docs":{},"过":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}},"从":{"2":{"docs":{},".":{"1":{"docs":{},".":{"0":{"docs":{},"版":{"docs":{},"本":{"docs":{},"开":{"docs":{},"始":{"docs":{},"支":{"docs":{},"持":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}},"docs":{}}},"2":{"docs":{},".":{"0":{"docs":{},"版":{"docs":{},"本":{"docs":{},"开":{"docs":{},"始":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"为":{"docs":{},"z":{"docs":{},"k":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"实":{"docs":{},"现":{"docs":{},",":{"docs":{},"以":{"docs":{},"提":{"docs":{},"升":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"的":{"docs":{},"健":{"docs":{},"状":{"docs":{},"性":{"docs":{},"。":{"docs":{},"z":{"docs":{},"k":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"是":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"e":{"docs":{},"r":{"docs":{},"开":{"docs":{},"源":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"实":{"docs":{},"现":{"docs":{},",":{"docs":{},"开":{"docs":{},"源":{"docs":{},"比":{"docs":{},"较":{"docs":{},"早":{"docs":{},",":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"s":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"u":{"docs":{},"p":{"docs":{},"f":{"docs":{},"/":{"docs":{},"z":{"docs":{},"k":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"3":{"docs":{},".":{"0":{"docs":{},"版":{"docs":{},"本":{"docs":{},"开":{"docs":{},"始":{"docs":{},"支":{"docs":{},"持":{"docs":{},"可":{"docs":{},"选":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"实":{"docs":{},"现":{"docs":{},"。":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{"demos/本地调用.html":{"ref":"demos/本地调用.html","tf":0.0625}},"指":{"docs":{},"定":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"注":{"docs":{},"册":{"docs":{},"获":{"docs":{},"取":{"docs":{},"服":{"docs":{},"务":{"docs":{},"列":{"docs":{},"表":{"docs":{},",":{"docs":{},"在":{"docs":{},"多":{"docs":{},"个":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"时":{"docs":{},"使":{"docs":{},"用":{"docs":{},",":{"docs":{},"值":{"docs":{},"为":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"优":{"docs":{},"先":{"docs":{},"使":{"docs":{},"用":{"docs":{"demos/本地调用.html":{"ref":"demos/本地调用.html","tf":0.0625}}}},",":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},"配":{"docs":{},"置":{"docs":{},"的":{"docs":{},"覆":{"docs":{},"盖":{"docs":{},"策":{"docs":{},"略":{"docs":{"demos/连接控制.html":{"ref":"demos/连接控制.html","tf":0.14285714285714285}},"。":{"docs":{"demos/并发控制.html":{"ref":"demos/并发控制.html","tf":0.06666666666666667}}}}}}}}}}}}}}},"雅":{"docs":{},"停":{"docs":{},"机":{"docs":{"demos/优雅停机.html":{"ref":"demos/优雅停机.html","tf":5}}}}},"于":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}},"全":{"docs":{},"局":{"docs":{},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"最":{"docs":{},"后":{"docs":{},"是":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{"demos/本地调用.html":{"ref":"demos/本地调用.html","tf":0.0625},"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549},"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564}}},"时":{"docs":{},"触":{"docs":{},"发":{"docs":{},"变":{"docs":{},"更":{"docs":{},"通":{"docs":{},"知":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}},"开":{"docs":{},"始":{"docs":{},",":{"docs":{},"每":{"docs":{},"个":{"docs":{},"服":{"docs":{},"务":{"docs":{},"默":{"docs":{},"认":{"docs":{},"都":{"docs":{},"会":{"docs":{},"在":{"docs":{},"本":{"docs":{},"地":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"。":{"docs":{},"在":{"docs":{},"引":{"docs":{},"用":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},",":{"docs":{},"默":{"docs":{},"认":{"docs":{},"优":{"docs":{},"先":{"docs":{},"引":{"docs":{},"用":{"docs":{},"本":{"docs":{},"地":{"docs":{},"服":{"docs":{},"务":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"希":{"docs":{},"望":{"docs":{},"引":{"docs":{},"用":{"docs":{},"远":{"docs":{},"程":{"docs":{},"服":{"docs":{},"务":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"一":{"docs":{},"下":{"docs":{},"配":{"docs":{},"置":{"docs":{},"强":{"docs":{},"制":{"docs":{},"引":{"docs":{},"用":{"docs":{},"远":{"docs":{},"程":{"docs":{},"服":{"docs":{},"务":{"docs":{},"。":{"docs":{"demos/本地调用.html":{"ref":"demos/本地调用.html","tf":0.0625}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"头":{"docs":{},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"引":{"docs":{},"用":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"如":{"docs":{},":":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182},"perf-test.html":{"ref":"perf-test.html","tf":0.009433962264150943}}},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}}}}}},"e":{"docs":{},"b":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},":":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.03333333333333333}},"/":{"docs":{},"/":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":5}}}}}}}}}}}},".":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},":":{"docs":{"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.007936507936507936},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.00558659217877095}}}}}}},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}},"s":{"docs":{},"d":{"docs":{},"l":{"docs":{},":":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"1":{"0":{"docs":{},".":{"2":{"0":{"docs":{},".":{"1":{"5":{"3":{"docs":{},".":{"1":{"0":{"docs":{},":":{"8":{"0":{"8":{"0":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{},"?":{"docs":{},"w":{"docs":{},"s":{"docs":{},"d":{"docs":{},"l":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}},"c":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}},"共":{"docs":{},"享":{"docs":{},"服":{"docs":{},"务":{"docs":{},"接":{"docs":{},"口":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}},"发":{"docs":{},"送":{"docs":{},"变":{"docs":{},"更":{"docs":{},"通":{"docs":{},"知":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}}}}},"防":{"docs":{},"御":{"docs":{},"容":{"docs":{},"错":{"docs":{"demos/参数回调.html":{"ref":"demos/参数回调.html","tf":0.005681818181818182}}}}},"止":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"绕":{"docs":{},"过":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"访":{"docs":{},"问":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{"demos/令牌验证.html":{"ref":"demos/令牌验证.html","tf":0.16666666666666666}}}}}}}}}}}}}}}}}},"组":{"docs":{},"合":{"docs":{},"情":{"docs":{},"况":{"docs":{},":":{"docs":{},"(":{"docs":{},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}}}}}}}}},"织":{"docs":{},"名":{"docs":{},"称":{"docs":{},"(":{"docs":{},"b":{"docs":{},"u":{"docs":{},"或":{"docs":{},"部":{"docs":{},"门":{"docs":{},")":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"区":{"docs":{},"分":{"docs":{},"服":{"docs":{},"务":{"docs":{},"来":{"docs":{},"源":{"docs":{},",":{"docs":{},"此":{"docs":{},"配":{"docs":{},"置":{"docs":{},"项":{"docs":{},"建":{"docs":{},"议":{"docs":{},"不":{"docs":{},"要":{"docs":{},"使":{"docs":{},"用":{"docs":{},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},",":{"docs":{},"直":{"docs":{},"接":{"docs":{},"写":{"docs":{},"死":{"docs":{},"在":{"docs":{},"配":{"docs":{},"置":{"docs":{},"中":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},",":{"docs":{},"i":{"docs":{},"t":{"docs":{},"u":{"docs":{},",":{"docs":{},"c":{"docs":{},"r":{"docs":{},"m":{"docs":{},",":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},",":{"docs":{},"d":{"docs":{},"w":{"docs":{},",":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"等":{"docs":{"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176},"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.02564102564102564}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"播":{"docs":{},"受":{"docs":{},"网":{"docs":{},"络":{"docs":{},"结":{"docs":{},"构":{"docs":{},"限":{"docs":{},"制":{"docs":{},",":{"docs":{},"只":{"docs":{},"适":{"docs":{},"合":{"docs":{},"小":{"docs":{},"规":{"docs":{},"模":{"docs":{},"应":{"docs":{},"用":{"docs":{},"或":{"docs":{},"开":{"docs":{},"发":{"docs":{},"阶":{"docs":{},"段":{"docs":{},"使":{"docs":{},"用":{"docs":{},"。":{"docs":{},"组":{"docs":{},"播":{"docs":{},"地":{"docs":{},"址":{"docs":{},"段":{"docs":{},":":{"docs":{"reference-registry/multicast.html":{"ref":"reference-registry/multicast.html","tf":0.09090909090909091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"表":{"docs":{},"示":{"docs":{},"是":{"docs":{},"否":{"docs":{},"需":{"docs":{},"要":{"docs":{},"回":{"docs":{},"调":{"docs":{},".":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}},"\"":{"docs":{},"不":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"\"":{"docs":{},",":{"docs":{},"如":{"docs":{},":":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}},"匹":{"docs":{},"配":{"docs":{},"\"":{"docs":{},",":{"docs":{},"如":{"docs":{},":":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}},"只":{"docs":{},"对":{"docs":{},"指":{"docs":{},"定":{"docs":{},"服":{"docs":{},"务":{"docs":{},"生":{"docs":{},"效":{"docs":{},",":{"docs":{},"必":{"docs":{},"填":{"docs":{},"。":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762},"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}}}}}}}}},"应":{"docs":{},"用":{"docs":{},"生":{"docs":{},"效":{"docs":{},",":{"docs":{},"可":{"docs":{},"不":{"docs":{},"填":{"docs":{},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"对":{"docs":{},"所":{"docs":{},"有":{"docs":{},"应":{"docs":{},"用":{"docs":{},"生":{"docs":{},"效":{"docs":{},"。":{"docs":{"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}}}}}}}}}},"对":{"docs":{},"所":{"docs":{},"有":{"docs":{},"i":{"docs":{},"p":{"docs":{},"地":{"docs":{},"址":{"docs":{},"生":{"docs":{},"效":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"只":{"docs":{},"想":{"docs":{},"对":{"docs":{},"某":{"docs":{},"个":{"docs":{},"i":{"docs":{},"p":{"docs":{},"的":{"docs":{},"生":{"docs":{},"效":{"docs":{},",":{"docs":{},"请":{"docs":{},"填":{"docs":{},"入":{"docs":{},"具":{"docs":{},"体":{"docs":{},"i":{"docs":{},"p":{"docs":{},",":{"docs":{},"必":{"docs":{},"填":{"docs":{},"。":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}}}}},"覆":{"docs":{},"盖":{"docs":{},"某":{"docs":{},"个":{"docs":{},"i":{"docs":{},"p":{"docs":{},"的":{"docs":{},"数":{"docs":{},"据":{"docs":{},",":{"docs":{},"请":{"docs":{},"填":{"docs":{},"入":{"docs":{},"具":{"docs":{},"体":{"docs":{},"i":{"docs":{},"p":{"docs":{},",":{"docs":{},"必":{"docs":{},"填":{"docs":{},"。":{"docs":{"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"该":{"docs":{},"数":{"docs":{},"据":{"docs":{},"为":{"docs":{},"动":{"docs":{},"态":{"docs":{},"配":{"docs":{},"置":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"必":{"docs":{},"填":{"docs":{},"。":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762},"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}}}}}}}}}}},"持":{"docs":{},"久":{"docs":{},"数":{"docs":{},"据":{"docs":{},",":{"docs":{},"当":{"docs":{},"注":{"docs":{},"册":{"docs":{},"方":{"docs":{},"退":{"docs":{},"出":{"docs":{},"时":{"docs":{},",":{"docs":{},"数":{"docs":{},"据":{"docs":{},"依":{"docs":{},"然":{"docs":{},"保":{"docs":{},"存":{"docs":{},"在":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},",":{"docs":{},"必":{"docs":{},"填":{"docs":{},"。":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762},"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"服":{"docs":{},"务":{"docs":{},"使":{"docs":{},"用":{"docs":{},"j":{"docs":{},"v":{"docs":{},"m":{"docs":{},"共":{"docs":{},"享":{"docs":{},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{},"。":{"docs":{},"(":{"docs":{},"缺":{"docs":{},"省":{"docs":{},")":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}}}}}}},"独":{"docs":{},"立":{"docs":{},"两":{"docs":{},"条":{"docs":{},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{},"。":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{},"。":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}}}}},"路":{"docs":{},"由":{"docs":{},"规":{"docs":{},"则":{"docs":{},"的":{"docs":{},"内":{"docs":{},"容":{"docs":{},",":{"docs":{},"必":{"docs":{},"填":{"docs":{},"。":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"支":{"docs":{},"持":{"docs":{},"条":{"docs":{},"件":{"docs":{},"路":{"docs":{},"由":{"docs":{},"规":{"docs":{},"则":{"docs":{},"和":{"docs":{},"脚":{"docs":{},"本":{"docs":{},"路":{"docs":{},"由":{"docs":{},"规":{"docs":{},"则":{"docs":{},",":{"docs":{},"可":{"docs":{},"扩":{"docs":{},"展":{"docs":{},",":{"docs":{},"必":{"docs":{},"填":{"docs":{},"。":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"将":{"docs":{},"满":{"docs":{},"足":{"docs":{},"以":{"docs":{},"上":{"docs":{},"条":{"docs":{},"件":{"docs":{},"的":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"参":{"docs":{},"数":{"docs":{},"的":{"docs":{},"值":{"docs":{},"覆":{"docs":{},"盖":{"docs":{},"为":{"1":{"0":{"0":{"0":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"想":{"docs":{},"覆":{"docs":{},"盖":{"docs":{},"其":{"docs":{},"它":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"直":{"docs":{},"接":{"docs":{},"加":{"docs":{},"在":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"的":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"参":{"docs":{},"数":{"docs":{},"上":{"docs":{},"。":{"docs":{"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}},"数":{"docs":{},"据":{"docs":{},"采":{"docs":{},"用":{"docs":{},"覆":{"docs":{},"盖":{"docs":{},"方":{"docs":{},"式":{"docs":{},",":{"docs":{},"支":{"docs":{},"持":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"和":{"docs":{},"a":{"docs":{},"b":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{},"可":{"docs":{},"扩":{"docs":{},"展":{"docs":{},",":{"docs":{},"必":{"docs":{},"填":{"docs":{},"。":{"docs":{"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"消":{"docs":{},"费":{"docs":{},"方":{"docs":{},"对":{"docs":{},"该":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},"调":{"docs":{},"用":{"docs":{},"在":{"docs":{},"失":{"docs":{},"败":{"docs":{},"后":{"docs":{},",":{"docs":{},"再":{"docs":{},"返":{"docs":{},"回":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"值":{"docs":{},",":{"docs":{},"不":{"docs":{},"抛":{"docs":{},"异":{"docs":{},"常":{"docs":{},"。":{"docs":{"demos/服务降级.html":{"ref":"demos/服务降级.html","tf":0.05}}}}}}}}}}}}}}}}}}}}},"都":{"docs":{},"直":{"docs":{},"接":{"docs":{},"返":{"docs":{},"回":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"值":{"docs":{},",":{"docs":{},"不":{"docs":{},"发":{"docs":{},"起":{"docs":{},"远":{"docs":{},"程":{"docs":{},"调":{"docs":{},"用":{"docs":{},"。":{"docs":{"demos/服务降级.html":{"ref":"demos/服务降级.html","tf":0.05}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"达":{"docs":{},"式":{"docs":{},":":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}},"默":{"docs":{},"认":{"docs":{},")":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}},":":{"docs":{},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"demos/事件通知.html":{"ref":"demos/事件通知.html","tf":0.006896551724137931}}}}}}}}}}}},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"传":{"docs":{},"入":{"docs":{},"真":{"docs":{},"正":{"docs":{},"的":{"docs":{},"远":{"docs":{},"程":{"docs":{},"代":{"docs":{},"理":{"docs":{},"对":{"docs":{},"象":{"docs":{"demos/本地存根.html":{"ref":"demos/本地存根.html","tf":0.01818181818181818}}}}}}}}}}}}}}}}},"请":{"docs":{},"考":{"docs":{},"虑":{"docs":{},"改":{"docs":{},"为":{"docs":{},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"实":{"docs":{},"现":{"docs":{},",":{"docs":{},"并":{"docs":{},"在":{"docs":{},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"中":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"demos/本地伪装.html":{"ref":"demos/本地伪装.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}}},"求":{"docs":{},"线":{"docs":{},"程":{"docs":{},"的":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"先":{"docs":{},"同":{"docs":{},"步":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"判":{"docs":{},"断":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"是":{"docs":{},"否":{"docs":{},"存":{"docs":{},"在":{"docs":{},",":{"docs":{},"不":{"docs":{},"存":{"docs":{},"在":{"docs":{},"就":{"docs":{},"同":{"docs":{},"步":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"进":{"docs":{},"行":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},",":{"docs":{},"并":{"docs":{},"再":{"docs":{},"次":{"docs":{},"同":{"docs":{},"步":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"写":{"docs":{},"入":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"实":{"docs":{},"例":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"。":{"2":{"docs":{},".":{"docs":{"demos/延迟暴露.html":{"ref":"demos/延迟暴露.html","tf":0.06666666666666667}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"及":{"docs":{},"响":{"docs":{},"应":{"docs":{},"数":{"docs":{},"据":{"docs":{},"包":{"docs":{},"大":{"docs":{},"小":{"docs":{},"限":{"docs":{},"制":{"docs":{},",":{"docs":{},"单":{"docs":{},"位":{"docs":{},":":{"docs":{},"字":{"docs":{},"节":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}}}}}}}},"升":{"docs":{},"级":{"docs":{},"到":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0392156862745098}}}}},"检":{"docs":{},"查":{"docs":{},"应":{"docs":{},"用":{"docs":{},":":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}}}}},"!":{"1":{"docs":{},".":{"docs":{"demos/延迟暴露.html":{"ref":"demos/延迟暴露.html","tf":0.06666666666666667}}}},"docs":{},"在":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"解":{"docs":{},"析":{"docs":{},"到":{"docs":{},"时":{"docs":{},",":{"docs":{},"就":{"docs":{},"已":{"docs":{},"经":{"docs":{},"向":{"docs":{},"外":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"了":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"而":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"还":{"docs":{},"在":{"docs":{},"接":{"docs":{},"着":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"其":{"docs":{},"它":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"。":{"docs":{},"!":{"docs":{},"如":{"docs":{},"果":{"docs":{},"这":{"docs":{},"时":{"docs":{},"有":{"docs":{},"请":{"docs":{},"求":{"docs":{},"进":{"docs":{},"来":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"实":{"docs":{},"现":{"docs":{},"类":{"docs":{},"里":{"docs":{},"有":{"docs":{},"调":{"docs":{},"用":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},"的":{"docs":{},"用":{"docs":{},"法":{"docs":{},"。":{"docs":{"demos/延迟暴露.html":{"ref":"demos/延迟暴露.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.06190476190476191}}}},"*":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762},"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}},"*":{"docs":{},"规":{"docs":{},"避":{"docs":{},"办":{"docs":{},"法":{"docs":{"demos/延迟暴露.html":{"ref":"demos/延迟暴露.html","tf":0.06666666666666667}}}}}}}},"而":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"线":{"docs":{},"程":{"docs":{},",":{"docs":{},"因":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"判":{"docs":{},"断":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"的":{"docs":{},"存":{"docs":{},"在":{"docs":{},",":{"docs":{},"直":{"docs":{},"接":{"docs":{},"同":{"docs":{},"步":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"进":{"docs":{},"行":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},",":{"docs":{},"并":{"docs":{},"同":{"docs":{},"步":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"写":{"docs":{},"入":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"实":{"docs":{},"例":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"。":{"docs":{"demos/延迟暴露.html":{"ref":"demos/延迟暴露.html","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"均":{"docs":{},"衡":{"docs":{"demos/并发控制.html":{"ref":"demos/并发控制.html","tf":0.06666666666666667}}}},"都":{"docs":{},"配":{"docs":{},"了":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"demos/并发控制.html":{"ref":"demos/并发控制.html","tf":0.06666666666666667}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},",":{"docs":{"demos/连接控制.html":{"ref":"demos/连接控制.html","tf":0.14285714285714285}}}}}}}}}}}}}}}}},"限":{"docs":{},"制":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"的":{"docs":{},"s":{"docs":{},"a":{"docs":{},"y":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},"端":{"docs":{},"并":{"docs":{},"发":{"docs":{},"执":{"docs":{},"行":{"docs":{},"(":{"docs":{},"或":{"docs":{},"占":{"docs":{},"用":{"docs":{},"线":{"docs":{},"程":{"docs":{},"池":{"docs":{},"线":{"docs":{},"程":{"docs":{},"数":{"docs":{},")":{"docs":{},"不":{"docs":{},"能":{"docs":{},"超":{"docs":{},"过":{"1":{"0":{"docs":{},"个":{"docs":{},":":{"docs":{"demos/并发控制.html":{"ref":"demos/并发控制.html","tf":0.06666666666666667}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"每":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"并":{"docs":{},"发":{"docs":{},"执":{"docs":{},"行":{"docs":{},"(":{"docs":{},"或":{"docs":{},"占":{"docs":{},"用":{"docs":{},"连":{"docs":{},"接":{"docs":{},"的":{"docs":{},"请":{"docs":{},"求":{"docs":{},"数":{"docs":{},")":{"docs":{},"不":{"docs":{},"能":{"docs":{},"超":{"docs":{},"过":{"1":{"0":{"docs":{},"个":{"docs":{},":":{"docs":{"demos/并发控制.html":{"ref":"demos/并发控制.html","tf":0.06666666666666667}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"每":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},"端":{"docs":{},"并":{"docs":{},"发":{"docs":{},"执":{"docs":{},"行":{"docs":{},"(":{"docs":{},"或":{"docs":{},"占":{"docs":{},"用":{"docs":{},"线":{"docs":{},"程":{"docs":{},"池":{"docs":{},"线":{"docs":{},"程":{"docs":{},"数":{"docs":{},")":{"docs":{},"不":{"docs":{},"能":{"docs":{},"超":{"docs":{},"过":{"1":{"0":{"docs":{},"个":{"docs":{},":":{"docs":{"demos/并发控制.html":{"ref":"demos/并发控制.html","tf":0.06666666666666667}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"每":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"并":{"docs":{},"发":{"docs":{},"执":{"docs":{},"行":{"docs":{},"(":{"docs":{},"或":{"docs":{},"占":{"docs":{},"用":{"docs":{},"连":{"docs":{},"接":{"docs":{},"的":{"docs":{},"请":{"docs":{},"求":{"docs":{},"数":{"docs":{},")":{"docs":{},"不":{"docs":{},"能":{"docs":{},"超":{"docs":{},"过":{"1":{"0":{"docs":{},"个":{"docs":{},":":{"docs":{"demos/并发控制.html":{"ref":"demos/并发控制.html","tf":0.06666666666666667}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"服":{"docs":{},"务":{"docs":{},"使":{"docs":{},"用":{"docs":{},"连":{"docs":{},"接":{"docs":{},"连":{"docs":{},"接":{"docs":{},"数":{"docs":{},":":{"docs":{},"(":{"docs":{},"如":{"docs":{},"果":{"docs":{},"是":{"docs":{},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"表":{"docs":{},"示":{"docs":{},"该":{"docs":{},"服":{"docs":{},"务":{"docs":{},"对":{"docs":{},"每":{"docs":{},"个":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"建":{"docs":{},"立":{"docs":{},"的":{"docs":{},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{},"数":{"docs":{},")":{"docs":{"demos/连接控制.html":{"ref":"demos/连接控制.html","tf":0.14285714285714285}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},"端":{"docs":{},"接":{"docs":{},"受":{"docs":{},"的":{"docs":{},"连":{"docs":{},"接":{"docs":{},"不":{"docs":{},"能":{"docs":{},"超":{"docs":{},"过":{"1":{"0":{"docs":{},"个":{"docs":{},":":{"docs":{},"(":{"docs":{},"因":{"docs":{},"为":{"docs":{},"连":{"docs":{},"接":{"docs":{},"在":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"上":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"配":{"docs":{},"置":{"docs":{},"在":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"上":{"docs":{},")":{"docs":{"demos/连接控制.html":{"ref":"demos/连接控制.html","tf":0.14285714285714285}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}},"还":{"docs":{},"可":{"docs":{},"在":{"docs":{},"协":{"docs":{},"议":{"docs":{},"级":{"docs":{},"别":{"docs":{},"设":{"docs":{},"置":{"docs":{},":":{"docs":{"demos/令牌验证.html":{"ref":"demos/令牌验证.html","tf":0.16666666666666666}}}}}}}}}},"以":{"docs":{},"改":{"docs":{},"为":{"docs":{},":":{"docs":{"demos/服务降级.html":{"ref":"demos/服务降级.html","tf":0.05}}}}}}}},",":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}},"为":{"docs":{},"重":{"docs":{},"要":{"docs":{},"应":{"docs":{},"用":{"docs":{},"提":{"docs":{},"供":{"docs":{},"额":{"docs":{},"外":{"docs":{},"的":{"docs":{},"机":{"docs":{},"器":{"docs":{},":":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}},"什":{"docs":{},"么":{"docs":{},"不":{"docs":{},"能":{"docs":{},"传":{"docs":{},"大":{"docs":{},"包":{"docs":{},"?":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}},"要":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"比":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"个":{"docs":{},"数":{"docs":{},"多":{"docs":{},"?":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}}}}}},"采":{"docs":{},"用":{"docs":{},"异":{"docs":{},"步":{"docs":{},"单":{"docs":{},"一":{"docs":{},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{},"?":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}}}}}},"防":{"docs":{},"止":{"docs":{},"被":{"docs":{},"大":{"docs":{},"量":{"docs":{},"连":{"docs":{},"接":{"docs":{},"撑":{"docs":{},"挂":{"docs":{},",":{"docs":{},"可":{"docs":{},"在":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"限":{"docs":{},"制":{"docs":{},"大":{"docs":{},"接":{"docs":{},"收":{"docs":{},"连":{"docs":{},"接":{"docs":{},"数":{"docs":{},",":{"docs":{},"以":{"docs":{},"实":{"docs":{},"现":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"方":{"docs":{},"自":{"docs":{},"我":{"docs":{},"保":{"docs":{},"护":{"docs":{},"。":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"了":{"docs":{},"减":{"docs":{},"少":{"docs":{},"广":{"docs":{},"播":{"docs":{},"量":{"docs":{},",":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"使":{"docs":{},"用":{"docs":{},"单":{"docs":{},"播":{"docs":{},"发":{"docs":{},"送":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"地":{"docs":{},"址":{"docs":{},"信":{"docs":{},"息":{"docs":{},"给":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"一":{"docs":{},"个":{"docs":{},"机":{"docs":{},"器":{"docs":{},"上":{"docs":{},"同":{"docs":{},"时":{"docs":{},"启":{"docs":{},"了":{"docs":{},"多":{"docs":{},"个":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"进":{"docs":{},"程":{"docs":{},",":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"需":{"docs":{},"声":{"docs":{},"明":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{},"否":{"docs":{},"则":{"docs":{},"只":{"docs":{},"会":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"能":{"docs":{},"收":{"docs":{},"到":{"docs":{},"消":{"docs":{},"息":{"docs":{},":":{"docs":{"reference-registry/multicast.html":{"ref":"reference-registry/multicast.html","tf":0.09090909090909091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"值":{"docs":{},"支":{"docs":{},"持":{"docs":{},":":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}},"前":{"docs":{},"后":{"docs":{},"台":{"docs":{},"分":{"docs":{},"离":{"docs":{},":":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}},"向":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"写":{"docs":{},"入":{"docs":{},"路":{"docs":{},"由":{"docs":{},"规":{"docs":{},"则":{"docs":{},":":{"docs":{},"(":{"docs":{},"通":{"docs":{},"常":{"docs":{},"由":{"docs":{},"监":{"docs":{},"控":{"docs":{},"中":{"docs":{},"心":{"docs":{},"或":{"docs":{},"治":{"docs":{},"理":{"docs":{},"中":{"docs":{},"心":{"docs":{},"的":{"docs":{},"页":{"docs":{},"面":{"docs":{},"完":{"docs":{},"成":{"docs":{},")":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}}}}}}}}},"动":{"docs":{},"态":{"docs":{},"配":{"docs":{},"置":{"docs":{},"覆":{"docs":{},"盖":{"docs":{},"规":{"docs":{},"则":{"docs":{},":":{"docs":{},"(":{"docs":{},"通":{"docs":{},"常":{"docs":{},"由":{"docs":{},"监":{"docs":{},"控":{"docs":{},"中":{"docs":{},"心":{"docs":{},"或":{"docs":{},"治":{"docs":{},"理":{"docs":{},"中":{"docs":{},"心":{"docs":{},"的":{"docs":{},"页":{"docs":{},"面":{"docs":{},"完":{"docs":{},"成":{"docs":{},")":{"docs":{"demos/配置规则.html":{"ref":"demos/配置规则.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}}}},"过":{"docs":{},"由":{"docs":{},"监":{"docs":{},"控":{"docs":{},"中":{"docs":{},"心":{"docs":{},"或":{"docs":{},"治":{"docs":{},"理":{"docs":{},"中":{"docs":{},"心":{"docs":{},"的":{"docs":{},"页":{"docs":{},"面":{"docs":{},"完":{"docs":{},"成":{"docs":{},")":{"docs":{"demos/服务降级.html":{"ref":"demos/服务降级.html","tf":0.05}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"指":{"docs":{},"定":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"注":{"docs":{},"册":{"docs":{},",":{"docs":{},"在":{"docs":{},"多":{"docs":{},"个":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"时":{"docs":{},"使":{"docs":{},"用":{"docs":{},",":{"docs":{},"值":{"docs":{},"为":{"docs":{"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}},"的":{"docs":{},"i":{"docs":{},"d":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"多":{"docs":{},"个":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"i":{"docs":{},"d":{"docs":{},"用":{"docs":{},"逗":{"docs":{},"号":{"docs":{},"分":{"docs":{},"隔":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"不":{"docs":{},"想":{"docs":{},"将":{"docs":{},"该":{"docs":{},"服":{"docs":{},"务":{"docs":{},"注":{"docs":{},"册":{"docs":{},"到":{"docs":{},"任":{"docs":{},"何":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},",":{"docs":{},"可":{"docs":{},"将":{"docs":{},"值":{"docs":{},"设":{"docs":{},"为":{"docs":{},"n":{"docs":{},"/":{"docs":{},"a":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"/":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"目":{"docs":{},"录":{"docs":{},"下":{"docs":{},"写":{"docs":{},"入":{"docs":{},"自":{"docs":{},"己":{"docs":{},"的":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"地":{"docs":{},"址":{"docs":{},"。":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"排":{"docs":{},"除":{"docs":{},"预":{"docs":{},"发":{"docs":{},"布":{"docs":{},"机":{"docs":{},":":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}},"是":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.006289308176100629}},"否":{"docs":{},"在":{"docs":{},"每":{"docs":{},"次":{"docs":{},"调":{"docs":{},"用":{"docs":{},"时":{"docs":{},"执":{"docs":{},"行":{"docs":{},"路":{"docs":{},"由":{"docs":{},"规":{"docs":{},"则":{"docs":{},",":{"docs":{},"否":{"docs":{},"则":{"docs":{},"只":{"docs":{},"在":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"地":{"docs":{},"址":{"docs":{},"列":{"docs":{},"表":{"docs":{},"变":{"docs":{},"更":{"docs":{},"时":{"docs":{},"预":{"docs":{},"先":{"docs":{},"执":{"docs":{},"行":{"docs":{},"并":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"结":{"docs":{},"果":{"docs":{},",":{"docs":{},"调":{"docs":{},"用":{"docs":{},"时":{"docs":{},"直":{"docs":{},"接":{"docs":{},"从":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"中":{"docs":{},"获":{"docs":{},"取":{"docs":{},"路":{"docs":{},"由":{"docs":{},"结":{"docs":{},"果":{"docs":{},"。":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},"时":{"docs":{},"饥":{"docs":{},"饿":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"否":{"docs":{},"则":{"docs":{},"等":{"docs":{},"到":{"docs":{},"有":{"docs":{},"人":{"docs":{},"注":{"docs":{},"入":{"docs":{},"或":{"docs":{},"引":{"docs":{},"用":{"docs":{},"该":{"docs":{},"实":{"docs":{},"例":{"docs":{},"时":{"docs":{},"再":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"。":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"必":{"docs":{},"填":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258},"reference-xmlconf/dubbo-monitor.html":{"ref":"reference-xmlconf/dubbo-monitor.html","tf":0.03571428571428571},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176},"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.02564102564102564},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761},"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421},"reference-xmlconf/dubbo-parameter.html":{"ref":"reference-xmlconf/dubbo-parameter.html","tf":0.038461538461538464}}}},"缺":{"docs":{},"省":{"docs":{},"异":{"docs":{},"步":{"docs":{},"执":{"docs":{},"行":{"docs":{},",":{"docs":{},"不":{"docs":{},"可":{"docs":{},"靠":{"docs":{},"异":{"docs":{},"步":{"docs":{},",":{"docs":{},"只":{"docs":{},"是":{"docs":{},"忽":{"docs":{},"略":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},",":{"docs":{},"不":{"docs":{},"阻":{"docs":{},"塞":{"docs":{},"执":{"docs":{},"行":{"docs":{},"线":{"docs":{},"程":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}},"泛":{"docs":{},"化":{"docs":{},"接":{"docs":{},"口":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"为":{"docs":{},"泛":{"docs":{},"化":{"docs":{},"接":{"docs":{},"口":{"docs":{},",":{"docs":{},"将":{"docs":{},"返":{"docs":{},"回":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"启":{"docs":{},"用":{"docs":{},"j":{"docs":{},"s":{"docs":{},"r":{"3":{"0":{"3":{"docs":{},"标":{"docs":{},"准":{"docs":{},"注":{"docs":{},"解":{"docs":{},"验":{"docs":{},"证":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"启":{"docs":{},"用":{"docs":{},",":{"docs":{},"将":{"docs":{},"对":{"docs":{},"方":{"docs":{},"法":{"docs":{},"参":{"docs":{},"数":{"docs":{},"上":{"docs":{},"的":{"docs":{},"注":{"docs":{},"解":{"docs":{},"进":{"docs":{},"行":{"docs":{},"校":{"docs":{},"验":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}},"异":{"docs":{},"步":{"docs":{},"执":{"docs":{},"行":{"docs":{},",":{"docs":{},"不":{"docs":{},"可":{"docs":{},"靠":{"docs":{},"异":{"docs":{},"步":{"docs":{},",":{"docs":{},"只":{"docs":{},"是":{"docs":{},"忽":{"docs":{},"略":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},",":{"docs":{},"不":{"docs":{},"阻":{"docs":{},"塞":{"docs":{},"执":{"docs":{},"行":{"docs":{},"线":{"docs":{},"程":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}}}}}}}}}}}}}}}}}}}}}}},"向":{"docs":{},"此":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"注":{"docs":{},"册":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"设":{"docs":{},"为":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{},"将":{"docs":{},"只":{"docs":{},"订":{"docs":{},"阅":{"docs":{},",":{"docs":{},"不":{"docs":{},"注":{"docs":{},"册":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}}}}}}}}}},"订":{"docs":{},"阅":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"设":{"docs":{},"为":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{},"将":{"docs":{},"只":{"docs":{},"注":{"docs":{},"册":{"docs":{},",":{"docs":{},"不":{"docs":{},"订":{"docs":{},"阅":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"为":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"多":{"docs":{},"协":{"docs":{},"议":{"docs":{"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}}}}}}}}}}},"满":{"docs":{},"足":{"docs":{},"期":{"docs":{},"望":{"docs":{},"(":{"docs":{},"是":{"docs":{},"/":{"docs":{},"否":{"docs":{},")":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"开":{"docs":{},"源":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564}}}}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"捐":{"docs":{},"给":{"docs":{},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"r":{"docs":{},"p":{"docs":{},"c":{"docs":{},"框":{"docs":{},"架":{"docs":{"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":0.04}}}}}}}}}}}}}}}}}}}}}}}}}},"一":{"docs":{},"个":{"docs":{},"高":{"docs":{},"效":{"docs":{},"的":{"docs":{},"k":{"docs":{},"v":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},"。":{"docs":{"reference-protocol/memcached.html":{"ref":"reference-protocol/memcached.html","tf":0.047619047619047616}}}}}}}},"存":{"docs":{},"储":{"docs":{},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},"。":{"docs":{"reference-protocol/redis.html":{"ref":"reference-protocol/redis.html","tf":0.05}},"安":{"docs":{},"装":{"docs":{},"方":{"docs":{},"式":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"a":{"docs":{},"h":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"f":{"docs":{},"l":{"docs":{},"i":{"docs":{},"x":{"docs":{},"开":{"docs":{},"源":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"实":{"docs":{},"现":{"docs":{},",":{"docs":{},"比":{"docs":{},"较":{"docs":{},"活":{"docs":{},"跃":{"docs":{},"。":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"白":{"docs":{},"名":{"docs":{},"单":{"docs":{},":":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}},"规":{"docs":{},"则":{"docs":{},":":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}},"读":{"docs":{},"写":{"docs":{},"分":{"docs":{},"离":{"docs":{},":":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}},"隔":{"docs":{},"离":{"docs":{},"不":{"docs":{},"同":{"docs":{},"机":{"docs":{},"房":{"docs":{},"网":{"docs":{},"段":{"docs":{},":":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}}}}}}},"黑":{"docs":{},"名":{"docs":{},"单":{"docs":{},":":{"docs":{"demos/路由规则.html":{"ref":"demos/路由规则.html","tf":0.004761904761904762}}}}}},"容":{"docs":{},"忍":{"docs":{},"不":{"docs":{},"重":{"docs":{},"要":{"docs":{},"服":{"docs":{},"务":{"docs":{},"不":{"docs":{},"稳":{"docs":{},"定":{"docs":{},"时":{"docs":{},"对":{"docs":{},"调":{"docs":{},"用":{"docs":{},"方":{"docs":{},"的":{"docs":{},"影":{"docs":{},"响":{"docs":{},"。":{"docs":{"demos/服务降级.html":{"ref":"demos/服务降级.html","tf":0.05}}}}}}}}}}}}}}}}}}}},"器":{"docs":{},"启":{"docs":{},"动":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}},"量":{"docs":{},"规":{"docs":{},"划":{"docs":{"capacity-plan.html":{"ref":"capacity-plan.html","tf":5}}}}}},"屏":{"docs":{},"蔽":{"docs":{},"不":{"docs":{},"重":{"docs":{},"要":{"docs":{},"服":{"docs":{},"务":{"docs":{},"不":{"docs":{},"可":{"docs":{},"用":{"docs":{},"时":{"docs":{},"对":{"docs":{},"调":{"docs":{},"用":{"docs":{},"方":{"docs":{},"的":{"docs":{},"影":{"docs":{},"响":{"docs":{},"。":{"docs":{"demos/服务降级.html":{"ref":"demos/服务降级.html","tf":0.05}}}}}}}}}}}}}}}}}}}}},"停":{"docs":{},"止":{"docs":{},"时":{"docs":{},",":{"docs":{},"不":{"docs":{},"再":{"docs":{},"发":{"docs":{},"起":{"docs":{},"新":{"docs":{},"的":{"docs":{},"调":{"docs":{},"用":{"docs":{},"请":{"docs":{},"求":{"docs":{},",":{"docs":{},"所":{"docs":{},"有":{"docs":{},"新":{"docs":{},"的":{"docs":{},"调":{"docs":{},"用":{"docs":{},"在":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"即":{"docs":{},"报":{"docs":{},"错":{"docs":{},"。":{"docs":{"demos/优雅停机.html":{"ref":"demos/优雅停机.html","tf":0.07142857142857142}}}}}}}}}}}}}}}}}}}}}}}}}}},"先":{"docs":{},"标":{"docs":{},"记":{"docs":{},"为":{"docs":{},"不":{"docs":{},"接":{"docs":{},"收":{"docs":{},"新":{"docs":{},"请":{"docs":{},"求":{"docs":{},",":{"docs":{},"新":{"docs":{},"请":{"docs":{},"求":{"docs":{},"过":{"docs":{},"来":{"docs":{},"时":{"docs":{},"直":{"docs":{},"接":{"docs":{},"报":{"docs":{},"错":{"docs":{},",":{"docs":{},"让":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"重":{"docs":{},"试":{"docs":{},"其":{"docs":{},"它":{"docs":{},"机":{"docs":{},"器":{"docs":{},"。":{"docs":{"demos/优雅停机.html":{"ref":"demos/优雅停机.html","tf":0.07142857142857142}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"等":{"docs":{},"待":{"docs":{},"通":{"docs":{},"知":{"docs":{},"完":{"docs":{},"成":{"docs":{},"时":{"docs":{},"间":{"docs":{},"(":{"docs":{},"毫":{"docs":{},"秒":{"docs":{},")":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}},"原":{"docs":{},"理":{"docs":{"demos/优雅停机.html":{"ref":"demos/优雅停机.html","tf":0.07142857142857142}}},"生":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"扩":{"docs":{},"展":{"docs":{},",":{"docs":{},"在":{"docs":{},"原":{"docs":{},"生":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"基":{"docs":{},"础":{"docs":{},"上":{"docs":{},"添":{"docs":{},"加":{"docs":{},"了":{"docs":{},"一":{"docs":{},"些":{"docs":{},"额":{"docs":{},"外":{"docs":{},"的":{"docs":{},"头":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"reference-protocol/thrift.html":{"ref":"reference-protocol/thrift.html","tf":0.04}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"因":{"docs":{},"如":{"docs":{},"下":{"docs":{},":":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}},"主":{"docs":{},"机":{"docs":{},"端":{"docs":{},"口":{"docs":{},"配":{"docs":{},"置":{"docs":{},":":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.03333333333333333}}}}}}},"绑":{"docs":{},"定":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":5}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"为":{"docs":{},"服":{"docs":{},"务":{"docs":{},"名":{"docs":{},"和":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}},"要":{"docs":{},"考":{"docs":{},"察":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},"和":{"docs":{},"网":{"docs":{},"络":{"docs":{},"i":{"docs":{},"o":{"docs":{},"的":{"docs":{},"性":{"docs":{},"能":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"服":{"docs":{},"务":{"docs":{},"端":{"docs":{},"无":{"docs":{},"任":{"docs":{},"何":{"docs":{},"业":{"docs":{},"务":{"docs":{},"逻":{"docs":{},"辑":{"docs":{},"。":{"docs":{},"取":{"1":{"0":{"docs":{},"并":{"docs":{},"发":{"docs":{},"是":{"docs":{},"考":{"docs":{},"虑":{"docs":{},"到":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"协":{"docs":{},"议":{"docs":{},"在":{"docs":{},"高":{"docs":{},"并":{"docs":{},"发":{"docs":{},"下":{"docs":{},"对":{"docs":{},"c":{"docs":{},"p":{"docs":{},"u":{"docs":{},"的":{"docs":{},"使":{"docs":{},"用":{"docs":{},"率":{"docs":{},"较":{"docs":{},"高":{"docs":{},"可":{"docs":{},"能":{"docs":{},"会":{"docs":{},"先":{"docs":{},"打":{"docs":{},"到":{"docs":{},"瓶":{"docs":{},"颈":{"docs":{},"。":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"公":{"docs":{},"网":{"docs":{},"i":{"docs":{},"p":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},":":{"docs":{"demos/主机绑定.html":{"ref":"demos/主机绑定.html","tf":0.03333333333333333}}}}}}}}}},"扩":{"docs":{},"展":{"docs":{},"点":{"docs":{},":":{"docs":{},"日":{"docs":{},"志":{"docs":{},"适":{"docs":{},"配":{"docs":{},"扩":{"docs":{},"展":{"docs":{"demos/日志适配.html":{"ref":"demos/日志适配.html","tf":0.07692307692307693}}}}}}}}}}}},"日":{"docs":{},"志":{"docs":{},"适":{"docs":{},"配":{"docs":{"demos/日志适配.html":{"ref":"demos/日志适配.html","tf":5}}}},"输":{"docs":{},"出":{"docs":{},"方":{"docs":{},"式":{"docs":{},",":{"docs":{},"可":{"docs":{},"选":{"docs":{},":":{"docs":{},"s":{"docs":{},"l":{"docs":{},"f":{"4":{"docs":{},"j":{"docs":{},",":{"docs":{},"j":{"docs":{},"c":{"docs":{},"l":{"docs":{},",":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"4":{"docs":{},"j":{"docs":{},",":{"docs":{},"j":{"docs":{},"d":{"docs":{},"k":{"docs":{"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176}}}}}}}},"docs":{}}}}}}}}}}},"docs":{}}}}}}}}}}}}}},"目":{"docs":{},"录":{"docs":{},"下":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{"demos/服务容器.html":{"ref":"demos/服务容器.html","tf":0.018867924528301886}}}}}}},"前":{"docs":{},"有":{"docs":{},"负":{"docs":{},"责":{"docs":{},"人":{"docs":{},"信":{"docs":{},"息":{"docs":{},"和":{"docs":{},"组":{"docs":{},"织":{"docs":{},"信":{"docs":{},"息":{"docs":{},"(":{"docs":{},"用":{"docs":{},"于":{"docs":{},"区":{"docs":{},"分":{"docs":{},"站":{"docs":{},"点":{"docs":{},")":{"docs":{},"。":{"docs":{},"有":{"docs":{},"问":{"docs":{},"题":{"docs":{},"时":{"docs":{},"便":{"docs":{},"于":{"docs":{},"的":{"docs":{},"找":{"docs":{},"到":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"负":{"docs":{},"责":{"docs":{},"人":{"docs":{},",":{"docs":{},"至":{"docs":{},"少":{"docs":{},"写":{"docs":{},"两":{"docs":{},"个":{"docs":{},"人":{"docs":{},"以":{"docs":{},"便":{"docs":{},"备":{"docs":{},"份":{"docs":{},"。":{"docs":{},"负":{"docs":{},"责":{"docs":{},"人":{"docs":{},"和":{"docs":{},"组":{"docs":{},"织":{"docs":{},"的":{"docs":{},"信":{"docs":{},"息":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"的":{"docs":{},"上":{"docs":{},"看":{"docs":{},"到":{"docs":{},"。":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},";":{"docs":{"demos/ReferenceConfig缓存.html":{"ref":"demos/ReferenceConfig缓存.html","tf":0.02127659574468085}}}},"两":{"docs":{},"阶":{"docs":{},"段":{"docs":{},"提":{"docs":{},"交":{"docs":{},":":{"docs":{"demos/分布式事务.html":{"ref":"demos/分布式事务.html","tf":0.3333333333333333}}}}}}}},"暂":{"docs":{},"未":{"docs":{},"实":{"docs":{},"现":{"docs":{},"。":{"docs":{"demos/分布式事务.html":{"ref":"demos/分布式事务.html","tf":0.3333333333333333}}}}}}},"&":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.1}}},"详":{"docs":{},"细":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"配":{"docs":{},"置":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}}},"上":{"docs":{},"下":{"docs":{},"文":{"docs":{},"信":{"docs":{},"息":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}}},"回":{"docs":{},"声":{"docs":{},"测":{"docs":{},"试":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}},"泛":{"docs":{},"化":{"docs":{},"引":{"docs":{},"用":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}},"注":{"docs":{},"解":{"docs":{},"配":{"docs":{},"置":{"docs":{"reference-apiconf/api.html":{"ref":"reference-apiconf/api.html","tf":0.025}}}}}}}}},"配":{"docs":{},"置":{"docs":{},"说":{"docs":{},"明":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"配":{"docs":{},"置":{"docs":{},"参":{"docs":{},"考":{"docs":{},"手":{"docs":{},"册":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}},"作":{"docs":{},"用":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258},"reference-xmlconf/dubbo-monitor.html":{"ref":"reference-xmlconf/dubbo-monitor.html","tf":0.03571428571428571},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176},"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.02564102564102564},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761},"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421},"reference-xmlconf/dubbo-parameter.html":{"ref":"reference-xmlconf/dubbo-parameter.html","tf":0.038461538461538464}}},"为":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.014084507042253521}}},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},",":{"docs":{},"比":{"docs":{},"服":{"docs":{},"务":{"docs":{},"使":{"docs":{},"用":{"docs":{},"方":{"docs":{},"更":{"docs":{},"清":{"docs":{},"楚":{"docs":{},"服":{"docs":{},"务":{"docs":{},"性":{"docs":{},"能":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"如":{"docs":{},"调":{"docs":{},"用":{"docs":{},"的":{"docs":{},"超":{"docs":{},"时":{"docs":{},"时":{"docs":{},"间":{"docs":{},",":{"docs":{},"合":{"docs":{},"理":{"docs":{},"的":{"docs":{},"重":{"docs":{},"试":{"docs":{},"次":{"docs":{},"数":{"docs":{},",":{"docs":{},"等":{"docs":{},"等":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"兼":{"docs":{},"容":{"docs":{},"性":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258},"reference-xmlconf/dubbo-monitor.html":{"ref":"reference-xmlconf/dubbo-monitor.html","tf":0.03571428571428571},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176},"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.02564102564102564},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761},"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421},"reference-xmlconf/dubbo-parameter.html":{"ref":"reference-xmlconf/dubbo-parameter.html","tf":0.038461538461538464},"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}},":":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}},"声":{"docs":{},"明":{"docs":{},"因":{"2":{"docs":{},".":{"0":{"docs":{},".":{"8":{"docs":{},"最":{"docs":{},"初":{"docs":{},"设":{"docs":{},"计":{"docs":{},"的":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"存":{"docs":{},"储":{"docs":{},"结":{"docs":{},"构":{"docs":{},"不":{"docs":{},"能":{"docs":{},"扩":{"docs":{},"充":{"docs":{},"不":{"docs":{},"同":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"数":{"docs":{},"据":{"docs":{},",":{"2":{"docs":{},".":{"0":{"docs":{},".":{"9":{"docs":{},"版":{"docs":{},"本":{"docs":{},"做":{"docs":{},"了":{"docs":{},"调":{"docs":{},"整":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"不":{"docs":{},"兼":{"docs":{},"容":{"docs":{},",":{"docs":{},"需":{"docs":{},"全":{"docs":{},"部":{"docs":{},"改":{"docs":{},"用":{"2":{"docs":{},".":{"0":{"docs":{},".":{"9":{"docs":{},"版":{"docs":{},"本":{"docs":{},"才":{"docs":{},"行":{"docs":{},",":{"docs":{},"以":{"docs":{},"后":{"docs":{},"的":{"docs":{},"版":{"docs":{},"本":{"docs":{},"会":{"docs":{},"保":{"docs":{},"持":{"docs":{},"兼":{"docs":{},"容":{"2":{"docs":{},".":{"0":{"docs":{},".":{"9":{"docs":{},"。":{"2":{"docs":{},".":{"2":{"docs":{},".":{"0":{"docs":{},"版":{"docs":{},"本":{"docs":{},"改":{"docs":{},"为":{"docs":{},"基":{"docs":{},"于":{"docs":{},"z":{"docs":{},"k":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"实":{"docs":{},"现":{"docs":{},",":{"docs":{},"需":{"docs":{},"增":{"docs":{},"加":{"docs":{},"z":{"docs":{},"k":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"的":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"包":{"docs":{},",":{"2":{"docs":{},".":{"3":{"docs":{},".":{"0":{"docs":{},"版":{"docs":{},"本":{"docs":{},"增":{"docs":{},"加":{"docs":{},"了":{"docs":{},"基":{"docs":{},"于":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"的":{"docs":{},"实":{"docs":{},"现":{"docs":{},",":{"docs":{},"作":{"docs":{},"为":{"docs":{},"可":{"docs":{},"选":{"docs":{},"实":{"docs":{},"现":{"docs":{},"策":{"docs":{},"略":{"docs":{},"。":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}},"描":{"docs":{},"述":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258},"reference-xmlconf/dubbo-monitor.html":{"ref":"reference-xmlconf/dubbo-monitor.html","tf":0.03571428571428571},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176},"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.02564102564102564},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761},"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421},"reference-xmlconf/dubbo-parameter.html":{"ref":"reference-xmlconf/dubbo-parameter.html","tf":0.038461538461538464}}}},"标":{"docs":{},"签":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.016129032258064516},"reference-xmlconf/dubbo-monitor.html":{"ref":"reference-xmlconf/dubbo-monitor.html","tf":0.03571428571428571},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176},"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.02564102564102564},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761},"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421},"reference-xmlconf/dubbo-parameter.html":{"ref":"reference-xmlconf/dubbo-parameter.html","tf":0.038461538461538464}}},"识":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761},"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.05263157894736842}}}},"每":{"docs":{},"服":{"docs":{},"务":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"每":{"docs":{},"服":{"docs":{},"务":{"docs":{},"每":{"docs":{},"方":{"docs":{},"法":{"docs":{},"最":{"docs":{},"大":{"docs":{},"并":{"docs":{},"发":{"docs":{},"调":{"docs":{},"用":{"docs":{},"数":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}}}}}}}}}},"最":{"docs":{},"大":{"docs":{},"并":{"docs":{},"发":{"docs":{},"调":{"docs":{},"用":{"docs":{},"限":{"docs":{},"制":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}}}}}}}},"每":{"docs":{},"方":{"docs":{},"法":{"docs":{},"最":{"docs":{},"大":{"docs":{},"使":{"docs":{},"用":{"docs":{},"线":{"docs":{},"程":{"docs":{},"数":{"docs":{},"限":{"docs":{},"制":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}}}}}}}}}}},"个":{"docs":{},"服":{"docs":{},"务":{"docs":{},"对":{"docs":{},"每":{"docs":{},"个":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"的":{"docs":{},"最":{"docs":{},"大":{"docs":{},"连":{"docs":{},"接":{"docs":{},"数":{"docs":{},",":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"、":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"、":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"等":{"docs":{},"短":{"docs":{},"连":{"docs":{},"接":{"docs":{},"协":{"docs":{},"议":{"docs":{},"支":{"docs":{},"持":{"docs":{},"此":{"docs":{},"配":{"docs":{},"置":{"docs":{},",":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"协":{"docs":{},"议":{"docs":{},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{},"不":{"docs":{},"支":{"docs":{},"持":{"docs":{},"此":{"docs":{},"配":{"docs":{},"置":{"docs":{"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"接":{"docs":{},"口":{"docs":{},"都":{"docs":{},"应":{"docs":{},"定":{"docs":{},"义":{"docs":{},"版":{"docs":{},"本":{"docs":{},"号":{"docs":{},",":{"docs":{},"为":{"docs":{},"后":{"docs":{},"续":{"docs":{},"不":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"升":{"docs":{},"级":{"docs":{},"提":{"docs":{},"供":{"docs":{},"可":{"docs":{},"能":{"docs":{},",":{"docs":{},"如":{"docs":{},":":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}}}}}}}}}}}}}}},"天":{"docs":{},"接":{"docs":{},"收":{"3":{"docs":{},"亿":{"docs":{},"次":{"docs":{},"远":{"docs":{},"程":{"docs":{},"调":{"docs":{},"用":{"docs":{"capacity-plan.html":{"ref":"capacity-plan.html","tf":0.09090909090909091}}}}}}}}},"4":{"docs":{},"亿":{"docs":{},"次":{"docs":{},"远":{"docs":{},"程":{"docs":{},"调":{"docs":{},"用":{"docs":{"capacity-plan.html":{"ref":"capacity-plan.html","tf":0.09090909090909091}}}}}}}}},"docs":{}}}}},"生":{"docs":{},"成":{"docs":{},"动":{"docs":{},"态":{"docs":{},"代":{"docs":{},"理":{"docs":{},"方":{"docs":{},"式":{"docs":{},",":{"docs":{},"可":{"docs":{},"选":{"docs":{},":":{"docs":{},"j":{"docs":{},"d":{"docs":{},"k":{"docs":{},"/":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"应":{"docs":{},"用":{"docs":{"reference-maven/maven.html":{"ref":"reference-maven/maven.html","tf":0.05555555555555555}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{"reference-xmlconf/dubbo-service.html":{"ref":"reference-xmlconf/dubbo-service.html","tf":0.003968253968253968},"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258},"reference-xmlconf/dubbo-monitor.html":{"ref":"reference-xmlconf/dubbo-monitor.html","tf":0.03571428571428571},"reference-xmlconf/dubbo-application.html":{"ref":"reference-xmlconf/dubbo-application.html","tf":0.014705882352941176},"reference-xmlconf/dubbo-module.html":{"ref":"reference-xmlconf/dubbo-module.html","tf":0.02564102564102564},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761},"reference-xmlconf/dubbo-argument.html":{"ref":"reference-xmlconf/dubbo-argument.html","tf":0.02631578947368421},"reference-xmlconf/dubbo-parameter.html":{"ref":"reference-xmlconf/dubbo-parameter.html","tf":0.038461538461538464}}},"a":{"docs":{},"多":{"docs":{},"一":{"docs":{},"种":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"传":{"docs":{},"输":{"docs":{},"类":{"docs":{},"型":{"docs":{},"设":{"docs":{},"置":{"docs":{},",":{"docs":{},"如":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},"或":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"。":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}}},"i":{"docs":{},"d":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"多":{"docs":{},"个":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"i":{"docs":{},"d":{"docs":{},"用":{"docs":{},"逗":{"docs":{},"号":{"docs":{},"分":{"docs":{},"隔":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"不":{"docs":{},"想":{"docs":{},"将":{"docs":{},"该":{"docs":{},"服":{"docs":{},"务":{"docs":{},"注":{"docs":{},"册":{"docs":{},"到":{"docs":{},"任":{"docs":{},"何":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},",":{"docs":{},"可":{"docs":{},"将":{"docs":{},"值":{"docs":{},"设":{"docs":{},"为":{"docs":{},"n":{"docs":{},"/":{"docs":{},"a":{"docs":{"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475},"reference-xmlconf/dubbo-consumer.html":{"ref":"reference-xmlconf/dubbo-consumer.html","tf":0.006666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045},"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.007042253521126761}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}}}}}},"签":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}},"选":{"docs":{},"择":{"docs":{},"动":{"docs":{},"态":{"docs":{},"代":{"docs":{},"理":{"docs":{},"实":{"docs":{},"现":{"docs":{},"策":{"docs":{},"略":{"docs":{},",":{"docs":{},"可":{"docs":{},"选":{"docs":{},":":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},",":{"docs":{"reference-xmlconf/dubbo-reference.html":{"ref":"reference-xmlconf/dubbo-reference.html","tf":0.0045045045045045045}}}}}}}}}}}}}}}}}}}}}}}}},"项":{"docs":{},"参":{"docs":{},"数":{"docs":{},"配":{"docs":{},"置":{"docs":{},":":{"docs":{},"配":{"docs":{},"置":{"docs":{},"类":{"docs":{},":":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},".":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"说":{"docs":{},"明":{"docs":{},":":{"docs":{},"该":{"docs":{},"标":{"docs":{},"签":{"docs":{},"为":{"docs":{},"|":{"docs":{},"或":{"docs":{},"|":{"docs":{},"或":{"docs":{},"|":{"docs":{},"或":{"docs":{},"|":{"docs":{},"或":{"docs":{},"|":{"docs":{},"的":{"docs":{},"子":{"docs":{},"标":{"docs":{},"签":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"配":{"docs":{},"置":{"docs":{},"自":{"docs":{},"定":{"docs":{},"义":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"该":{"docs":{},"配":{"docs":{},"置":{"docs":{},"项":{"docs":{},"将":{"docs":{},"作":{"docs":{},"为":{"docs":{},"扩":{"docs":{},"展":{"docs":{},"点":{"docs":{},"设":{"docs":{},"置":{"docs":{},"自":{"docs":{},"定":{"docs":{},"义":{"docs":{},"参":{"docs":{},"数":{"docs":{},"使":{"docs":{},"用":{"docs":{},"。":{"docs":{"reference-xmlconf/dubbo-parameter.html":{"ref":"reference-xmlconf/dubbo-parameter.html","tf":0.038461538461538464}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}},"编":{"docs":{},"码":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805},"reference-xmlconf/dubbo-provider.html":{"ref":"reference-xmlconf/dubbo-provider.html","tf":0.002793296089385475}}}},":":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"二":{"docs":{},"进":{"docs":{},"制":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403},"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564}}}}}}}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"标":{"docs":{},"准":{"docs":{},"二":{"docs":{},"进":{"docs":{},"制":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}}}}}}}}}}},"表":{"docs":{},"单":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353}}}}}}},"s":{"docs":{},"o":{"docs":{},"a":{"docs":{},"p":{"docs":{},"文":{"docs":{},"本":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}}}}}}}}},"心":{"docs":{},"跳":{"docs":{},"间":{"docs":{},"隔":{"docs":{},",":{"docs":{},"对":{"docs":{},"于":{"docs":{},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{},",":{"docs":{},"当":{"docs":{},"物":{"docs":{},"理":{"docs":{},"层":{"docs":{},"断":{"docs":{},"开":{"docs":{},"时":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"拔":{"docs":{},"网":{"docs":{},"线":{"docs":{},",":{"docs":{},"t":{"docs":{},"c":{"docs":{},"p":{"docs":{},"的":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"消":{"docs":{},"息":{"docs":{},"来":{"docs":{},"不":{"docs":{},"及":{"docs":{},"发":{"docs":{},"送":{"docs":{},",":{"docs":{},"对":{"docs":{},"方":{"docs":{},"收":{"docs":{},"不":{"docs":{},"到":{"docs":{},"断":{"docs":{},"开":{"docs":{},"事":{"docs":{},"件":{"docs":{},",":{"docs":{},"此":{"docs":{},"时":{"docs":{},"需":{"docs":{},"要":{"docs":{},"心":{"docs":{},"跳":{"docs":{},"来":{"docs":{},"帮":{"docs":{},"助":{"docs":{},"检":{"docs":{},"查":{"docs":{},"连":{"docs":{},"接":{"docs":{},"是":{"docs":{},"否":{"docs":{},"已":{"docs":{},"断":{"docs":{},"开":{"docs":{"reference-xmlconf/dubbo-protocol.html":{"ref":"reference-xmlconf/dubbo-protocol.html","tf":0.004878048780487805}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"登":{"docs":{},"录":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"密":{"docs":{},"码":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"验":{"docs":{},"证":{"docs":{},"可":{"docs":{},"不":{"docs":{},"填":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"户":{"docs":{},"名":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"验":{"docs":{},"证":{"docs":{},"可":{"docs":{},"不":{"docs":{},"填":{"docs":{"reference-xmlconf/dubbo-registry.html":{"ref":"reference-xmlconf/dubbo-registry.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}}}}}}}}}}},"子":{"docs":{},"标":{"docs":{},"签":{"docs":{},"时":{"docs":{},"有":{"docs":{},"效":{"docs":{"reference-xmlconf/dubbo-method.html":{"ref":"reference-xmlconf/dubbo-method.html","tf":0.014084507042253521}}}}}}}},"推":{"docs":{},"荐":{"docs":{},"使":{"docs":{},"用":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"协":{"docs":{},"议":{"docs":{"reference-protocol/introduction.html":{"ref":"reference-protocol/introduction.html","tf":0.3333333333333333}}}}}}}}},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{"reference-registry/introduction.html":{"ref":"reference-registry/introduction.html","tf":1}}}}}}}}}}}}}}}}},"用":{"docs":{},"法":{"docs":{"recommend.html":{"ref":"recommend.html","tf":5}}}}}},"个":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"b":{"docs":{},"没":{"docs":{},"有":{"docs":{},",":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}}}},"传":{"docs":{},"输":{"docs":{},"协":{"docs":{},"议":{"docs":{},":":{"docs":{},"t":{"docs":{},"c":{"docs":{},"p":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403},"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564},"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}}},"方":{"docs":{},"式":{"docs":{},":":{"docs":{},"n":{"docs":{},"i":{"docs":{},"o":{"docs":{},"异":{"docs":{},"步":{"docs":{},"传":{"docs":{},"输":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}},"同":{"docs":{},"步":{"docs":{},"传":{"docs":{},"输":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549},"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564},"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}}}},"入":{"1":{"docs":{},"k":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{},"不":{"docs":{},"做":{"docs":{},"任":{"docs":{},"何":{"docs":{},"处":{"docs":{},"理":{"docs":{},",":{"docs":{},"原":{"docs":{},"样":{"docs":{},"返":{"docs":{},"回":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}},"在":{"docs":{},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},"段":{"docs":{},"循":{"docs":{},"环":{"1":{"docs":{},"w":{"docs":{},"次":{"docs":{},",":{"docs":{},"每":{"docs":{},"次":{"docs":{},"重":{"docs":{},"新":{"docs":{},"生":{"docs":{},"成":{"docs":{},"一":{"docs":{},"个":{"docs":{},"随":{"docs":{},"机":{"docs":{},"数":{"docs":{},"然":{"docs":{},"后":{"docs":{},"进":{"docs":{},"行":{"docs":{},"拼":{"docs":{},"装":{"docs":{},"。":{"docs":{},"考":{"docs":{},"察":{"docs":{},"业":{"docs":{},"务":{"docs":{},"线":{"docs":{},"程":{"docs":{},"是":{"docs":{},"否":{"docs":{},"能":{"docs":{},"够":{"docs":{},"分":{"docs":{},"配":{"docs":{},"到":{"docs":{},"每":{"docs":{},"个":{"docs":{},"c":{"docs":{},"p":{"docs":{},"u":{"docs":{},"上":{"docs":{},"。":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}},"2":{"0":{"0":{"docs":{},"k":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{},"不":{"docs":{},"做":{"docs":{},"任":{"docs":{},"何":{"docs":{},"处":{"docs":{},"理":{"docs":{},",":{"docs":{},"原":{"docs":{},"样":{"docs":{},"返":{"docs":{},"回":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"5":{"0":{"docs":{},"k":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{},"不":{"docs":{},"做":{"docs":{},"任":{"docs":{},"何":{"docs":{},"处":{"docs":{},"理":{"docs":{},",":{"docs":{},"原":{"docs":{},"样":{"docs":{},"返":{"docs":{},"回":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}},"出":{"docs":{},"来":{"docs":{},"的":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"进":{"docs":{},"行":{"docs":{},"传":{"docs":{},"输":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}},"于":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"性":{"docs":{},"考":{"docs":{},"虑":{"docs":{},"默":{"docs":{},"认":{"docs":{},"的":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},"方":{"docs":{},"式":{"docs":{},"和":{"1":{"docs":{},".":{"0":{"docs":{},"保":{"docs":{},"持":{"docs":{},"一":{"docs":{},"致":{"docs":{},"使":{"docs":{},"用":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"2":{"docs":{},",":{"docs":{},"如":{"docs":{},"对":{"docs":{},"性":{"docs":{},"能":{"docs":{},"有":{"docs":{},"更":{"docs":{},"高":{"docs":{},"要":{"docs":{},"求":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},",":{"docs":{},"由":{"docs":{},"其":{"docs":{},"是":{"docs":{},"在":{"docs":{},"处":{"docs":{},"理":{"docs":{},"复":{"docs":{},"杂":{"docs":{},"对":{"docs":{},"象":{"docs":{},"时":{"docs":{},",":{"docs":{},"在":{"docs":{},"大":{"docs":{},"数":{"docs":{},"据":{"docs":{},"量":{"docs":{},"下":{"docs":{},"能":{"docs":{},"获":{"docs":{},"得":{"5":{"0":{"docs":{},"%":{"docs":{},"的":{"docs":{},"提":{"docs":{},"升":{"docs":{},"(":{"docs":{},"但":{"docs":{},"此":{"docs":{},"时":{"docs":{},"已":{"docs":{},"不":{"docs":{},"建":{"docs":{},"议":{"docs":{},"使":{"docs":{},"用":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"协":{"docs":{},"议":{"docs":{},")":{"docs":{},"。":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}},"名":{"docs":{},"相":{"docs":{},"同":{"docs":{},",":{"docs":{},"但":{"docs":{},"类":{"docs":{},"型":{"docs":{},"不":{"docs":{},"相":{"docs":{},"同":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}}}},"因":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"协":{"docs":{},"议":{"docs":{},"采":{"docs":{},"用":{"docs":{},"单":{"docs":{},"一":{"docs":{},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{},",":{"docs":{},"假":{"docs":{},"设":{"docs":{},"网":{"docs":{},"络":{"docs":{},"为":{"docs":{},"千":{"docs":{},"兆":{"docs":{},"网":{"docs":{},"卡":{"docs":{},"(":{"1":{"0":{"2":{"4":{"docs":{},"m":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"=":{"1":{"2":{"8":{"docs":{},"m":{"docs":{},"b":{"docs":{},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{},"根":{"docs":{},"据":{"docs":{},"测":{"docs":{},"试":{"docs":{},"经":{"docs":{},"验":{"docs":{},"数":{"docs":{},"据":{"docs":{},"每":{"docs":{},"条":{"docs":{},"连":{"docs":{},"接":{"docs":{},"最":{"docs":{},"多":{"docs":{},"只":{"docs":{},"能":{"docs":{},"压":{"docs":{},"满":{"7":{"docs":{},"m":{"docs":{},"b":{"docs":{},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"不":{"docs":{},"同":{"docs":{},"的":{"docs":{},"环":{"docs":{},"境":{"docs":{},"可":{"docs":{},"能":{"docs":{},"不":{"docs":{},"一":{"docs":{},"样":{"docs":{},",":{"docs":{},"供":{"docs":{},"参":{"docs":{},"考":{"docs":{},")":{"docs":{},",":{"docs":{},"理":{"docs":{},"论":{"docs":{},"上":{"1":{"docs":{},"个":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"需":{"docs":{},"要":{"2":{"0":{"docs":{},"个":{"docs":{},"服":{"docs":{},"务":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"才":{"docs":{},"能":{"docs":{},"压":{"docs":{},"满":{"docs":{},"网":{"docs":{},"卡":{"docs":{},"。":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}},"如":{"docs":{},"果":{"docs":{},"每":{"docs":{},"次":{"docs":{},"请":{"docs":{},"求":{"docs":{},"的":{"docs":{},"数":{"docs":{},"据":{"docs":{},"包":{"docs":{},"大":{"docs":{},"小":{"docs":{},"为":{"5":{"0":{"0":{"docs":{},"k":{"docs":{},"b":{"docs":{},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{},",":{"docs":{},"假":{"docs":{},"设":{"docs":{},"网":{"docs":{},"络":{"docs":{},"为":{"docs":{},"千":{"docs":{},"兆":{"docs":{},"网":{"docs":{},"卡":{"docs":{},"(":{"1":{"0":{"2":{"4":{"docs":{},"m":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"=":{"1":{"2":{"8":{"docs":{},"m":{"docs":{},"b":{"docs":{},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{},"每":{"docs":{},"条":{"docs":{},"连":{"docs":{},"接":{"docs":{},"最":{"docs":{},"大":{"7":{"docs":{},"m":{"docs":{},"b":{"docs":{},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"不":{"docs":{},"同":{"docs":{},"的":{"docs":{},"环":{"docs":{},"境":{"docs":{},"可":{"docs":{},"能":{"docs":{},"不":{"docs":{},"一":{"docs":{},"样":{"docs":{},",":{"docs":{},"供":{"docs":{},"参":{"docs":{},"考":{"docs":{},")":{"docs":{},",":{"docs":{},"单":{"docs":{},"个":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"的":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},"(":{"docs":{},"每":{"docs":{},"秒":{"docs":{},"处":{"docs":{},"理":{"docs":{},"事":{"docs":{},"务":{"docs":{},"数":{"docs":{},")":{"docs":{},"最":{"docs":{},"大":{"docs":{},"为":{"docs":{},":":{"1":{"2":{"8":{"docs":{},"m":{"docs":{},"b":{"docs":{},"y":{"docs":{},"t":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"为":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"现":{"docs":{},"状":{"docs":{},"大":{"docs":{},"都":{"docs":{},"是":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"少":{"docs":{},",":{"docs":{},"通":{"docs":{},"常":{"docs":{},"只":{"docs":{},"有":{"docs":{},"几":{"docs":{},"台":{"docs":{},"机":{"docs":{},"器":{"docs":{},",":{"docs":{},"而":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"多":{"docs":{},",":{"docs":{},"可":{"docs":{},"能":{"docs":{},"整":{"docs":{},"个":{"docs":{},"网":{"docs":{},"站":{"docs":{},"都":{"docs":{},"在":{"docs":{},"访":{"docs":{},"问":{"docs":{},"该":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"a":{"docs":{},"n":{"docs":{},"的":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"只":{"docs":{},"有":{"6":{"docs":{},"台":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},",":{"docs":{},"却":{"docs":{},"有":{"docs":{},"上":{"docs":{},"百":{"docs":{},"台":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},",":{"docs":{},"每":{"docs":{},"天":{"docs":{},"有":{"1":{"docs":{},".":{"5":{"docs":{},"亿":{"docs":{},"次":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"采":{"docs":{},"用":{"docs":{},"常":{"docs":{},"规":{"docs":{},"的":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"服":{"docs":{},"务":{"docs":{},",":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"很":{"docs":{},"容":{"docs":{},"易":{"docs":{},"就":{"docs":{},"被":{"docs":{},"压":{"docs":{},"跨":{"docs":{},",":{"docs":{},"通":{"docs":{},"过":{"docs":{},"单":{"docs":{},"一":{"docs":{},"连":{"docs":{},"接":{"docs":{},",":{"docs":{},"保":{"docs":{},"证":{"docs":{},"单":{"docs":{},"一":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"不":{"docs":{},"会":{"docs":{},"压":{"docs":{},"死":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},",":{"docs":{},"长":{"docs":{},"连":{"docs":{},"接":{"docs":{},",":{"docs":{},"减":{"docs":{},"少":{"docs":{},"连":{"docs":{},"接":{"docs":{},"握":{"docs":{},"手":{"docs":{},"验":{"docs":{},"证":{"docs":{},"等":{"docs":{},",":{"docs":{},"并":{"docs":{},"使":{"docs":{},"用":{"docs":{},"异":{"docs":{},"步":{"docs":{},"i":{"docs":{},"o":{"docs":{},",":{"docs":{},"复":{"docs":{},"用":{"docs":{},"线":{"docs":{},"程":{"docs":{},"池":{"docs":{},",":{"docs":{},"防":{"docs":{},"止":{"docs":{},"c":{"1":{"0":{"docs":{},"k":{"docs":{},"问":{"docs":{},"题":{"docs":{},"。":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"总":{"docs":{},"结":{"docs":{},":":{"docs":{},"会":{"docs":{},"抛":{"docs":{},"异":{"docs":{},"常":{"docs":{},"的":{"docs":{},"情":{"docs":{},"况":{"docs":{},":":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"值":{"docs":{},"一":{"docs":{},"边":{"docs":{},"多":{"docs":{},"一":{"docs":{},"种":{"docs":{},",":{"docs":{},"一":{"docs":{},"边":{"docs":{},"少":{"docs":{},"一":{"docs":{},"种":{"docs":{},",":{"docs":{},"正":{"docs":{},"好":{"docs":{},"使":{"docs":{},"用":{"docs":{},"了":{"docs":{},"差":{"docs":{},"别":{"docs":{},"的":{"docs":{},"那":{"docs":{},"种":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"属":{"docs":{},"性":{"docs":{},"名":{"docs":{},"相":{"docs":{},"同":{"docs":{},",":{"docs":{},"类":{"docs":{},"型":{"docs":{},"不":{"docs":{},"同":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},"端":{"docs":{},"和":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"对":{"docs":{},"领":{"docs":{},"域":{"docs":{},"对":{"docs":{},"象":{"docs":{},"并":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"完":{"docs":{},"全":{"docs":{},"一":{"docs":{},"致":{"docs":{},",":{"docs":{},"而":{"docs":{},"是":{"docs":{},"按":{"docs":{},"照":{"docs":{},"最":{"docs":{},"大":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"原":{"docs":{},"则":{"docs":{},"。":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"情":{"docs":{},"况":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}},"收":{"docs":{},"数":{"docs":{},"据":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}},"枚":{"docs":{},"举":{"docs":{},"a":{"docs":{},"多":{"docs":{},"一":{"docs":{},"种":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.017543859649122806}}}}}},"(":{"docs":{},"或":{"docs":{},"者":{"docs":{},"说":{"docs":{},"b":{"docs":{},"少":{"docs":{},"一":{"docs":{},"种":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.017543859649122806}}}}}}}}}},")":{"docs":{},",":{"docs":{},"a":{"docs":{},"不":{"docs":{},"使":{"docs":{},"用":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}},"使":{"docs":{},"用":{"docs":{},"多":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}},"值":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}},"正":{"docs":{},"常":{"docs":{},"传":{"docs":{},"输":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}},"约":{"docs":{},"束":{"docs":{},":":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403},"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549},"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564},"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353},"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}},"输":{"docs":{},"入":{"docs":{},"参":{"docs":{},"数":{"docs":{},"和":{"docs":{},"结":{"docs":{},"果":{"docs":{},"集":{"docs":{},"属":{"docs":{},"性":{"docs":{},"名":{"docs":{},"变":{"docs":{},"化":{"docs":{},",":{"docs":{},"对":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},"无":{"docs":{},"影":{"docs":{},"响":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"如":{"docs":{},"果":{"docs":{},"客":{"docs":{},"户":{"docs":{},"端":{"docs":{},"不":{"docs":{},"重":{"docs":{},"新":{"docs":{},"部":{"docs":{},"署":{"docs":{},",":{"docs":{},"不":{"docs":{},"管":{"docs":{},"输":{"docs":{},"入":{"docs":{},"还":{"docs":{},"是":{"docs":{},"输":{"docs":{},"出":{"docs":{},",":{"docs":{},"属":{"docs":{},"性":{"docs":{},"名":{"docs":{},"变":{"docs":{},"化":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},"值":{"docs":{},"是":{"docs":{},"获":{"docs":{},"取":{"docs":{},"不":{"docs":{},"到":{"docs":{},"的":{"docs":{},"。":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"适":{"docs":{},"用":{"docs":{},"场":{"docs":{},"景":{"docs":{},":":{"docs":{},"常":{"docs":{},"规":{"docs":{},"远":{"docs":{},"程":{"docs":{},"服":{"docs":{},"务":{"docs":{},"方":{"docs":{},"法":{"docs":{},"调":{"docs":{},"用":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}},",":{"docs":{},"与":{"docs":{},"原":{"docs":{},"生":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"服":{"docs":{},"务":{"docs":{},"互":{"docs":{},"操":{"docs":{},"作":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}},"页":{"docs":{},"面":{"docs":{},"传":{"docs":{},"输":{"docs":{},",":{"docs":{},"文":{"docs":{},"件":{"docs":{},"传":{"docs":{},"输":{"docs":{},",":{"docs":{},"或":{"docs":{},"与":{"docs":{},"原":{"docs":{},"生":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"服":{"docs":{},"务":{"docs":{},"互":{"docs":{},"操":{"docs":{},"作":{"docs":{"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564}}}}}}}}}}}}}}}}}}}}}}}}}}}},"需":{"docs":{},"同":{"docs":{},"时":{"docs":{},"给":{"docs":{},"应":{"docs":{},"用":{"docs":{},"程":{"docs":{},"序":{"docs":{},"和":{"docs":{},"浏":{"docs":{},"览":{"docs":{},"器":{"docs":{},"j":{"docs":{},"s":{"docs":{},"使":{"docs":{},"用":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},"。":{"docs":{"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353}}}}}}}}}}}}}}}}}}}}}},"系":{"docs":{},"统":{"docs":{},"集":{"docs":{},"成":{"docs":{},",":{"docs":{},"跨":{"docs":{},"语":{"docs":{},"言":{"docs":{},"调":{"docs":{},"用":{"docs":{},"。":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}}}}}}}}}}}}}}},"范":{"docs":{},"围":{"docs":{},":":{"docs":{},"传":{"docs":{},"入":{"docs":{},"传":{"docs":{},"出":{"docs":{},"参":{"docs":{},"数":{"docs":{},"数":{"docs":{},"据":{"docs":{},"包":{"docs":{},"较":{"docs":{},"小":{"docs":{},"(":{"docs":{},"建":{"docs":{},"议":{"docs":{},"小":{"docs":{},"于":{"1":{"0":{"0":{"docs":{},"k":{"docs":{},")":{"docs":{},",":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"比":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"个":{"docs":{},"数":{"docs":{},"多":{"docs":{},",":{"docs":{},"单":{"docs":{},"一":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"无":{"docs":{},"法":{"docs":{},"压":{"docs":{},"满":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},",":{"docs":{},"尽":{"docs":{},"量":{"docs":{},"不":{"docs":{},"要":{"docs":{},"用":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"协":{"docs":{},"议":{"docs":{},"传":{"docs":{},"输":{"docs":{},"大":{"docs":{},"文":{"docs":{},"件":{"docs":{},"或":{"docs":{},"超":{"docs":{},"大":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"。":{"docs":{"reference-protocol/dubbo.html":{"ref":"reference-protocol/dubbo.html","tf":0.008771929824561403}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}},"大":{"docs":{},",":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"比":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"个":{"docs":{},"数":{"docs":{},"多":{"docs":{},",":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"压":{"docs":{},"力":{"docs":{},"较":{"docs":{},"大":{"docs":{},",":{"docs":{},"可":{"docs":{},"传":{"docs":{},"文":{"docs":{},"件":{"docs":{},"。":{"docs":{"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"大":{"docs":{},"小":{"docs":{},"混":{"docs":{},"合":{"docs":{},",":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"与":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"个":{"docs":{},"数":{"docs":{},"差":{"docs":{},"不":{"docs":{},"多":{"docs":{},",":{"docs":{},"可":{"docs":{},"传":{"docs":{},"文":{"docs":{},"件":{"docs":{},"。":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"比":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"个":{"docs":{},"数":{"docs":{},"多":{"docs":{},",":{"docs":{},"可":{"docs":{},"用":{"docs":{},"浏":{"docs":{},"览":{"docs":{},"器":{"docs":{},"查":{"docs":{},"看":{"docs":{},",":{"docs":{},"可":{"docs":{},"用":{"docs":{},"表":{"docs":{},"单":{"docs":{},"或":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"传":{"docs":{},"入":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"暂":{"docs":{},"不":{"docs":{},"支":{"docs":{},"持":{"docs":{},"传":{"docs":{},"文":{"docs":{},"件":{"docs":{},"。":{"docs":{"reference-protocol/http.html":{"ref":"reference-protocol/http.html","tf":0.029411764705882353}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"性":{"docs":{},"说":{"docs":{},"明":{"docs":{},"此":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"只":{"docs":{},"是":{"docs":{},"简":{"docs":{},"单":{"docs":{},"实":{"docs":{},"现":{"docs":{},",":{"docs":{},"不":{"docs":{},"支":{"docs":{},"持":{"docs":{},"集":{"docs":{},"群":{"docs":{},",":{"docs":{},"可":{"docs":{},"作":{"docs":{},"为":{"docs":{},"自":{"docs":{},"定":{"docs":{},"义":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"的":{"docs":{},"参":{"docs":{},"考":{"docs":{},",":{"docs":{},"但":{"docs":{},"不":{"docs":{},"适":{"docs":{},"合":{"docs":{},"直":{"docs":{},"接":{"docs":{},"用":{"docs":{},"于":{"docs":{},"生":{"docs":{},"产":{"docs":{},"环":{"docs":{},"境":{"docs":{},"。":{"docs":{"reference-registry/simple.html":{"ref":"reference-registry/simple.html","tf":0.09090909090909091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"更":{"docs":{},"多":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"优":{"docs":{},"化":{"docs":{},"参":{"docs":{},"数":{"docs":{},"请":{"docs":{},"查":{"docs":{},"看":{"docs":{},":":{"docs":{"reference-protocol/rmi.html":{"ref":"reference-protocol/rmi.html","tf":0.0196078431372549}}}}}}}}}}}}}}},"框":{"docs":{},"架":{"docs":{},",":{"docs":{},"其":{"docs":{},"通":{"docs":{},"讯":{"docs":{},"效":{"docs":{},"率":{"docs":{},"高":{"docs":{},"于":{"docs":{},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"和":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"自":{"docs":{},"带":{"docs":{},"的":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},"。":{"docs":{"reference-protocol/hessian.html":{"ref":"reference-protocol/hessian.html","tf":0.02564102564102564}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"。":{"docs":{"reference-protocol/webservice.html":{"ref":"reference-protocol/webservice.html","tf":0.014925373134328358}}},"号":{"docs":{},"通":{"docs":{},"配":{"docs":{},"符":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}},"时":{"docs":{},",":{"docs":{},"记":{"docs":{},"录":{"docs":{},"失":{"docs":{},"败":{"docs":{},"注":{"docs":{},"册":{"docs":{},"和":{"docs":{},"订":{"docs":{},"阅":{"docs":{},"请":{"docs":{},"求":{"docs":{},",":{"docs":{},"后":{"docs":{},"台":{"docs":{},"定":{"docs":{},"时":{"docs":{},"重":{"docs":{},"试":{"docs":{},"。":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}}}},"订":{"docs":{},"阅":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"/":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"目":{"docs":{},"录":{"docs":{},"下":{"docs":{},"的":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"地":{"docs":{},"址":{"docs":{},"。":{"docs":{},"并":{"docs":{},"向":{"docs":{},"/":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"目":{"docs":{},"录":{"docs":{},"下":{"docs":{},"写":{"docs":{},"入":{"docs":{},"自":{"docs":{},"己":{"docs":{},"的":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"地":{"docs":{},"址":{"docs":{},"。":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"目":{"docs":{},"录":{"docs":{},"下":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"和":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"地":{"docs":{},"址":{"docs":{},"。":{"docs":{"reference-registry/zookeeper.html":{"ref":"reference-registry/zookeeper.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"普":{"docs":{},"通":{"docs":{},"消":{"docs":{},"费":{"docs":{},"者":{"docs":{},"直":{"docs":{},"接":{"docs":{},"订":{"docs":{},"阅":{"docs":{},"指":{"docs":{},"定":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"的":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},",":{"docs":{},"只":{"docs":{},"会":{"docs":{},"收":{"docs":{},"到":{"docs":{},"指":{"docs":{},"定":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"阿":{"docs":{},"里":{"docs":{},"内":{"docs":{},"部":{"docs":{},"并":{"docs":{},"没":{"docs":{},"有":{"docs":{},"采":{"docs":{},"用":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"做":{"docs":{},"为":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},",":{"docs":{},"而":{"docs":{},"是":{"docs":{},"使":{"docs":{},"用":{"docs":{},"自":{"docs":{},"己":{"docs":{},"实":{"docs":{},"现":{"docs":{},"的":{"docs":{},"基":{"docs":{},"于":{"docs":{},"数":{"docs":{},"据":{"docs":{},"库":{"docs":{},"的":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},",":{"docs":{},"即":{"docs":{},":":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"并":{"docs":{},"没":{"docs":{},"有":{"docs":{},"在":{"docs":{},"阿":{"docs":{},"里":{"docs":{},"内":{"docs":{},"部":{"docs":{},"长":{"docs":{},"时":{"docs":{},"间":{"docs":{},"运":{"docs":{},"行":{"docs":{},"的":{"docs":{},"可":{"docs":{},"靠":{"docs":{},"性":{"docs":{},"保":{"docs":{},"障":{"docs":{},",":{"docs":{},"此":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"桥":{"docs":{},"接":{"docs":{},"实":{"docs":{},"现":{"docs":{},"只":{"docs":{},"为":{"docs":{},"开":{"docs":{},"源":{"docs":{},"版":{"docs":{},"本":{"docs":{},"提":{"docs":{},"供":{"docs":{},",":{"docs":{},"其":{"docs":{},"可":{"docs":{},"靠":{"docs":{},"性":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"于":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"本":{"docs":{},"身":{"docs":{},"的":{"docs":{},"可":{"docs":{},"靠":{"docs":{},"性":{"docs":{},"。":{"docs":{"reference-registry/redis.html":{"ref":"reference-registry/redis.html","tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"修":{"docs":{},"改":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}},"取":{"docs":{},"消":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"服":{"docs":{},"务":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}},"显":{"docs":{},"示":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"命":{"docs":{},"帮":{"docs":{},"助":{"docs":{},"信":{"docs":{},"息":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}}}}}}},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"命":{"docs":{},"令":{"docs":{},"的":{"docs":{},"详":{"docs":{},"细":{"docs":{},"帮":{"docs":{},"助":{"docs":{},"信":{"docs":{},"息":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}}}}}}}},"当":{"docs":{},"前":{"docs":{},"缺":{"docs":{},"省":{"docs":{},"服":{"docs":{},"务":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}},"服":{"docs":{},"务":{"docs":{},"列":{"docs":{},"表":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}},"地":{"docs":{},"址":{"docs":{},"列":{"docs":{},"表":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},"列":{"docs":{},"表":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}},"详":{"docs":{},"细":{"docs":{},"信":{"docs":{},"息":{"docs":{},"列":{"docs":{},"表":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}}}}},"端":{"docs":{},"口":{"docs":{},"列":{"docs":{},"表":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}},"详":{"docs":{},"细":{"docs":{},"信":{"docs":{},"息":{"docs":{},"列":{"docs":{},"表":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}}}},"汇":{"docs":{},"总":{"docs":{},"状":{"docs":{},"态":{"docs":{},",":{"docs":{},"该":{"docs":{},"状":{"docs":{},"态":{"docs":{},"将":{"docs":{},"汇":{"docs":{},"总":{"docs":{},"所":{"docs":{},"有":{"docs":{},"资":{"docs":{},"源":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},",":{"docs":{},"当":{"docs":{},"全":{"docs":{},"部":{"docs":{},"o":{"docs":{},"k":{"docs":{},"时":{"docs":{},"则":{"docs":{},"显":{"docs":{},"示":{"docs":{},"o":{"docs":{},"k":{"docs":{},",":{"docs":{},"只":{"docs":{},"要":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"则":{"docs":{},"显":{"docs":{},"示":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},",":{"docs":{},"只":{"docs":{},"要":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{},"则":{"docs":{},"显":{"docs":{},"示":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"状":{"docs":{},"态":{"docs":{},"列":{"docs":{},"表":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}},"端":{"docs":{},"口":{"docs":{},"上":{"docs":{},"的":{"docs":{},"连":{"docs":{},"接":{"docs":{},"信":{"docs":{},"息":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}},"详":{"docs":{},"细":{"docs":{},"信":{"docs":{},"息":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}}}}}}}},"查":{"docs":{},"看":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}},"询":{"docs":{},"方":{"docs":{},"法":{"docs":{},"不":{"docs":{},"建":{"docs":{},"议":{"docs":{},"抛":{"docs":{},"出":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"d":{"docs":{},"异":{"docs":{},"常":{"docs":{},",":{"docs":{},"否":{"docs":{},"则":{"docs":{},"调":{"docs":{},"用":{"docs":{},"方":{"docs":{},"在":{"docs":{},"查":{"docs":{},"询":{"docs":{},"时":{"docs":{},"将":{"docs":{},"过":{"docs":{},"多":{"docs":{},"的":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"不":{"docs":{},"能":{"docs":{},"进":{"docs":{},"行":{"docs":{},"有":{"docs":{},"效":{"docs":{},"处":{"docs":{},"理":{"docs":{},",":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"清":{"docs":{},"除":{"docs":{},"屏":{"docs":{},"幕":{"docs":{},"上":{"docs":{},"的":{"docs":{},"内":{"docs":{},"容":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}},"指":{"docs":{},"定":{"docs":{},"行":{"docs":{},"数":{"docs":{},"的":{"docs":{},"内":{"docs":{},"容":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}}}}}}}}},"跟":{"docs":{},"踪":{"1":{"0":{"docs":{},"次":{"docs":{},"服":{"docs":{},"务":{"docs":{},"任":{"docs":{},"意":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"调":{"docs":{},"用":{"docs":{},"情":{"docs":{},"况":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}}}}},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"调":{"docs":{},"用":{"docs":{},"情":{"docs":{},"况":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}}}}}}},"docs":{},"次":{"docs":{},"服":{"docs":{},"务":{"docs":{},"任":{"docs":{},"意":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"调":{"docs":{},"用":{"docs":{},"情":{"docs":{},"况":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}}}}},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"调":{"docs":{},"用":{"docs":{},"情":{"docs":{},"况":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}}}}}},"docs":{}}},"退":{"docs":{},"出":{"docs":{},"当":{"docs":{},"前":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"命":{"docs":{},"令":{"docs":{},"行":{"docs":{},"。":{"docs":{"reference-telnet/telnet.html":{"ref":"reference-telnet/telnet.html","tf":0.007194244604316547}}}}}}}}}}}}}}}},"样":{"docs":{},"例":{"docs":{},":":{"docs":{},"以":{"docs":{},"指":{"docs":{},"定":{"docs":{},"的":{"9":{"0":{"9":{"9":{"docs":{},"端":{"docs":{},"口":{"docs":{},"启":{"docs":{},"动":{"docs":{},"一":{"docs":{},"个":{"docs":{},"简":{"docs":{},"易":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{"reference-maven/maven.html":{"ref":"reference-maven/maven.html","tf":0.05555555555555555}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}},"生":{"docs":{},"成":{"docs":{},"指":{"docs":{},"定":{"docs":{},"接":{"docs":{},"口":{"docs":{},"和":{"docs":{},"版":{"docs":{},"本":{"docs":{},"的":{"docs":{},"服":{"docs":{},"务":{"docs":{},"提":{"docs":{},"供":{"docs":{},"者":{"docs":{},"应":{"docs":{},"用":{"docs":{"reference-maven/maven.html":{"ref":"reference-maven/maven.html","tf":0.05555555555555555}}}}}}}}}}}}}}}}}}}}}},"版":{"docs":{},"本":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}},"粒":{"docs":{},"度":{"docs":{"best-practice.html":{"ref":"best-practice.html","tf":0.02702702702702703}}}},"全":{"docs":{},"局":{"docs":{},"配":{"docs":{},"置":{"docs":{},"项":{"docs":{},"值":{"docs":{},",":{"docs":{},"对":{"docs":{},"应":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"中":{"docs":{},"的":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"名":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"文":{"docs":{},"件":{"docs":{},"的":{"docs":{},"路":{"docs":{},"径":{"docs":{},",":{"docs":{},"应":{"docs":{},"用":{"docs":{},"可":{"docs":{},"以":{"docs":{},"根":{"docs":{},"据":{"docs":{},"需":{"docs":{},"要":{"docs":{},"调":{"docs":{},"整":{"docs":{},",":{"docs":{},"保":{"docs":{},"证":{"docs":{},"这":{"docs":{},"个":{"docs":{},"文":{"docs":{},"件":{"docs":{},"不":{"docs":{},"会":{"docs":{},"在":{"docs":{},"发":{"docs":{},"布":{"docs":{},"过":{"docs":{},"程":{"docs":{},"中":{"docs":{},"被":{"docs":{},"清":{"docs":{},"除":{"docs":{},"。":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"确":{"docs":{},"保":{"docs":{},"注":{"docs":{},"册":{"docs":{},"中":{"docs":{},"心":{"docs":{},"上":{"docs":{},"有":{"docs":{},"该":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"存":{"docs":{},"在":{"docs":{},"。":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}},")":{"docs":{},"则":{"docs":{},"并":{"docs":{},"发":{"docs":{},"限":{"docs":{},"制":{"docs":{},"针":{"docs":{},"对":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"在":{"docs":{},"接":{"docs":{},"口":{"docs":{},"上":{"docs":{},"配":{"docs":{},"置":{"docs":{},"(":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},":":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{},"则":{"docs":{},"并":{"docs":{},"发":{"docs":{},"限":{"docs":{},"制":{"docs":{},"针":{"docs":{},"对":{"docs":{},"服":{"docs":{},"务":{"docs":{},"。":{"docs":{"recommend.html":{"ref":"recommend.html","tf":0.018867924528301886}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"平":{"docs":{},"均":{"docs":{},"响":{"docs":{},"应":{"docs":{},"时":{"docs":{},"间":{"1":{"docs":{},".":{"4":{"docs":{},"到":{"2":{"docs":{},".":{"8":{"docs":{},"毫":{"docs":{},"秒":{"docs":{},",":{"docs":{},"网":{"docs":{},"络":{"docs":{},"开":{"docs":{},"销":{"docs":{},"约":{"docs":{},"占":{"1":{"docs":{},".":{"0":{"docs":{},"到":{"1":{"docs":{},".":{"1":{"docs":{},"毫":{"docs":{},"秒":{"docs":{},"(":{"docs":{},"和":{"docs":{},"数":{"docs":{},"据":{"docs":{},"包":{"docs":{},"大":{"docs":{},"小":{"docs":{},"有":{"docs":{},"关":{"docs":{},")":{"docs":{"capacity-plan.html":{"ref":"capacity-plan.html","tf":0.09090909090909091}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}},"2":{"docs":{},".":{"3":{"docs":{},"到":{"2":{"docs":{},".":{"5":{"docs":{},"毫":{"docs":{},"秒":{"docs":{},",":{"docs":{},"网":{"docs":{},"络":{"docs":{},"开":{"docs":{},"销":{"docs":{},"约":{"docs":{},"占":{"1":{"docs":{},".":{"5":{"docs":{},"到":{"1":{"docs":{},".":{"6":{"docs":{},"毫":{"docs":{},"秒":{"docs":{},"(":{"docs":{},"和":{"docs":{},"数":{"docs":{},"据":{"docs":{},"包":{"docs":{},"大":{"docs":{},"小":{"docs":{},"有":{"docs":{},"关":{"docs":{},")":{"docs":{"capacity-plan.html":{"ref":"capacity-plan.html","tf":0.09090909090909091}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}}}},"负":{"docs":{},"载":{"docs":{},"在":{"1":{"docs":{},"以":{"docs":{},"下":{"docs":{},"(":{"docs":{},"对":{"docs":{},"于":{"8":{"docs":{},"核":{"docs":{},"c":{"docs":{},"p":{"docs":{},"u":{"docs":{},"负":{"docs":{},"载":{"docs":{},"很":{"docs":{},"低":{"docs":{},")":{"docs":{"capacity-plan.html":{"ref":"capacity-plan.html","tf":0.18181818181818182}}}}}}}}}}}},"docs":{}}}}}}},"docs":{}}}}}},"下":{"docs":{},"载":{"docs":{"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}}}},"导":{"docs":{},"入":{"docs":{},"自":{"docs":{},"己":{"docs":{},"服":{"docs":{},"务":{"docs":{},"的":{"docs":{},"接":{"docs":{},"口":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"包":{"docs":{},"和":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},".":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{},"(":{"docs":{},"解":{"docs":{},"压":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"b":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},".":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},".":{"docs":{},"g":{"docs":{},"z":{"docs":{},",":{"docs":{},"在":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"目":{"docs":{},"录":{"docs":{},"下":{"docs":{},")":{"docs":{"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"运":{"docs":{},"行":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"t":{"docs":{},"(":{"docs":{},"w":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},")":{"docs":{},"或":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},".":{"docs":{},"s":{"docs":{},"h":{"docs":{},"(":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"x":{"docs":{},")":{"docs":{"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"阅":{"docs":{},"读":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"m":{"docs":{},"e":{"docs":{},".":{"docs":{},"t":{"docs":{},"x":{"docs":{},"t":{"docs":{},"(":{"docs":{},"内":{"docs":{},"容":{"docs":{},"如":{"docs":{},"下":{"docs":{},",":{"docs":{},"请":{"docs":{},"以":{"docs":{},"压":{"docs":{},"缩":{"docs":{},"包":{"docs":{},"内":{"docs":{},"的":{"docs":{},"为":{"docs":{},"准":{"docs":{},")":{"docs":{"benchmark.html":{"ref":"benchmark.html","tf":0.03571428571428571}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"业":{"docs":{},"务":{"docs":{},"线":{"docs":{},"程":{"docs":{},"负":{"docs":{},"载":{"docs":{},"均":{"docs":{},"衡":{"docs":{},"。":{"docs":{},"通":{"docs":{},"过":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}},"内":{"docs":{},"存":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}},"核":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"响":{"docs":{},"应":{"docs":{},"时":{"docs":{},"间":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}},"成":{"docs":{},"功":{"docs":{},"平":{"docs":{},"均":{"docs":{},"值":{"docs":{},"(":{"docs":{},"m":{"docs":{},"s":{"docs":{},")":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.012578616352201259}}}}}}}}}}}}}}},"场":{"docs":{},"景":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.009433962264150943}},"名":{"docs":{},"称":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}},":":{"1":{"docs":{},"k":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"2":{"0":{"0":{"docs":{},"k":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"docs":{}},"docs":{}},"5":{"0":{"docs":{},"k":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"docs":{}},"docs":{},"p":{"docs":{},"o":{"docs":{},"j":{"docs":{},"o":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}},"整":{"docs":{},"体":{"docs":{},"性":{"docs":{},"能":{"docs":{},"相":{"docs":{},"比":{"1":{"docs":{},".":{"0":{"docs":{},"有":{"docs":{},"了":{"docs":{},"提":{"docs":{},"升":{"docs":{},",":{"docs":{},"平":{"docs":{},"均":{"docs":{},"提":{"docs":{},"升":{"1":{"0":{"docs":{},"%":{"docs":{},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"2":{"docs":{},".":{"0":{"docs":{},"新":{"docs":{},"增":{"docs":{},"的":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"序":{"docs":{},"列":{"docs":{},"化":{"docs":{},"还":{"docs":{},"能":{"docs":{},"获":{"docs":{},"得":{"1":{"0":{"docs":{},"%":{"docs":{},"~":{"5":{"0":{"docs":{},"%":{"docs":{},"的":{"docs":{},"性":{"docs":{},"能":{"docs":{},"提":{"docs":{},"升":{"docs":{},",":{"docs":{},"详":{"docs":{},"见":{"docs":{},"下":{"docs":{},"面":{"docs":{},"的":{"docs":{},"性":{"docs":{},"能":{"docs":{},"数":{"docs":{},"据":{"docs":{},"。":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}},"docs":{}}},"docs":{}}}}}}},"无":{"docs":{},"频":{"docs":{},"繁":{"docs":{},"线":{"docs":{},"程":{"docs":{},"锁":{"docs":{},",":{"docs":{},"线":{"docs":{},"程":{"docs":{},"数":{"docs":{},"平":{"docs":{},"稳":{"docs":{},"。":{"docs":{},"通":{"docs":{},"过":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}},"期":{"docs":{},"望":{"docs":{},"值":{"docs":{},"范":{"docs":{},"围":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}},"性":{"docs":{},"能":{"docs":{},"指":{"docs":{},"标":{"docs":{},"(":{"docs":{},"量":{"docs":{},"化":{"docs":{},")":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}},"运":{"docs":{},"行":{"docs":{},"状":{"docs":{},"况":{"docs":{},"(":{"docs":{},"非":{"docs":{},"量":{"docs":{},"化":{"docs":{},",":{"docs":{},"可":{"docs":{},"选":{"docs":{},")":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}},"机":{"docs":{},"型":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"由":{"docs":{},"于":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"b":{"docs":{},"o":{"docs":{},"本":{"docs":{},"身":{"docs":{},"的":{"docs":{},"性":{"docs":{},"能":{"docs":{},"占":{"docs":{},"用":{"docs":{},"都":{"docs":{},"在":{"docs":{},"毫":{"docs":{},"秒":{"docs":{},"级":{"docs":{},",":{"docs":{},"占":{"docs":{},"的":{"docs":{},"基":{"docs":{},"数":{"docs":{},"很":{"docs":{},"小":{"docs":{},",":{"docs":{},"性":{"docs":{},"能":{"docs":{},"提":{"docs":{},"升":{"docs":{},"可":{"docs":{},"能":{"docs":{},"对":{"docs":{},"应":{"docs":{},"用":{"docs":{},"整":{"docs":{},"体":{"docs":{},"的":{"docs":{},"性":{"docs":{},"能":{"docs":{},"变":{"docs":{},"化":{"docs":{},"不":{"docs":{},"大":{"docs":{},"。":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"邮":{"docs":{},"件":{"docs":{},"篇":{"docs":{},"幅":{"docs":{},"所":{"docs":{},"限":{"docs":{},"没":{"docs":{},"有":{"docs":{},"列":{"docs":{},"出":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"监":{"docs":{},"控":{"docs":{},"图":{"docs":{},",":{"docs":{},"如":{"docs":{},"需":{"docs":{},"获":{"docs":{},"得":{"docs":{},"可":{"docs":{},"在":{"docs":{},"大":{"docs":{},"力":{"docs":{},"神":{"docs":{},"平":{"docs":{},"台":{"docs":{},"上":{"docs":{},"查":{"docs":{},"询":{"docs":{},"。":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"硬":{"docs":{},"件":{"docs":{},"部":{"docs":{},"署":{"docs":{},"与":{"docs":{},"参":{"docs":{},"数":{"docs":{},"调":{"docs":{},"整":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}},"磁":{"docs":{},"盘":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"稳":{"docs":{},"定":{"docs":{},"性":{"docs":{},"场":{"docs":{},"景":{"docs":{},"(":{"2":{"0":{"docs":{},"并":{"docs":{},"发":{"docs":{},")":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}},"docs":{}},"docs":{}}}},"测":{"docs":{},"试":{"docs":{},"中":{"docs":{},"由":{"docs":{},"于":{"docs":{},"将":{"docs":{},"底":{"docs":{},"层":{"docs":{},"通":{"docs":{},"信":{"docs":{},"框":{"docs":{},"架":{"docs":{},"从":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"换":{"docs":{},"成":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},",":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"区":{"docs":{},"对":{"docs":{},"象":{"docs":{},"的":{"docs":{},"增":{"docs":{},"长":{"docs":{},"大":{"docs":{},"大":{"docs":{},"减":{"docs":{},"少":{"docs":{},",":{"5":{"0":{"docs":{},"小":{"docs":{},"时":{"docs":{},"运":{"docs":{},"行":{"docs":{},",":{"docs":{},"增":{"docs":{},"长":{"docs":{},"不":{"docs":{},"到":{"2":{"0":{"0":{"docs":{},"m":{"docs":{},",":{"docs":{},"无":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"g":{"docs":{},"c":{"docs":{},"。":{"docs":{},"(":{"docs":{},"可":{"docs":{},"以":{"docs":{},"确":{"docs":{},"认":{"docs":{},"为":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"在":{"docs":{},"高":{"docs":{},"并":{"docs":{},"发":{"docs":{},"下":{"docs":{},"的":{"docs":{},"设":{"docs":{},"计":{"docs":{},"缺":{"docs":{},"陷":{"docs":{},")":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"软":{"docs":{},"件":{"docs":{},"名":{"docs":{},"称":{"docs":{},"及":{"docs":{},"版":{"docs":{},"本":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}}},"架":{"docs":{},"构":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}},"除":{"docs":{},"了":{"5":{"0":{"docs":{},"k":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}},"docs":{}},"docs":{}}},"高":{"docs":{},"压":{"docs":{},"力":{"docs":{},"场":{"docs":{},"景":{"docs":{},"(":{"2":{"0":{"docs":{},"并":{"docs":{},"发":{"docs":{},")":{"docs":{"perf-test.html":{"ref":"perf-test.html","tf":0.0031446540880503146}}}}}},"docs":{}},"docs":{}}}}}}}},"length":3813},"corpusTokens":["!1.","!=","!在spring解析到时,就已经向外暴露了服务,而spring还在接着初始化其它bean。!如果这时有请求进来,并且服务的实现类里有调用applicationcontext.getbean()的用法。","\"","\"));","\"/valid","\"1.6.0_18\"","\"=>\"之前的为消费者匹配条件,所有参数和消费者的url进行对比,当消费者满足匹配条件时,对该消费者执行后面的过滤规则。","\"=>\"之后为提供者地址列表的过滤条件,所有参数和提供者的url进行对比,消费者最终只拿到过滤后的地址列表。","\"^\\\\s*\\\\w+(?:\\\\.{0,1}[\\\\w","\"changed:","\"charles`son\",","\"com.xxx.personimpl\");","\"java.lang.string\"","\"script://0.0.0.0/com.foo.barservice?category=routers&dynamic=false&rule=\"","\"value\"}):","\"welcom","\"world\"","\"xxx\");","\"yyy\");","\"容错数据\";","$","$host","$invoke(str","&","'/')","(\"sayhello\".equals(methodname))","((echoservice)memberservice).$echo(“ok”));","(+)","(1)","(1).","(2)","(2).","(2.0.12)","(3)","(3).","(3.1).","(3.2).","(4)","(5)","(6)","(barservic","(build","(callbackservice)","(chang","(constraintviolationexception)","(default)","(demoservice)","(dubbo序列化+netty)","(echoservice)","(except","(failover集群模式生效)","(genericservice)","(hessian2序列化+mina)","(hessian2序列化+netty)","(i","(idemoservice)","(int","(invokers)\")","(list","(nofifyimpl)","(print","(recommend)","(rpcexcept","(throwabl","(validationservice)context.getbean(\"validationservice\");","(不能在协议中传递null值)","(尚未发布)","(暂不支持参数路由)","(注意:1.0不支持自定义路径,总是使用接口名,如果有1.0调2.0,配置服务路径可能不兼容)",");","*","**规避办法","+",",","...","......",".][a",".activ",".async",".cach",".deprec",".execut",".loadbal",".retri",".return",".sent",".sticki",".timeout",".valid","/","/>","/*","//","//for","/:","/dev/sda:","/user","0","0.0.0","0.0.0.0","0.1","0.4","0.6","0.64","0.67","0.79","0.79m","0.8","0.8.0","0.81","0.9","0.9m","02","03","0;","1","1,","1.0.0.ga","1.0.0以上版本","1.0.12以上版本","1.0.13","1.0.14以上版本","1.0.16以上版本","1.0.5以上版本","1.0.6以上版本","1.0.6及以上版本支持","1.0.7以上版本","1.0.8以上版本","1.0.9以上版本","1.04","1.1","1.1.10","1.1.7","1.1.8","1.15","1.2","1.3","1.3.6","1.37","1.4","1.4.1","1.6.0_18","10","10.20.*","10.20.153.10","10.20.153.10,10.20.153.11","10.20.153.11","10.20.153.11\")","10.75","10.92","100","1000","10000","100000","1000000","100:","1011.97","1024","1031.28","10813.5","1099","10:","11","11.94","11136.02","11211","11426.83","11940","11994","12","12.22","128","128.el5xen","1293","13","13.56","13620","14","14402","14。如果能接受,可以考虑使用,否则网络将成为瓶颈。","15","15.19","15.83","15096","16","16.0","17.51","172.22.3.*","172.22.3.1*,172.22.3.2*","172.22.3.91","172.22.3.91,172.22.3.92,172.22.3.93","172.22.3.94,172.22.3.95,172.22.3.96","172.22.3.95,172.22.3.96","172.22.3.97,172.22.3.98","180","1925.33","1962.7","1966","1k","1k数据","1时,表示延迟到spring容器初始化完成时暴露服务","2","2)","2.0.0","2.0.0以上版本","2.0.10以上版本","2.0.2以上版本","2.0.5以上版本","2.0.61","2.0.6以上版本","2.0.6以上版本支持","2.0.6及其以上版本支持","2.0.6及其以上版本支持代码参见:https://github.com/alibaba/dubbo/tree/master/dubbo","2.0.7以上版本","2.0.8以上版本","2.0.9以上版本","2.0以上版本自动加载${user.home}/dubbo","2.0和1.0默认对比百分比","2.0性能不低于1.0,2.0和1.0互调用的性能无明显下降。","2.1","2.1.0以上版本","2.1.0以上版本支持","2.1.0以上版本支持,","2.1.4","2.2","2.2.0","2.2.0以上版本","2.2.0以上版本支持,","2.2.0以上版本支持,总是只调一个可用组的实现","2.2.1以上版本支持","2.27ghz","2.3.0以上版本支持","2.3.0以上版本支持。","2.3.3以上版本的zookeeper注册中心客户端。","2.3.3以上版本(推荐使用)","2.4.0+版本,提供了简单的工具类referenceconfigcache用于缓存referenceconfig实例。","2.4.0+,分配的端口在协议缺省端口的基础上增长,确保端口段可控。","2.5","2.6.1","2.6.18","2.9","20)","20.00","20.62","200k","2012","205.182.23.201","20880","20880:","224.0.0.0","239.255.255.255","2417.7","2461.79","25","262。单个消费者调用单个服务提供者的tps(每秒处理事务数)最大为:7mbyte","27.49","2;","3","3.1","3.2","3.2.1","3.2.2版本","3.3","3.3.3","3.4","30.8","324.2","3247.1","3349.88","34.12","36.30","362.92","4","4);","4.0.5.ga","4.0.7","4.1","4.1.2","4.10","4.11","4.13","4.14","4.15","4.16","4.17","4.18","4.19","4.1版本新版本的common","4.2","4.2.0.final","4.20","4.22","4.23","4.24","4.25","4.26","4.27","4.28","4.29","4.3","4.30","4.31","4.32","4.33","4.34","4.35","4.36","4.37","4.38","4.39","4.4","4.40","4.41","4.42","4.43","4.5","4.6","4.7","4.8","4.82","4.9","4096mb","5","5.03","5.1","5.10","5.11","5.12","5.13","5.2","5.3","5.4","5.5","5.6","5.7","5.8","5.9","5000","500kbyte","50k","52.05","52.68","56.92","569.5","597.9","6","6.1","6.1.26","6.2","6.25","6.3","6.4","6.5","6.6","6.7","6.8","60000","628.06","6379","64","6g","7","7.1","7.2","7.3","7.4","7.68","7158911668568000392l;","75","8","80","8179.08","8192","88388608(=8m)","8919.27","9","9.61","9.79","9090","9]+(?:[","9]+)*\\\\.[a",":","=","=>",">",">b","@","@compon","@futur","@groupsequence(update.class)","@interfac","@max(100)","@min(18)","@notnul","@notnull(group","@past","@pattern(regexp","@reference(version=\"1.0.0\")","@service(version=\"1.0.0\")","@size(min","[info]","\\","]+)*@[a","accept","accesslog","activ","actives等类似。","addlistener(str","address","admin:","advis","age)","age;","alibaba","all,","api","api.jar:","api:","api使用范围api仅用于openapi,","api使用说明如果不想使用spring配置,而希望通过api的方式进行调用,请参见:api配置","api参考手册","api属性含义参考api属性与配置项一对一,各属性含义,请参见:,比如:applicationconfig.setname(\"xxx\")","api汇总如下:","api配置","applic","application.setname(\"xxx\");","application.setname(\"yyy\");","application.vers","application=foo","applicationconfig","applicationconfig();","applicationcontext.getbean(\"barservice\");","architectur","args)","args[0];","argument","arraylist();","assert(status.equals(\"ok\"));","assert.assertequals(null,","asserteqauls(“ok”,","async","async=true,表示结果是否马上返回.","attribute属性,不在url中体现","a和b的属性","b07)","b13,","balanc","bar","baract","barfutur","barfuture.get();","barservic","barservice)","barservice.$invoke(\"sayhello\",","barservice.findbar(barid);","barservice.sayhello(name);","barservice;","barservicemock","barservicestub","benchmark压缩包,并解压","bh620","bit","boolean","bop","bridg","broadcast","bsf:","buffer","cach","cache.destroy(reference);","cache.get(reference);","cache.get方法中会cach","cache会持有referenceconfig,不要在外部再调用referenceconfig的destroy方法,导致cache内的referenceconfig失效!","calendar等接口,只能用jdk自带的实现,因为hessian会做特殊处理,自定义实现类中的属性值都会丢失。","callback","callback=\"true\"","callbacklisten","callbacklistener(){","callbacklistener.java","callbackservic","callbackservice.addlistener(\"http://10.20.160.198/wiki/display/dubbo/foo.bar\",","callbackservice.java","callbackserviceimpl","callbackserviceimpl()","callbackserviceimpl.java","callbackservicetest.java","callback与async功能正交分解:","case","catch","catch应该加上合适的回滚边界上。","catch捕获异常,如:","catch起来。tri","category=configur","category=rout","cd","changed(str","charset","check","check=\"false\"","check=\"false\",总是会返回引用,当服务恢复时,能自动连上。","check=\"tr\bue\"。如果你的spring容器是懒加载的,或者通过api编程延迟引用服务,请关闭check,否则服务临时不可用时,会抛出异常,拿到null引用,如果","class","class/boolean","classpathxmlapplicationcontext","classpathxmlapplicationcontext(\"classpath:consumer.xml\");","classpathxmlapplicationcontext(config);","clear","clear:","client","clientip","cluster","cluster将directory中的多个invoker伪装成一个invoker,对上层透明,伪装过程包含了容错逻辑,调用失败后,重试另一个。","codec","code的配置值(见dubbo配置参考手册)","collections3","collections4","collections包(dubbo不会依赖这个包,请排查自己的应用有没有使用)的情况下,存在反序列化安全风险。","collections解决了该问题","com.alibaba.dubbo.common.url","com.alibaba.dubbo.config.annotation.refer","com.alibaba.dubbo.config.annotation.reference;","com.alibaba.dubbo.config.annotation.servic","com.alibaba.dubbo.config.annotation.service;","com.alibaba.dubbo.config.applicationconfig","com.alibaba.dubbo.config.argumentconfig","com.alibaba.dubbo.config.consumerconfig","com.alibaba.dubbo.config.methodconfig","com.alibaba.dubbo.config.moduleconfig","com.alibaba.dubbo.config.monitorconfig","com.alibaba.dubbo.config.protocolconfig","com.alibaba.dubbo.config.providerconfig","com.alibaba.dubbo.config.referenceconfig","com.alibaba.dubbo.config.registryconfig","com.alibaba.dubbo.config.serviceconfig","com.alibaba.dubbo.container.main","com.alibaba.dubbo.examples.validation.api.validationparameter;","com.alibaba.dubbo.examples.validation.api.validationservice;","com.alibaba.dubbo.remoting.http.servlet.dispatcherservlet","com.alibaba.dubbo.rpc.config.applicationconfig;","com.alibaba.dubbo.rpc.config.consumerconfig;","com.alibaba.dubbo.rpc.config.providerconfig;","com.alibaba.dubbo.rpc.config.referenceconfig;","com.alibaba.dubbo.rpc.config.registryconfig;","com.alibaba.dubbo.rpc.config.serviceconfig;","com.alibaba.dubbo.rpc.rpccontext","com.alibaba.dubbo.rpc.rpcexcept","com.alibaba.dubbo.rpc.rpcexception;","com.alibaba.dubbo.rpc.service.echoservic","com.alibaba.dubbo.rpc.service.genericexcept","com.alibaba.dubbo.rpc.service.genericservic","com.alibaba.dubbo.rpc.service.genericservice;","com.alibaba.xxx.xxxservice=dubbo://localhost:20890","com.alibaba:dubbo:jar:2.1.2:compil","com.callback.callbacklistener;","com.callback.callbackservice;","com.callback.impl;","com.callback;","com.caucho","com.foo.barservic","com.foo.barservicemock","com.foo.barservicestub","com.foo;","com.github.sgroschupf","com.netflix.cur","com.xxx.xxxservice;","com.xxx.xxxserviceimpl;","com.xxx;","common","compil","compiler编译生成相应的java代码,后续版本中会在这方面做一些增强。","concurrenthashmap();","condition://","config","configur","config为准,列举所有配置项,其它配置方式,请参见相应转换关系:properti","config缓存","config,annot","config,api","connect","connections)","connection等","consistenthash","constraintviolationexcept","consumer.xml","consumer.xml\";","consumer:","consumer端配置","contain","container:","context","context.getbean(\"callbackservice\");","context.getbean(\"democallback\");","context.getbean(\"demoservice\");","context.start();","contextpath","count","cpu","cpu、内存、网络、磁盘、文件句柄占用平稳。通过","cpu个数+1","ctx.getbean(\"memberservice\");","curat","curator:","cxf","cxf:","cxf是apache开源的一个rpc框架:http://cxf.apache.org,由xfire和celtix合并而来","dapplication=xxx","date","date());","date,","dcom.alibaba.xxx.xxxservice=dubbo://localhost:20890","dd","ddubbo.application.logger=log4j","ddubbo.consumer.check=fals","ddubbo.container=spring,jetty,log4j","ddubbo.properties.file=xxx.properti","ddubbo.reference.check=fals","ddubbo.reference.com.foo.barservice.check=fals","ddubbo.registry.check=fals","ddubbo.resolve.file=xxx.properti","ddubbo.resolve.file指定映射文件路径,此配置优先级高于中的配置,1.0.15及以上版本支持","debug:","default","default.act","default.async","default.clust","default.connect","default.loadbal","default.retri","default.timeout","defin","delay","delet(key)。","delete(@min(1)","delete(key)。","demoservic","demoservice.get(requestid);","demoservice.sendrequest(\"hello\");","demoserviceimpl.java","dep.log命令分析,dubbo缺省依赖以下三方库:","dependency:tre","deployer:","deprec","direct","direct,","directli","directory代表多个invoker,可以把它看成list,但与list不同的是,它的值可能是动态变化的,比如注册中心推送变更。","disable。","dispatch","dispatcher:","document","dogfooding注册中心本身就是一个普通的dubbo服务,可以减少第三方依赖,使整体通讯方式一致。","dogfooding,注册中心本身也是一个标准的rpc服务","dpackage=com.alibaba.xxx","dport=9099","dragoon监控服务在注册中心上的状态:http://dubbo","dservice=xxxservice,yyyservic","dsun.rmi.transport.tcp.responsetimeout=3000","dsun.rmi.transport.tcp.responsetimeout=3000,参见下面的rmi配置","dubbo","dubbo,","dubbo.application.logger=log4j","dubbo.application.name=foo","dubbo.application.owner=bar","dubbo.consumer.check=fals","dubbo.consumer.check=false,是设置check的缺省值,如果配置中有显式的声明,如:,不会受影响。","dubbo.container=spring,jetty,log4j","dubbo.jetty.directory=/foo/bar","dubbo.jetty.page=log,status,system","dubbo.jetty.port=8080","dubbo.log4j.file=/foo/bar.log","dubbo.log4j.level=warn","dubbo.log4j.subdirectory=20880","dubbo.properti","dubbo.protocol.dubbo.port=20880","dubbo.protocol.host=205.182.23.201","dubbo.reference.check=fals","dubbo.reference.check=false,强制改变所有reference的check值,就算配置中有声明,也会被覆盖。","dubbo.reference.com.foo.barservice.check=fals","dubbo.registry.address=10.20.153.10:9090","dubbo.registry.check=fals","dubbo.registry.check=false,前面两个都是指订阅成功,但提供者列表是否为空是否报错,如果注册订阅失败时,也允许启动,需使用此选项,将在后台定时重试。","dubbo.registry.client=cur","dubbo.registry.client=zkcli","dubbo.service.protocol=dubbo","dubbo.service.protocol=rmi","dubbo.xml","dubbo.xml:","dubbo1","dubbo1.0.13及其以上版本支持","dubbo1(hessian2序列化+mina","dubbo1(hessian2序列化+mina)","dubbo2","dubbo2.0.0以上版本支持","dubbo2.0.5以上版本服务提供端口支持telnet命令,","dubbo2.0的性能测试结论为通过,从性能、内存占用和稳定性上都有了提高和改进。由其是内存管理由于将mina换成netty,大大减少了1.0版本在高并发大数据下的内存大锯齿。如下图:","dubbo2.0相比较dubbo1.0(默认使用的都是hessian2序列化)性能均有提升(除了50k","dubbo2.1.0及其以上版本支持","dubbo2中所有的配置项都可以spring配置中,并且可以针对单个服务配置。","dubbo:","dubbo://","dubbo:appl","dubbo:argu","dubbo:consum","dubbo:cr","dubbo:method","dubbo:modul","dubbo:monitor","dubbo:paramet","dubbo:protocol","dubbo:provid","dubbo:refer","dubbo:registri","dubbo:servic","dubbo:service、dubbo:reference没有配置负责人,则使用dubbo:application设置的负责人。","dubbo中除这里声明以外的接口或类,都是内部接口或扩展接口,普通用户请不要直接依赖,否则升级版本可能出现不兼容。","dubbo协议","dubbo协议缺省为al","dubbo协议缺省为hessian2,rmi协议缺省为java,http协议缺省为json","dubbo协议缺省为netti","dubbo协议缺省为netty,http协议缺省为servlet","dubbo协议缺省每服务每提供者每消费者使用单一长连接,如果数据量较大,可以使用多个连接。","dubbo协议缺省端口为20880,rmi协议缺省端口为1099,http和hessian协议缺省端口为80","dubbo将自动加载classpath根目录下的dubbo.properties,可以通过jvm启动参数:","dubbo序列化相比hessian2序列化百分比","dubbo是通过jdk的shutdownhook来完成优雅停机的,所以如果用户使用\"kil","dubbo的常规功能,都保持零侵入,但有些功能不得不用api侵入才能实现。","dubbo的设计目的是为了满足高并发小数据量的rpc调用,在大数据量下的性能表现并不好,建议使用rmi或http协议。","dubbo缺省会在启动时检查依赖的服务是否可用,不可用时会抛出异常,阻止spring初始化完成,以便上线时,能及早发现问题,默认","dubbo缺省协议不适合传送大数据量的服务,比如传文件,传视频等,除非请求量很低。","dubbo缺省协议采用单一长连接和nio异步通讯,适合于小数据量大并发的服务调用,以及服务消费者机器数远大于服务提供者机器数的情况。","dubbo配置中的超时时间对rmi无效,需使用java启动参数设置:","dubbo配置参考手册","duplex.","dversion=1.0.0","dynam","dynamic=fals","d参数","d参数优先,这样可以使用户在部署和启动时进行参数重写,比如在启动时需改变协议的端口。","d参数或者dubbo.properties中","d参数映射服务地址,如:","e)","e.getcause();","e5520","echo","echoservic","echoservice.$echo(\"ok\");","email)","email;","enabled=tru","entri","entry.getvalue().changed(getchanged(entry.getkey()));","environ","error","error\");","errors.put(id,","esb,","eth0:","ex);","ex,","examples/src/main/java/com/alibaba/dubbo/examples/cach","examples/src/main/java/com/alibaba/dubbo/examples/callback","examples/src/main/java/com/alibaba/dubbo/examples/merg","examples/src/main/java/com/alibaba/dubbo/examples/valid","except","execut","execution,","exit","exit:","expirydate)","expirydate;","export","exporter.listen","extensionloader.getextensionloader(registryfactory.class).getadaptiveextension();","fail","failback","failfast","failov","failover:","failsaf","fals","fastjson:","featur","file","filter","final","find*,list*,get*,is*","fix","fixed,","foo","foofutur","foofuture.get();","fooservic","fooservice.findfoo(fooid);","fooservice;","fooserviceimpl","for(map.entri","force=fals","fork","forks=\"2\"","framework","frontend","full","function","futur","ga:compil","gb","gener","genericexcept","genericservic","genericservice.$invoke(\"findperson\",","genericservice.$invoke(\"sayhello\",","get(int","getage()","getchanged(str","getemail()","getexpirydate()","getlogindate()","getname()","getpassword()","govern","grep","grizzi","grizzli","grizzly:","groovi","group","guide/images/50kres.png","h4.","hadoop的子项目,是一个树型的目录服务,支持变更推送,适合作为dubbo服务的注册中心,工业强度较高,可用于生产环境,并推荐使用。","hard","hardwar","hashmap();","heartbeat","help","help:","hessian","hessian2,","hessian:","hessian://","hessian_lite:","hessian协议","hessian协议用于集成hessian的服务,hessian底层采用http通讯,采用servlet暴露服务,dubbo缺省内嵌jetty作为服务器实现。","hessian序列化,只传成员属性值和值的类型,不传方法或静态变量,兼容情况:(由吴亚军提供)","hessian的各版本兼容性不好,可能和应用使用的hessian冲突,dubbo内嵌了hessian3.2.1的源码","hh:mm:ss\").format(new","hibern","host","host,","hotspot(tm)","http","http,","http:","http://","http://code.alibabatech.com/blog/experience_1402/servic","http://code.alibabatech.com/schema/dubbo/dubbo.xsd","http://download.oracle.com/docs/cd/e17409_01/javase/6/docs/technotes/guides/rmi/sunrmiproperties.html","httpclient:","httpd","http实现。","http(json序列化)","id","id)","id);","idemoservic","idemoservice.java","implement","import","index","index=\"0\"","inf/spr","inf/spring/*.xml","inf/spring目录下的所有spring配置","info:","init","injvm","injvm:","injvm=\"true\"","int","integ","intel(r)","interfac","introduct","invok","invoke(servicefactori","invoker.listen","iothread","io线程池大小(固定大小)","io线程池,接收网络读写中断,以及序列化和反序列化,不处理业务,业务线程池参见threads配置,此线程池和cpu相关,不建议配置。","isconsumersid","isprovidersid","java","java(tm)","java,","java.io.serializable;","java.text.simpledateformat;","java.util.arraylist(invokers.size());","java.util.concurrent.concurrenthashmap;","java.util.date;","java.util.map;","javassist","javassist.jar","javax.valid","javax.validation.constraints.future;","javax.validation.constraints.max;","javax.validation.constraints.min;","javax.validation.constraints.notnull;","javax.validation.constraints.past;","javax.validation.constraints.pattern;","javax.validation.constraints.size;","javax.validation.constraintviolationexception;","javax.validation.groupsequence;","java原生支持","java字节码编译器,用于动态类的生成,可选:jdk或javassist","java标准的远程调用协议","jboss","jboss的nio框架,性能较好(推荐使用)","jcach","jcache:","jcache等","jcl","jdk","jdk1.5+","jdk原生支持","jedis:","jee:","jetti","jetty,","jetty:","jfreechart:","jruby,","json","jsr107","jsr303","jta/xa三阶段提交事务","jvm内存运行稳定,无oom,堆内存中无不合理的大对象的占用。通过","jvm启动","kb","keepal","keepalivetimeout","key","key)","key,","keygener","key为服务名,value为服务提供者url,此配置优先级最高,1.0.15及以上版本支持","kylin","l","l:","laiwang","layer","leastact","libthrift","limit","link","list","listen","listener)","listener);","listener.changed(getchanged(key));","listeners.entryset()){","listeners.put(key,","listeners.remove(entry.getkey());","load","loadbal","loadbalance,","loadbalance负责从多个invoker中选出具体的一个用于本次调用,选的过程包含了负载均衡算法,调用失败后,需要重选","localhost","local三种协议,分别表示,dubbo地址,http地址,本地注册中心","local后缀。","local后缀,服务接口客户端本地代理类名,用于在客户端执行本地逻辑,如本地缓存等,该本地代理类的构造函数必须允许传入远程代理对象,构造函数如:publ","log","log4j","log4j.jar和common","log4j:log4j:jar:1.2.16:compil","log4j等加载,可通过container扩展点进行扩展,参见:container。配置配在java命令","logger","logger.error(e);","logger的日志级别","logger的最后100字符的日志","logging.jar日志输出包。","logging:common","logging:jar:1.1.1:compil","logging,则不能去掉。","logindate)","logindate;","long","lru","ls","ls:","l,其中的20880为服务端口","main(string[]","map","map,","map.put(\"class\",","map.put(\"name\",","map.put(\"password\",","map中的key为url地址。","map中的value为过期时间,用于判断脏数据,脏数据由监控中心删除。(注意:服务器时间必需同步,否则过期检测会不准确)","matur","maven插件参考手册","max","maxclient","maxkeepaliverequest","maxrequestsperchild","maxsparethread","mbps,","memberservic","memberservice;","memcach","memcached:","memcached://","memori","memory:","messag","message,","meta","method","method.setname(\"createxxx\");","method.setretries(0);","method.settimeout(10000);","methodconfig","methodconfig();","methodname,","methods)","methods.add(method);","mina","mina,","mina:","minsparethread","mix","mm","mock","mock=fail:return+nul","mock=force:return+nul","mock后缀。","mock后缀,服务接口调用失败mock实现类,该mock类必须有一个无参构造函数,与local的区别在于,local总是被执行,而mock只在出现非业务异常(比如超时,网络异常等)时执行,local在远程调用之前执行,mock在远程调用后执行。","mock是stub的一个子集,便于服务提供方在客户端执行容错逻辑,因经常需要在出现rpcexception(比如网络失败,超时等)时进行容错,而在出现业务异常(比如登录用户名密码错误)时不需要容错,如果用stub,可能就需要捕获并依赖rpcexception类,而用mock就可以不依赖rpcexception,因为它的约定就是只有出现rpcexception时才执行。","mock等系统集成,普通服务提供方或消费方,请采用配置方式使用dubbo,请参见:","mock通常用于服务降级,比如某验权服务,当服务提供方全部挂掉后,客户端不抛出异常,而是通过mock数据返回授权失败。","mode)","model","modul","module.vers","monitor","monitor:","msg)","msg);","msg,","multi","multicast注册中心","mvn","mygenericservic","n/a","name","name)","name;","name=\"findxxx\"","name,mag","nc","netti","netty,","netty.jar","new","nofifyimpl","normaldemoservic","notifi","notify.java","notifyimpl","notifyimpl.java","null;","null。","number,","number等。使用dubbo","object","object[]","object[]{person});","offer","offerservice.findoffer(offerid);","ok","oninvok","onreturn","onreturn(person","onreturn,","onreturn=\"xxx\"","onthrow","onthrow(throw","onthrow三个事件,可以配置当事件发生时,通知哪个类的哪个方法。","or:","org.apache.cxf","org.apache.thrift","org.apache.zookeep","org.hibern","org.javassist:javassist:jar:3.15.0","org.jboss.netty:netty:jar:3.2.5.final:compil","org.springframework.context.support.classpathxmlapplicationcontext;","org.springframework.stereotype.component;","org.springframework:spring:jar:2.5.6.sec03:compil","organ","override:","override://","override://0.0.0.0/com.foo.barservice?category=configurators&dynamic=false&application=foo&mock=force:return+nul","override://10.20.153.10/com.foo.barservice?category=configurators&dynamic=false&disbaled=tru","override://10.20.153.10/com.foo.barservice?category=configurators&dynamic=false&loadbalance=leastact","override://10.20.153.10/com.foo.barservice?category=configurators&dynamic=false&weight=200","owner","packag","paramet","parameter);","parametertypes,","password","password)","password;","path","payload","person","person(id,","person.put(\"name\",","person.put(\"password\",","person.setname(\"xxx\");","person.setpassword(\"yyy\");","personimpl","personimpl();","peth0:","pid\"时,才会执行。","pid\"等强制关闭指令,是不会执行优雅停机的,只有通过\"kil","pojo","pojo(嵌套的复杂person对象),不做任何处理,原样返回","port","port:","priority=1","privat","problem","process.html","processor_count","properties最后,相当于缺省值,只有xml没有配置时,dubbo.properties的相应配置项才会生效,通常用于共享公共配置,比如应用名。","protocol","protocol.setname(\"dubbo\");","protocol.setport(12345);","protocol.setthreads(200);","protocol:","protocol://username:password@host:port/path?key=value&key=valu","protocolconfig","protocolconfig();","protocolconfig.destroyall();","provid","provider.xml","provider:","providerconfig均可以缺省配置。","provider上可以配置的provider端属性有:","provider上尽量多配置consumer端的属性,让provider实现者一开始就思考provider服务特点、服务质量的问题。","provider上配置合理的provider端属性","proxi","proxyfactori","ps","ps:","public","pwd","pwd:","query(map),这样的接口没有明确语义,会给后期维护带来不便。","queue","quick","random","redi","redis:","redis://","redis安装手册,只需搭一个原生的redis服务器,并将","redis注册中心","redis过期数据","ref","refer","reference.filt","reference.get();","reference.setapplication(application);","reference.setgeneric(true);","reference.setinterface(\"com.xxx.xxxservice\");","reference.setinterface(xxxservice.class);","reference.setmethods(methods);","reference.setregistry(registry);","reference.seturl(\"dubbo://10.20.130.230:20880/com.xxx.xxxservice\");","reference.setversion(\"1.0.0\");","reference.xml","referenceconfig","referenceconfig();","referenceconfigcach","referenceconfigcache.getcache();","referenceconfigcache.getcache(keygener","referenceconfig实例很重,封装了与注册中心的连接以及与提供者的连接,需要缓存,否则重复生成referenceconfig可能造成性能问题并且会有内存和连接泄漏。api方式编程时,容易忽略此问题。","reference对象,并且调用referenceconfig.get方法启动referenceconfig","reference配置负责人","reg1.hst.xyi.cn.alidc.net:8080/status/com.alibaba.morgan.member.memberservice:1.0.5","regist","registri","registry.fil","registry.register(url.valueof(\"condition://0.0.0.0/com.foo.barservice?category=routers&dynamic=false&rule=\"","registry.register(url.valueof(\"memcached://10.20.153.11/com.foo.barservice?category=providers&dynamic=false&application=foo\"));","registry.register(url.valueof(\"memcached://10.20.153.11/com.foo.barservice?category=providers&dynamic=false&application=foo&group=member&loadbalance=consistenthash\"));","registry.register(url.valueof(\"override://0.0.0.0/com.foo.barservice?category=configurators&dynamic=false&application=foo&mock=force:return+null\"));","registry.register(url.valueof(\"override://0.0.0.0/com.foo.barservice?category=configurators&dynamic=false&application=foo&timeout=1000\"));","registry.register(url.valueof(\"redis://10.20.153.11/com.foo.barservice?category=providers&dynamic=false&application=foo&group=member&loadbalance=consistenthash\"));","registry.sess","registry.setaddress(\"10.20.130.230:9090\");","registry.setpassword(\"bbb\");","registry.setusername(\"aaa\");","registry.timeout","registry.transport","registry.wait","registry:","registryconfig","registryconfig();","registryfactori","registryfactory.getregistry(url.valueof(\"zookeeper://10.20.153.10:2181\"));","relation:","replicate:","repository:","requestid","research","resolve.properties文件,不需要配置","respons","result","ret","ret);","ret.put(id,","retri","retries=\"2\"","retries=\"2\">","return","return=\"false\",以减少future对象的创建和管理成本:","rmi","rmi//","rmi:","rmi协议","rmi协议采用jdk标准的java.rmi.*实现,采用阻塞式短连接和jdk标准序列化方式。","rmi配置:","roundrobin","route(invokers)","router负责从多个invoker中按路由规则选出子集,比如读写分离,应用隔离等。","rpc","rpc/dubbo","rpccontext.getcontext().getfuture();","rpccontext.getcontext().getremotehost();","rpccontext.getcontext().geturl().getparameter(\"application\");","rpccontext.getcontext().isconsumerside();","rpccontext.getcontext().isproviderside();","rpccontext是一个threadlocal的临时状态记录器,当接收到rpc请求,或发起rpc请求时,rpccontext的状态都会变化。","rt","rule=url.encode(\"host","run()","runnable()","runtim","runtime=fals","save(@notnul","save(validationparamet","save{}","sayhello(str","scan,如果用的是spring2.0及以前版本,需配置:","scheduler:","schema:","schema配置参考手册","se","sent","sent=\"false\"","sent=\"true\"","serial","serialid","serializ","serialization:","serialversionuid","server","server:","serverip","serverlimit","servic","service)","service.export();","service.filt","service.setapplication(application);","service.setinterface(\"com.xxx.xxxservice\");","service.setinterface(xxxservice.class);","service.setprotocol(protocol);","service.setref(xxxservice);","service.setregistry(registry);","service.setversion(\"1.0.0\");","service:","serviceconfig","serviceconfig();","servicefactory)","servicefactory.get(demoservice.class);","service配置负责人","servlet","servlet:","session","set","set(key,","set>","setage(int","setemail(str","setexpirydate(d","setlogindate(d","setname(str","setpassword(str","simpl","simpledateformat(\"yyyi","simple和transport","simple注册中心","simple监控中心","size","size:","slf4j","spring","spring.jar","spring2.5及以后版本支持compon","spring2.x初始化死锁问题","stabl","start","startserv","static","statu","status:","status命令所检查的资源也可以扩展,参见:扩展参考手册。","sticki","strength","string","string/boolean","string[]","string[]{\"com.xxx.person\"},","string其余皆通过","string场景","string),详见第五章的性能数据。","stub","stub必须有可传入proxy的构造函数。","subscrib","subscribe,","sun的nio框架,应用于glassfish服务器中","system","system.out.println(\"callback1:\"","system.out.println(\"onreturn:\"","system.out.println(\"valid","system.out.println(violations);","t","t)","t.printstacktrace();","t.setdaemon(true);","t.start();","tecal","telnet","telnet命令参考手册","telnet命令可以扩展,参见:扩展参考手册。","test","test,","test.java","test/dubbo","test1","test:只是用来说明callback正常被调用,业务具体实现自行决定.","this.ag","this.barservic","this.email","this.expiryd","this.logind","this.nam","this.password","thread","thread(new","thread.sleep(5000);","threadlimit","threadloc","threadlocal,","threadpool","threadpool:","threadsperchild","thrift","thrift/src/test/java/com/alibaba/dubbo/rpc/protocol/thrift/exampl","thrift:","thrift://","thrift不支持数据类型:null值","thrift协议同样需要使用thrift的idl","throw","timeout","timeout=\"3000\"","timeout=1000","timeout可以在多处设置,配置项及覆盖规则详见:","token","total","tp","tps成功平均值","trace","transport","transporter:","tri","true","type","type=javascript","unregister,","unregister事件。","unsubscribe。","up","update(validationparamet","update{}","url","url.encode(\"funct","url.encode(\"http://10.20.160.198/wiki/display/dubbo/host","url本身的字段,如:protocol,","url格式:","user","usernam","utf","valid","validationconsum","validationconsumer.class.getpackage().getname().replace('.',","validationparamet","validationparameter();","validationservic","validationservice.class)","validationservice.save(parameter);","validationservice.save.class)","validationservice.save.class),可选","validator:","valu","value),","var","ve","ve.getconstraintviolations();","version","violat","vm","void","wait","wc","web.xml:","webservice:","webservice://","weight","while(true)","work","wsdl:http://10.20.153.10:8080/com.foo.helloworld?wsdl","x86_64","xeon(r)","xmemcached:","xml次之,如果在xml中有配置,则dubbo.properties中的相应配置项无效。","xml配置","xmn256m","xms2g","xmx2g","xss256k","xstream:","xx:+cmsparallelremarken","xx:+disableexplicitgc","xx:+usecmscompactatfullcollect","xx:+usecmsinitiatingoccupancyonli","xx:+useconcmarksweepgc","xx:+usefastaccessormethod","xx:cmsinitiatingoccupancyfraction=70","xx:largepagesizeinbytes=128m","xx:permsize=128m","xxx()","xxx:","xxxgenericservice();","xxxmethod","xxxmethod({\"prop\":","xxxmethod:","xxxservic","xxxservice)","xxxservice.sayhello();","xxxservice.xxx();","xxxservice.xxxmethod({\"prop\":","xxxservice:","xxxserviceimpl","xxxserviceimpl();","xxxservicelocal(xxxservic","yyyservice.yyy();","z0","z]+\\\\s*$\")","za","zkclient","zkclient:","zookeep","zookeeper:","zookeeper://10.20.153.10:2181?client=cur","zookeeper://10.20.153.10:2181?client=zkcli","zookeeper单机配置:","zookeeper安装安装方式参见:","zookeeper安装手册,只需搭一个原生的zookeep","zookeeper注册中心","zookeeper说明zookeep","zookeeper集群配置:","{","{\"java.lang.string\"},","{\"world\"});","|","|<dubbo:argu","|<dubbo:method","|<dubbo:method>","}","});","},","。","一个服务提供者并行执行请求上限,即当provider对一个服务的并发调用到上限后,新调用会wait(consumer可能到超时)。在方法上配置(dubbo:method","一次请求派发两种事件,需屏蔽无用事件","一致性hash,相同参数的请求总是发到同一提供者。","一致性hash,相同参数的请求总是发到同一提供者,当某一台提供者挂时,原本发往该提供者的请求,基于虚拟节点,平摊到其它提供者,不会引起剧烈变动","上下文api","上下文中存放的是当前调用过程中所需的环境信息。","上下文信息","上图中以timeout为例,显示了配置的查找顺序,其它retries,","上述场景在dubbo1.0\\dubbo2.0(hessian2序列化)\\dubbo2.0(dubbo序列化)\\rmi\\hessian3.2.0\\http(json序列化)进行10分钟的性能测试。","下载","不允许为空","不区分版本:(2.2.0以上版本支持)","不可用","不可靠异步调用","不可靠,重启丢失","不同服务不同协议","不同服务使用不同注册中心","不建议使用过于抽象的通用接口,如:map","不抛异常,a多的那","不抛异常,b正常接","不支持权重,在容量规划时,不能通过权重把压力导向一台机器压测容量","不相同","不稳定","不等号","不等待消息发出,将消息放入io队列,即刻返回。","不要使用dubbo.properties文件配置,推荐使用对应xml配置","不要只是因为是dubbo调用,而把调用tri","不需要启动任何中心节点,只要广播地址一样,就可以互相发现。","与","与index二选一","与方法同名接口,首字母大写,用于区分验证场景,如:@notnull(group","业务线程负载均衡。通过","两阶段提交:","个属性的值,b没有,","中provider和consumer里的conf/dubbo.properties中的dubbo.registry.addrss的值改为redis://127.0.0.1:6379即可使用。","中provider和consumer里的conf/dubbo.properties中的dubbo.registry.addrss的值改为zookeeper://127.0.0.1:2181即可使用。","中引用此id","中引用此id,如果id不填,缺省和name属性值一样,重复则在name后加序号。","中的key名alibaba.intl.commons.dubbo.service.allow.no.provid","中的key名dubbo.service.max.thread.threads.s","中的“对应url参数”一列。","中的说明。","中配置url指向提供者,将绕过注册中心,多个地址用分号隔开,配置如下:","为了减少广播量,dubbo缺省使用单播发送提供者地址信息给消费者,如果一个机器上同时启了多个消费者进程,消费者需声明unicast=false,否则只会有一个消费者能收到消息:","为什么不能传大包?","为什么要消费者比提供者个数多?","为什么采用异步单一长连接?","为重要应用提供额外的机器:","为防止被大量连接撑挂,可在服务提供方限制大接收连接数,以实现服务提供方自我保护。","主key为服务名和类型。","主机端口配置:","主机绑定","主要考察序列化和网络io的性能,因此服务端无任何业务逻辑。取10并发是考虑到http协议在高并发下对cpu的使用率较高可能会先打到瓶颈。","也可以使用自定义接口:","也可以使用:(等价于前面的:)","也可以用","也可以用dubbo.properties配置","也可以:","也可在服务级别设置:","事件处理线程说明","事件通知","事件通知,在远程调用执行前后触发","从","从2.1.0版本开始支持","从2.2.0版本开始缺省为zkclient实现,以提升zookeeper客户端的健状性。zkclient是datameer开源的一个zookeeper客户端实现,开源比较早,参见:https://github.com/sgroschupf/zkcli","从2.3.0版本开始支持可选curator实现。cur","从指定注册中心注册获取服务列表,在多个注册中心时使用,值为","仓库用于存储服务应用发布包。","代码参见:https://github.com/alibaba/dubbo/tree/master/dubbo","令牌验证","令牌验证,为空表示不开启,如果为true,表示随机生成动态令牌","令牌验证,为空表示不开启,如果为true,表示随机生成动态令牌,否则使用静态令牌,令牌的作用是防止消费者绕过注册中心直接访问,保证注册中心的授权功能有效,如果使用点对点调用,需关闭令牌功能","令牌验证,用于服务授权","以上是dubbo最基本的几个需求,更多服务治理问题参见:","以上版本支持","以下依赖,在主动配置使用相应实现策略时用到,需自行加入依赖。","以下数据供参考:","以及url上的所有参数,如:application,","以星号","以缺省的9090端口启动一个简易注册中心","以美元符","以调用参数为key,缓存返回结果,可选:lru,","以逗号","任意组:","优于","优于全局配置,最后是dubbo","优先使用","优先,参见:配置的覆盖策略","优先,参见:配置的覆盖策略。","优雅停机","传入1k","传入1kstring,不做任何处理,原样返回","传入1kstring,在服务器段循环1w次,每次重新生成一个随机数然后进行拼装。考察业务线程是否能够分配到每个cpu上。","传入200kstring,不做任何处理,原样返回","传入50kstring,不做任何处理,原样返回","传输协议:http","传输协议:tcp","传输方式:nio异步传输","传输方式:同步传输","伪造返回结果,可在失败时执行,或直接执行,用于服务降级","伸缩性:","但如果事件处理逻辑较慢,或者需要发起新的io请求,比如需要查询数据库,则必须派发到线程池,否则io线程阻塞,将导致不能接收其它请求。","但如果其它三方库比如spring.jar间接依赖common","但如果设置了","作为","作服务的提供者,比服务使用方更清楚服务性能参数,如调用的超时时间,合理的重试次数,等等","作用","你也可以设置是否等待消息发出:(异步总是不等待返回)","你可以伪造容错数据,此方法只在出现rpcexception时被执行","你可以在客户端做threadlocal本地缓存,或预先验证参数是否合法,等等","你可以容错,可以做任何aop拦截事项","使慢的提供者收到更少请求,因为越慢的提供者的调用前后计数差会越大。","使用12台网站标配机器提供服务(8核cpu,8g内存)","使用8台网站标配机器提供服务(8核cpu,8g内存)","使用dragoon的http监控项监控注册中心上服务提供方","使用dubbo的产品授权服务项目","使用dubbo的会员服务项目","使用redis的key/map结构存储数据","使用redis的publish/subscribe事件通知数据变更","使用xxxservice对象","使用固定端口暴露服务,而不要使用随机端口","使用如:","使用指定的协议暴露服务,在多协议时使用,值为的id属性,多个协议id用逗号分隔","使用文件缓存注册中心地址列表及服务提供者列表,应用重启时将基于此文件恢复,注意:两个注册中心不能使用同一文件存储","使用方式如下:","依赖","依赖于javassist.jar包,占用jvm的perm内存,perm可能要设大一些:java","依赖于zookeeper的稳定性","依赖于网络拓普和路由,跨机房有风险","依赖:","保存时不允许为空,更新时允许为空","修改dubbo","值支持:","假设存在pojo如:","停止时等待通知完成时间(毫秒)","停止时,不再发起新的调用请求,所有新的调用在客户端即报错。","停止时,先标记为不接收新请求,新请求过来时直接报错,让客户端重试其它机器。","健状性:","偶尔会连接失败,需重建stub","全局配置项值,对应dubbo.properties中的key名dubbo.service.invoke.timeout","公网ip,比如:","共享服务接口","关联验证示例","关键参数","关闭所有服务的启动时检查:","关闭某个服务的启动时检查:","关闭检查,比如,测试时,有些服务不关心,或者出现了循环依赖,必须有一方先启动。","关闭注册中心启动时检查:","其中:","其中,协议对应provider.setprotocol()的值,端口对应provider.setport()的值,","其中,服务提供方配置,通过url经由注册中心传递给消费方。","其中:","其他正常","其它的参数(retries、loadbalance、actives等)的覆盖策略也一样。","其次,要可以动态调整权重,在线上,将某台机器的权重一直加大,并在加大的过程中记录响应时间的变化,直到响应时间到达阀值,记录此时的访问量,再以此访问量乘以机器数反推总容量。","典型配置如:","兼容性","兼容性声明因2.0.8最初设计的zookeeper存储结构不能扩充不同类型的数据,2.0.9版本做了调整,所以不兼容,需全部改用2.0.9版本才行,以后的版本会保持兼容2.0.9。2.2.0版本改为基于zkclient实现,需增加zkclient的依赖包,2.3.0版本增加了基于curator的实现,作为可选实现策略。","兼容性:","内存","内核","再将所有消费者升级为新版本","出于兼容性考虑默认的序列化方式和1.0保持一致使用hessian2,如对性能有更高要求可以使用dubbo序列化,由其是在处理复杂对象时,在大数据量下能获得50%的提升(但此时已不建议使用dubbo协议)。","出来的枚举进行传输","分包","分布式事务","分布式服务架构","分组聚合","分组聚合返回值,用于菜单聚合等服务","分组验证示例","分隔多个值,如:host","则pojo数据:","前后台分离:","功能成熟度","动态下发配置,实现功能的开关","动态决定调用关系","升级性:","协议:","协议beanid,可以在","协议参考手册","协议名称","协议序列化方式,当协议支持多种序列化方式时使用,比如:dubbo协议的dubbo,hessian2,java,compactedjava,以及http协议的json,xml等","协议序列化方式,当协议支持多种序列化方式时使用,比如:dubbo协议的dubbo,hessian2,java,compactedjava,以及http协议的json等","协议是对","协议的上下文路径必须与servlet应用的上下文路径相同。","协议的客户端实现类型,比如:dubbo协议的mina,netty等","协议的服务器端实现类型,比如:dubbo协议的mina,netty等,http协议的jetty,servlet等","协议的服务端和客户端实现类型,比如:dubbo协议的mina,netty等,可以分拆为server和client配置","协议的消息派发方式,用于指定线程模型,比如:dubbo协议的all,","协议的端口必须与servlet容器的端口相同,","协议编码方式","协议配置,用于配置提供服务的协议信息,协议由提供方指定,消费方被动接受。","协议:","单一应用架构","压力分摊不均","原因如下:","原理","原生协议的扩展,在原生协议的基础上添加了一些额外的头信息,比如servic","去中心化,不需要安装注册中心","参数及返回值不能自定义实现list,","参数及返回值需实现serializable接口","参数及返回值需符合bean规范","参数回调","参数回调方式与调用本地callback或listener相同,只需要在spring的配置文件中声明哪个参数是callback类型即可,dubbo将基于长连接生成反向代理,这样就可以从服务器端调用客户端逻辑。","参数尽量使用基本类型和pojo。","参数支持:","参数是否为callback接口,如果为callback,服务提供方将生成反向代理,可以从服务提供方反向调用消费方,通常用于事件推送.","参数标注示例","参数设置脚本类型,缺省为javascript。","参数验证","参数验证功能是基于","参数验证示例","参数验证,jsr303验证框架集成","参见:合并结果扩展","参见:延迟连接","参见:配置规则","发送变更通知","取消缺省服务。","只写入和读取任意一台,失败时重试另一台,需要服务器端自行配置数据同步。","只对使用长连接的dubbo协议生效。","只有请求响应消息派发到线程池,其它连接断开事件,心跳等消息,直接在io线程上执行。","只注册","只订阅","只请求消息派发到线程池,不含响应,响应和其它连接断开事件,心跳等消息,直接在io线程上执行。","只调用指定协议的服务提供方,其它协议忽略。","可与原生hessian互操作,基于http协议","可与原生rmi互操作,基于tcp协议","可以修改这个策略,在referenceconfigcache.getcache时,传一个keygenerator。详见referenceconfigcache类的方法。","可以全局设置开启令牌验证","可以和原生hessian服务互操作,即:","可以和原生webservice服务互操作,即:","可以在/etc/hosts中加入:机器名","可以在多个配置项设置超时,由上至下覆盖(即上面的优先),示例如下:","可以拿到一个验证错误详细信息的集合","可以直接去掉,dubbo本身的日志会自动切换为jdk的java.util.logging输出。","可以自行扩展协议,参见:协议扩展","可以自行扩展注册中心,参见:注册中心扩展","可以自行扩展集群容错策略,参见:集群扩展","可以通过","可以通过以下方式配置日志输出策略","可以通过脚本或监控中心手工填写表单注册memcached服务的地址:","可伸缩线程池,但池中的线程数只会增长不会收缩。(为避免收缩时突然来了大流量引起的性能问题)。","可用下面map表示:","可用于生产环境","可选","可通过","可靠性声明","可靠性声明阿里内部并没有采用zookeeper做为注册中心,而是使用自己实现的基于数据库的注册中心,即:zookeeper注册中心并没有在阿里内部长时间运行的可靠性保障,此zookeeper桥接实现只为开源版本提供,其可靠性依赖于zookeeper本身的可靠性。","号通配符","各协议的兼容性不同,参见:","各协议的性能情况,请参见:性能测试报告","各节点关系:","合并指定分组","同一zookeeper,分成多组注册中心:","同时调用1个参数为string(5k)方法,1个参数为person对象的方法,1个参数为map(值为3个person)的方法,持续运行50小时。","同时验证update组规则","同步回调模式:async=fals","同步无回调","同理等待bar返回。","名相同,但类型不相同","向/dubbo/com.foo.barservice/providers目录下写入自己的url地址。","向指定注册中心注册,在多个注册中心时使用,值为","向指定注册中心注册,在多个注册中心时使用,值为的id属性,多个注册中心id用逗号分隔,如果不想将该服务注册到任何registry,可将值设为n/a","向注册中心写入动态配置覆盖规则:(通常由监控中心或治理中心的页面完成)","向注册中心写入动态配置覆盖规则:(通过由监控中心或治理中心的页面完成)","向注册中心写入路由规则:(通常由监控中心或治理中心的页面完成)","启动一个内嵌jetty,用于汇报状态","启动一个内嵌jetty,用于汇报状态。","启动时检查","启动时检查提供者是否存在,true报错,false忽略","和","和服务的api包放到dubbo.benchmark/lib目录下","和本地bean一样使用xxxservic","响应时间","响应时间成功平均值(ms)","回声测试","回声测试可用性","回声测试用于检测服务是否可用,回声测试按照正常请求流程执行,能够测试整个调用是否通畅,可用于监控。","因dubbo协议采用单一长连接,假设网络为千兆网卡(1024mbit=128mbyte),根据测试经验数据每条连接最多只能压满7mbyte(不同的环境可能不一样,供参考),理论上1个服务提供者需要20个服务消费者才能压满网卡。","因dubbo协议采用单一长连接,如果每次请求的数据包大小为500kbyte,假设网络为千兆网卡(1024mbit=128mbyte),每条连接最大7mbyte(不同的环境可能不一样,供参考),单个服务提供者的tps(每秒处理事务数)最大为:128mbyt","因为服务的现状大都是服务提供者少,通常只有几台机器,而服务的消费者多,可能整个网站都在访问该服务,比如morgan的提供者只有6台提供者,却有上百台消费者,每天有1.5亿次调用,如果采用常规的hessian服务,服务提供者很容易就被压跨,通过单一连接,保证单一消费者不会压死提供者,长连接,减少连接握手验证等,并使用异步io,复用线程池,防止c10k问题。","固定大小线程池,启动时建立线程,不关闭,一直持有。(缺省)","在api旁边放一个mock实现,它实现barservice接口,并有一个无参构造函数","在api旁边放一个stub实现,它实现barservice接口,并有一个传入远程barservice实例的构造函数","在dubbo.xml中加入主机地址的配置:","在dubbo1中需要在dubbo.properties文件中的配置项,dubbo2中配置示例如下:","在io线程上,将连接断开事件放入队列,有序逐个执行,其它消息派发到线程池。","在jvm启动参数中加入","在provider上尽量多配置consumer端属性","在provider可以配置的consumer端属性有:","在provider和consumer中增加zookeeper客户端jar包依赖:","在provider配置后,consumer不配置则会使用provider的配置值,即provider配置可以作为consumer的缺省值。否则,consumer会使用consumer端的全局设置,这对于provider不可控的,并且往往是不合理的。","在一个截面上碰撞的概率高,但调用量越大分布越均匀,而且按概率使用权重后也比较均匀,有利于动态调整提供者权重。","在一个截面上碰撞的概率高,重试时,可能出现瞬间压力不均","在低压力时间段,先升级一半提供者为新版本","在大文件传输时,单一连接会成为瓶颈","在大规模服务化之前,应用可能只是通过rmi或hessian等工具,简单的暴露和引用远程服务,通过配置服务的url地址进行调用,通过f5等硬件进行负载均衡。","在客户端同时写入所有服务器,只读取单台,服务器端不需要同步,注册中心集群增大,性能压力也会更大。","在客户端执行部分逻辑","在客户端验证参数","在开发及测试环境下,经常需要绕过注册中心,只测试指定服务提供者,这时候可能需要点对点直连,点对点直联方式,将以服务接口为单位,忽略注册中心的提供者列表,a接口配置点对点,不影响b接口从注册中心获取列表。","在方法上配置(dubbo:method","在服务器端验证参数","在注册中心控制权限,以决定要不要下发令牌给消费者","在稳定性场景的基础上,将提供者和消费者布置成均为2台(一台机器2个实例),且string的参数从20byte到200k,每隔10分钟随机变换。","在调用之前,调用之后,出现异常时,会触发oninvoke,","在集群调用失败时,dubbo提供了多种容错方案,缺省为failover重试。","在集群负载均衡时,dubbo提供了多种均衡策略,缺省为random随机调用。可以自行扩展负载均衡策略,参见:负载均衡扩展","场景","场景名称","场景名称:1k","场景名称:200k","场景名称:50k","场景名称:pojo","均衡","垂直应用架构``","基于cxf的frontend","基于hessian的远程调用协议。","基于http表单的远程调用协议。参见:http协议使用说明","基于jta/xa规范实现。","基于nio的非阻塞实现并行调用,客户端不需要启动多线程即可完成并行调用多个远程服务,相对多线程开销较小。","基于webservice的远程调用协议:","基于最近最少使用原则删除多余缓存,保持最热的数据被缓存。","基于条件表达式的路由规则,功能简单易用","基于条件表达式的路由规则,如:host","基于脚本引擎的路由规则,功能强大","基于脚本引擎的路由规则,如:","基准测试工具包","基本类型以及date,list,map等不需要转换,直接调用","声明为泛化接口","多个协议可以用setprotocols()","多个注册中心可以用setregistries()","多出来的枚举进行传输","多协议","多协议暴露服务","多注册中心","多注册中心引用","多注册中心注册","多版本","多端口:","大量访问页面时,会影响服务器的线程和内存","失败安全,出现异常时,直接忽略。","失败安全,出现异常时,直接忽略,通常用于写入审计日志等操作","失败自动切换,当出现失败,重试其它服务器。(缺省)","失败自动切换,当出现失败,重试其它服务器,通常用于读操作(推荐使用)","失败自动恢复,后台记录失败请求,定时重发。","失败自动恢复,后台记录失败请求,定时重发,通常用于消息通知操作","失败重试次数,缺省是2(表示加上第一次调用,会调用3次)","如","如完全不配置使用dubbo缺省值,参见","如想测试dubbo的不同版本,直接替换lib下的dubbo的jar包即可。","如果","如果classpath根目录下存在多个dubbo.properties,比如多个jar包中有dubbo.properties,dubbo会任意加载,并打印error日志,后续可能改为抛异常。","如果foo已返回,直接拿到返回值,否则线程wait住,等待foo返回后,线程会被notify唤醒。","如果foo需要5秒返回,bar需要6秒返回,实际只需等6秒,即可获取到foo和bar,进行接下来的处理。","如果shutdownhook不能生效,可以自行调用:","如果xml有多行同名标签配置,可用id号区分,如果没有id号将对所有同名标签生效:","如果不想依赖配置顺序,可以使用","如果事件处理的逻辑能迅速完成,并且不会发起新的io请求,比如只是在内存中记个标识,则直接在io线程上处理更快,因为减少了线程池调度。","如果你只是想异步,完全忽略返回值,可以配置","如果你想记录每一次请求信息,可开启访问日志,类似于apache的访问日志。","如果你正依赖dubbo作为你业务工程的rpc通信框架,这将是你的参考手册","如果你的服务需要warmup时间,比如初始化缓存,等待相关资源就位等,可以使用delay进行延迟暴露。","如果公共配置很简单,没有多注册中心,多协议等情况,或者想多个spring容器想共享配置,可以使用dubbo.properties作为缺省配置。","如果匹配条件为空,表示对所有消费方应用,如:=>","如果只是想简单的忽略异常,在2.0.11以上版本可用:","如果只是测试环境临时需要连接两个不同注册中心,使用竖号分隔多个不同注册中心地址:","如果大量使用getbean(),相当于已经把spring退化为工厂模式在用,可以将dubbo的服务隔离单独的spring容器。","如果实在要调getbean(),可以将dubbo的配置放在spring的最后加载。","如果或,以及,则不需要。","如果或,则换成mina.jar或grizzly.jar。","如果担心性能问题,在必要时,可以通过override掉异常类的fillinstacktrace()方法为空方法,使其不拷贝栈信息,","如果方法名和memcached的标准方法名不相同,则需要配置映射关系:(其中\"p:xxx\"为spring的标准p标签)","如果方法名和redis的标准方法名不相同,则需要配置映射关系:(其中\"p:xxx\"为spring的标准p标签)","如果是127.*等loopback地址,则扫描各网卡,获取网卡ip。","如果是一个第三方独立提供者,比如memcached等,可以直接向注册中心写入提供者地址信息,消费者正常使用:","如果是业务种类,以后明显会有类型增加,不建议用enum,可以用string代替。","如果是在传入参数中用了enum,并新增了enum值,建议先升级服务提供方,这样服务消费方不会传入新值。","如果是在返回值中用了enum,并新增了enum值,建议先升级服务消费方,这样服务提供方不会返回新值。","如果是完备集,可以用enum,比如:enable,","如果是线上需求需要点对点,可在","如果有多个应用进程注意不要使用同一个文件,避免内容被覆盖。","如果有机器正在重启,可能会出现调用失败","如果服务接口没有继承java.rmi.remote接口","如果服务接口继承了java.rmi.remote接口,可以和原生rmi互操作,即:","如果服务比较多,也可以用文件映射,如:","如果服务的消费方经常需要tri","如果正在使用rmi提供服务给外部访问(公司内网环境应该不会有攻击风险),同时应用里依赖了老的common","如果点对点直连,可以用reference.seturl()指定目标地址,设置url后将绕过注册中心,","如果用io线程处理事件,又在事件处理过程中发起新的io请求,比如在连接事件中发起登录请求,会报“可能引发死锁”异常,但不会真死锁。","如果用serviceconfig和referenceconfig的api调用,则不需要。","如果用了参数路由,必须设为true,需要注意设置会影响调用的性能,可不填,缺省为flase。","如果级别一样,则消费方优先,提供方次之。","如果过滤条件为空,表示禁止访问,如:host","如果返回pojo将自动转成map","如果配置为","如果需要改为curator实现,请配置:","如果需要饥饿加载,即没有人引用也立即生成动态代理,可以配置:","如果需要,也可以考虑在api包中放置一份spring的引用配置,这样使用方,只需在spring加载过程中引用此配置即可,配置建议放在模块的包目录下,以免冲突,如:com/alibaba/china/xxx/dubbo","如果,则不需要。可选依赖","如:","如:(缺省只加载spring)","子标签时有效","字节码生成。","存在慢的提供者累积请求的问题,比如:第二台机器很慢,但没挂,当请求调到第二台时就卡在那,久而久之,所有请求都卡在调到第二台上。","存在慢的机器累积请求问题,极端情况可能产生雪崩","存在的问题:在50k数据的时候2.0性能不如1.0,怀疑可能是缓冲区设置的问题,下版本会进一步确认。","完整示例代码参见:https://github.com/alibaba/dubbo/tree/master/dubbo","定义","定时触发变更通知","实现invoke方法,通过servicefactory创建本地接口代理,并实现自己的业务逻辑,如下","实现父类的构造函数","实现的,用户只需标识jsr303标准的验证annotation,并通过声明filter来实现验证。","实际值","客户端传输类型设置,如dubbo协议的netty或mina。","容器启动","容忍不重要服务不稳定时对调用方的影响。","容量规划","对于输入参数的校验逻辑在provider端要有。如有性能上的考虑,服务实现者可以考虑在api包上加上服务stub类来完成检验。","对应","对应dubbo.properties中的key名dubbo.application.nam","对应dubbo.properties中的key名dubbo.registry.address","对应dubbo.properties中的key名dubbo.service.protocol、dubbo.service.server.port","对应url参数","对应指标名称","对性能有影响","对方地址","对每个提供者的最大连接数,rmi、http、hessian等短连接协议表示限制连接数,dubbo等长连接协表示建立的长连接个数","导入自己服务的接口api包和dubbo.benchmark.jar(解压dubbo.benchmark.tar.gz,在lib目录下)","将common","将demo.benchmark.jar","将xml配置的标签名,加属性名,用点分隔,多个属性拆成多行:","将自己的benchmark工程打成jar包,如demo.benchmark.jar","将访问日志输出到当前应用的log4j日志:","将访问日志输出到指定文件:","小规模应用或开发测试环境","屏蔽不重要服务不可用时对调用方的影响。","属性","属性配置","属性(或者说类b少一种","属性)|","平均响应时间1.4到2.8毫秒,网络开销约占1.0到1.1毫秒(和数据包大小有关)","平均响应时间2.3到2.5毫秒,网络开销约占1.5到1.6毫秒(和数据包大小有关)","平均负载在1以下(对于8核cpu负载很低)","并发场景(20并发)","并发控制","并向channel:/dubbo/com.foo.barservice/providers发送register事件。","并向key:/dubbo/com.foo.barservice/providers下,添加当前消费者的地址。","并行调用多个服务器,只要一个成功即返回。","并行调用多个服务器,只要一个成功即返回,通常用于实时性要求较高的读操作","并通过在消费方获取服务提供方地址列表,实现软负载均衡和failover,降低对f5硬件负载均衡器的依赖,也能减少部分成本。(2)","广播调用所有提供者,逐个调用,任意一台报错则报错。(2.1.0开始支持)","广播调用所有提供者,逐个调用,任意一台报错则报错,通常用于更新提供方本地状态","序列化","序列化编码","序列化:hessian二进制序列化","序列化:java标准二进制序列化","序列化:soap文本序列化","序列化:表单序列化","应用信息配置:配置类:com.alibaba.dubbo.config.applicationconfig","应用名","应用环境,如:develop/test/product,不同环境使用不同的缺省值,以及作为只用于开发测试功能的限制条件","应用负责人,用于服务治理,请填写负责人公司邮箱前缀","应用配置负责人、组织","应用配置,用于配置当前应用信息,不管该应用是提供者还是消费者。","延迟5秒暴露服务","延迟到spring初始化完成后,再暴露服务:(基于spring的contextrefreshedevent事件触发暴露)","延迟建立连接,调用时建立","延迟暴露","延迟暴露服务,用于等待应用加载warmup数据,或等待spring加载完成","延迟注册服务时间(毫秒)","延迟连接","延迟连接,用于减少长连接数,当有调用发起时,再创建长连接。","建议不要配置,让dubbo自动获取本机ip","建议使用dubbo","建议使用两位版本号,因为第三位版本号通常表示兼容升级,只有不兼容时才需要变更服务版本。","建议使用异常汇报错误,而不是返回错误码,异常信息能携带更多信息,以及语义更友好,","建议将服务接口,服务模型,服务异常等均放在api包中,因为服务模型及异常也是api的一部分,同时,这样做也符合分包原则:重用发布等价原则(rep),共同重用原则(crp)","建议由服务提供方设置超时,因为一个方法需要执行多长时间,服务提供方更清楚,如果一个消费方同时引用多个服务,就不需要关心每个服务的超时设置。","开头,表示引用消费者参数,如:host","开始,每个服务默认都会在本地暴露。在引用服务的时候,默认优先引用本地服务。如果希望引用远程服务可以使用一下配置强制引用远程服务。","异常","异步回调模式:async=tru","异步无回调","异步调用","异步调用时,标记sent=true时,表示网络已发出数据","引用","引用新版本","引用缺省是延迟初始化的,只有引用被注入到其它bean,或被getbean()获取,才会初始化。","引用老版本","引用远程服务","引用配置,用于创建一个远程服务代理,一个引用可以指向多个注册中心。","弱类型接口名","强制转型为echoservic","强烈建议不要在服务的实现类中有applicationcontext.getbean()的调用,全部采用ioc注入的方式使用spring的bean。","当一个接口实现,出现不兼容升级时,可以用版本号过渡,版本号不同的服务相互间不引用。","当一个接口有多种实现时,可以用group区分。","当不兼容时,先升级一半提供者为新版本,再将消费者全部升为新版本,然后将剩下的一半提供者升为新版本。","当会话过期时,能自动恢复注册数据,以及订阅请求。","当前","当前应用名称,用于注册中心计算应用间依赖关系,注意:消费者和提供者应用名不要一样,此参数不是匹配条件,你当前项目叫什么名字就填什么,和提供者消费者角色无关,比如:kylin应用调用了morgan应用的服务,则kylin项目配成kylin,morgan项目配成morgan,可能kylin也提供其它服务给别人使用,但kylin项目永远配成kylin,这样注册中心将显示kylin依赖于morgan","当前应用的版本","当前应用配置","当前模块名称,用于注册中心计算模块间依赖关系","当前模块的版本","当前线程缓存,比如一个页面渲染,用到很多portal,每个portal都要去查用户信息,通过线程缓存,可以减少这种多余访问。","当参数对象增加字段时,需外部文件声明","当垂直应用越来越多,应用之间交互不可避免,将核心业务抽取出来,作为独立的服务,逐渐形成稳定的服务中心,使前端应用能更快速的响应多变的市场需求。","当提供者出现断电等异常停机时,注册中心能自动删除提供者信息。","当服务越来越多时,服务url配置管理变得非常困难,f5硬件负载均衡器的单点压力也越来越大。此时需要一个服务注册中心,动态的注册和发现服务,使服务的位置透明。","当服务越来越多,容量的评估,小服务资源的浪费等问题逐渐显现,此时需增加一个调度中心基于访问压力实时管理集群容量,提高集群利用率。","当服务集群规模进一步扩大,带动it治理结构进一步升级,需要实现动态部署,进行流动计算,现有分布式服务架构不会带来阻力:","当某一台提供者挂时,原本发往该提供者的请求,基于虚拟节点,平摊到其它提供者,不会引起剧烈变动。","当注册中心重启时,能自动恢复注册数据,以及订阅请求。","当网站流量很小时,只需一个应用,将所有功能都部署在一起,以减少部署节点和成本。","当设置","当访问量逐渐增大,单一应用增加机器带来的加速度越来越小,将应用拆成互不相干的几个应用,以提升效率。","当路由结果为空时,是否强制执行,如果不强制执行,路由结果为空的路由规则将自动失效,可不填,缺省为flase。","当进一步发展,服务间依赖关系变得错踪复杂,甚至分不清哪个应用要在哪个应用之前启动,架构师都不能完整的描述应用的架构关系。这时,需要自动画出应用间的依赖关系图,以帮助架构师理清理关系。(3)","待发送消息队列派发不及时,大压力下,会出现fullgc","心跳间隔,对于长连接,当物理层断开时,比如拔网线,tcp的fin消息来不及发送,对方收不到断开事件,此时需要心跳来帮助检查连接是否已断开","必填","必须为一个未来的时间","必须为一个过去的时间","必须依赖","快速失败,只发起一次调用,失败立即报错,通常用于非幂等性的写操作","快速失败,只发起一次调用,失败立即报错。","性能优化","性能分析评估","性能对比分析(新旧环境、不同数据量级等)","性能测试场景(10并发)","性能测试报告","性能调优","性能调优:表示该配置项用于调优性能,不同的选项对性能会产生影响。","性能较好,多语言支持(推荐使用)","性能较差","总结:会抛异常的情况:枚举值一边多一种,一边少一种,正好使用了差别的那种,或者属性名相同,类型不同","总结:服务器端和客户端对领域对象并不需要完全一致,而是按照最大匹配原则。","情况","成熟度","或","或在dubbo.properties中加入主机地址的配置:","或直接下载:http://repo1.maven.org/maven2/com/github/sgroschupf/zkcli","或直接下载:http://repo1.maven.org/maven2/com/netflix/curator/cur","或直接下载:http://repo1.maven.org/maven2/org/apache/zookeeper/zookeep","或者","或者提供方用标准hessian暴露服务,消费方用dubbo的hessian协议调用。","或者提供方用标准rmi暴露服务,消费方用dubbo的rmi协议调用。","或者提供方用标准webservice暴露服务,消费方用dubbo的webservice协议调用。","或者,点对点直连:","或者:","或:","或:(2.1.0开始支持)","或:(通过classpath下的dubbo.properties配置传入要加载的容器)","或:(通过jvm启动参数传入要加载的容器)","或:(通过main函数参数传入要加载的容器)","所支持的telnet命令,多个命令用逗号分隔","所有服务共用一个端口:(与原生thrift不兼容)","所有服务自动实现echoservice接口,只需将任意服务引用强制转型为echoservice,即可使用。","所有标签者支持自定义参数,用于不同扩展点实现的特殊配置。","所有消息都不派发到线程池,全部在io线程上直接执行。","所有消息都派发到线程池,包括请求,响应,连接事件,断开事件,心跳等。","所有配置信息都将转换为url的参数,参见","所有配置最终都将转换为url表示,并由服务提供方生成,经注册中心传递给消费方,各属性对应url的参数,参见配置项一览表中的\"对应url参数\"列。","所有配置项分为三大类,参见下表中的\"作用\"一列。","扩展点:日志适配扩展","抛出的是rpcexcept","抛异常","拿到调用的future引用,当结果返回后,会被通知和设置到此future。","指向一个通用服务实现","指定provider,值为的id属性","指定合并方法,将调用返回结果的指定方法进行合并,合并方法的参数类型必须是返回结果类型本身","指定合并策略,缺省根据返回值类型自动匹配,如果同一类型有两个合并器时,需指定合并器的名称","指定方法合并结果,其它未指定的方法,将只调用一个group","按组合并返回结果,比如菜单服务,接口一样,但有多种实现,用group区分,现在消费方需从每种group中调用一次返回结果,合并结果返回,这样就可以实现聚合菜单项。从2.1.0版本开始支持,","排除预发布机:","接口增加方法,对客户端无影响,如果该方法不是客户端需要的,客户端不需要重新部署。输入参数和结果集中增加属性,对客户端无影响,如果客户端并不需要新属性,不用重新部署。","接着,服务的调用量越来越大,服务的容量问题就暴露出来,这个服务需要多少机器支撑?什么时候该加机器?为了解决这些问题,第一步,要将服务现在每天的调用量,响应时间,都统计出来,作为容量规划的参考指标。","推荐使用dubbo协议","推荐使用zookeeper注册中心","推荐用法","描述","提供方启动时广播自己的地址。","提供方收到订阅请求时,单播自己的地址给订阅者,如果设置了unicast=false,则广播给订阅者。","提供方的缺省值,当protocolconfig和serviceconfig某属性没有配置时,采用此缺省值,可选。","提供者上下文路径,为服务path的前缀","提供者与消费者部署在同集群内,本机只访问本机的服务:","提供者列表缓存文件","提供者用dubbo的hessian协议暴露服务,消费者直接用标准hessian接口调用,","提供者用dubbo的rmi协议暴露服务,消费者直接用标准rmi接口调用,","提供者用dubbo的webservice协议暴露服务,消费者直接用标准webservice接口调用,","提供者端特定接口的配置","提供者端特定方法的配置","搜索所有分组","支持","支持jdk脚本引擎的所有脚本,比如:javascript,","支持jfreechart统计报表","支持zkclient和curator两种zookeeper客户端实现:","支持以下功能:","支持基于客户端双写的集群方式,性能高","支持基于网络的集群方式,有广泛周边开源产品,建议使用dubbo","支持版本:2.0.7之后","支持的","收数据","改变缺省服务,当设置了缺省服务,凡是需要输入服务名作为参数的命令,都可以省略服务参数。","改变缺省配置位置。","数据库宕掉后,注册中心仍能通过缓存提供服务列表查询,但不能注册新服务","数据结构:","数据通讯","整体性能相比1.0有了提升,平均提升10%,使用dubbo2.0新增的dubbo序列化还能获得10%~50%的性能提升,详见下面的性能数据。","文件的路径,应用可以根据需要调整,保证这个文件不会在发布过程中被清除。","新建一个benchmark工程,如demo.benchmark","新建一个类,实现abstractclientrunn","新版本服务","方法参数配置:配置类:com.alibaba.dubbo.config.argumentconfig说明:该标签为|的子标签,用于方法参数的特征描述,比如:","方法名","方法名建议和memcached的标准方法名相同,即:get(key),","方法名建议和redis的标准方法名相同,即:get(key),","方法执行前拦截","方法执行有异常拦截","方法执行返回后拦截","方法级优先,接口级次之,全局配置再次之。","方法级设置","方法级配置","方法级配置别优于接口级别,即小scope优先","方法级配置:配置类:com.alibaba.dubbo.config.methodconfig说明:该标签为|或|的子标签,用于控制到方法级,","方法调用是否需要返回值,async设置为true时才生效,如果设置为true,则返回future,或回调onreturn等方法,如果设置为false,则请求发送成功后直接返回nul","方法调用超时","方法调用超时时间(毫秒)","方法配置,用于serviceconfig和referenceconfig指定方法级的配置信息。","无频繁线程锁,线程数平稳。通过","日志输出方式,可选:slf4j,jcl,log4j,jdk","日志适配","时,记录失败注册和订阅请求,后台定时重试。","映射规则:","是","是apacah","是caucho开源的一个","是facebook捐给apache的一个rpc框架","是netflix开源的一个zookeeper客户端实现,比较活跃。","是一个高效的kv存储服务器。","是一个高效的kv存储服务器。安装方式参见:","是一个高效的kv缓存服务器。","是否为缺省协议,用于多协议","是否向此注册中心注册服务,如果设为false,将只订阅,不注册","是否向此注册中心订阅服务,如果设为false,将只注册,不订阅","是否启用jsr303标准注解验证,如果启用,将对方法参数上的注解进行校验","是否在afterpropertiesset()时饥饿初始化引用,否则等到有人注入或引用该实例时再初始化。","是否在每次调用时执行路由规则,否则只在提供者地址列表变更时预先执行并缓存结果,调用时直接从缓存中获取路由结果。","是否异步执行,不可靠异步,只是忽略返回值,不阻塞执行线程","是否必填","是否满足期望(是/否)","是否缺省异步执行,不可靠异步,只是忽略返回值,不阻塞执行线程","是否缺省泛化接口,如果为泛化接口,将返回genericservic","显示telnet命帮助信息。","显示xxx命令的详细帮助信息。","显示当前缺省服务。","显示服务列表。","显示服务地址列表。","显示服务的方法列表。","显示服务的方法详细信息列表。","显示服务端口列表。","显示服务详细信息列表。","显示汇总状态,该状态将汇总所有资源的状态,当全部ok时则显示ok,只要有一个error则显示error,只要有一个warn则显示warn。","显示状态列表。","显示端口上的连接信息。","显示端口上的连接详细信息。","普通消费者直接订阅指定服务提供者的key,只会收到指定服务的register,","暂未实现。","暴露及注册服务","暴露服务的服务提供方","更多rmi优化参数请查看:","最大值","最小值","最少活跃调用数,相同活跃数的随机,活跃数指调用前后计数差。","最少活跃调用数,相同活跃数的随机,活跃数指调用前后计数差,使慢的机器收到更少请求","有了这项配置后,当应用重启过程中,dubbo注册中心不可用时则应用会从这个缓存文件读取服务提供者列表的信息,进一步保证应用可靠性。","有些复杂多分支条件情况,规则很难描述","有时候希望人工管理服务提供者的上线和下线,此时需将注册中心标识为非动态管理模式","服力治理","服务","服务api","服务主机名,多网卡选择或指定vip及域名时使用,为空则自动查找本机ip,","服务主机名,多网卡选择或指定vip及域名时使用,为空则自动查找本机ip,建议不要配置,让dubbo自动获取本机ip","服务分组","服务分组,当一个接口有多个实现,可以用分组区分","服务分组,当一个接口有多个实现,可以用分组区分,必需和服务提供方一致","服务化最佳实践","服务协议","服务参数及返回值不建议使用接口,因为数据模型抽象的意义不大,并且序列化需要接口实现类的元信息,并不能起到隐藏实现的意图。","服务参数及返回值建议使用pojo对象,即通过set,get方法表示属性的对象。","服务参数及返回值都必需是byvalue的,而不能是byref的,消费方和提供方的参数或返回值引用并不是同一个,只是值相同,dubbo不支持引用远程对象。","服务发现","服务发现:表示该配置项用于服务的注册与发现,目的是让消费方找到提供方。","服务器,并将","服务实现","服务容器","服务容器只是一个简单的main方法,并加载一个简单的spring容器,用于暴露服务。","服务容器是一个standalone的启动程序,因为后台服务不需要tomcat或jboss等web容器的功能,如果硬要用web容器去加载服务提供方,增加复杂性,也浪费资源。","服务容器的加载内容可以扩展,内置了spring,","服务容器负责启动,加载,运行服务提供者。","服务寄宿在应用上,只暴露一部分的机器,防止整个集群挂掉:","服务对象实现引用","服务引用beanid","服务接口名","服务接口增加方法,或服务模型增加字段,可向后兼容,删除方法或删除字段,将不兼容,枚举类型新增字段也不兼容,需通过变更版本号升级。","服务接口客户端本地代理类名,用于在客户端执行本地逻辑,如本地缓存等,该本地代理类的构造函数必须允许传入远程代理对象,构造函数如:public","服务接口尽可能大粒度,每个服务方法应代表一个功能,而不是某功能的一个步骤,否则将面临分布式事务问题,dubbo暂未提供分布式事务支持。","服务接口建议以业务场景为单位划分,并对相近业务做抽象,防止接口数量爆炸","服务接口示例","服务接口调用失败mock实现类名,该mock类必须有一个无参构造函数,与local的区别在于,local总是被执行,而mock只在出现非业务异常(比如超时,网络异常等)时执行,local在远程调用之前执行,mock在远程调用后执行。","服务提供方","服务提供方不应将dao或sql等异常抛给消费方,应在服务实现中对消费方不关心的异常进行包装,否则可能出现消费方无法反序列化相应异常。","服务提供方启动时,向key:/dubbo/com.foo.barservice/providers下,添加当前提供者的地址。","服务提供方导出服务监听器名称,多个名称用逗号分隔","服务提供方最大可接受连接数","服务提供方注解:","服务提供方远程调用过程拦截器名称,多个名称用逗号分隔","服务提供方配置:","服务提供方,使用dragoon的telnet或shell监控项","服务提供者","服务提供者与消费者共享服务接口","服务提供者全部宕掉后,服务消费者应用将无法使用,并无限次重连等待服务提供者恢复","服务提供者列表","服务提供者初次注册时为禁用状态,需人工启用,断线时,将不会被自动删除,需人工禁用。","服务提供者协议、服务的监听端口","服务提供者协议配置","服务提供者协议配置:配置类:com.alibaba.dubbo.config.protocolconfig说明:如果需要支持多协议,可以声明多个|标签,并在|中通过protocol属性指定使用的协议。","服务提供者向注册中心注册其提供的服务,并汇报调用时间到监控中心,此时间不包含网络开销","服务提供者启动时:","服务提供者在启动时,向注册中心注册自己提供的服务。","服务提供者实现","服务提供者所在的分层。如:biz、dao、intl:web、china:acton。","服务提供者接口实现示例","服务提供者无状态,任意一台宕掉后,不影响使用","服务提供者无状态,可动态增加机器部署实例,注册中心将推送新的服务提供者信息给消费者","服务提供者暴露服务配置","服务提供者暴露服务配置:配置类:com.alibaba.dubbo.config.serviceconfig","服务提供者最大可接受连接数","服务提供者每服务每方法最大可并行执行请求数","服务提供者缺省值配置:配置类:com.alibaba.dubbo.config.providerconfig说明:该标签为|和|标签的缺省值设置。","服务提供者配置","服务提供者配置示例","服务文档url","服务方法实现","服务方法是否过时,此属性只在","服务方法调用超时时间(毫秒)","服务是否动态注册,如果设为false,注册后将显示后disable状态,需人工启用,并且服务提供者停止时,也不会自动取消册,需人工禁用。","服务是否过时,如果设为true,消费方引用时将打印服务过时警告error日志","服务权重","服务治理","服务治理:表示该配置项用于治理服务间的关系,或为开发测试提供便利条件。","服务注册与发现的注册中心。","服务消费方","服务消费方启动时,从channel:/dubbo/com.foo.barservice/providers订阅register和unregister事件。","服务消费方引用服务监听器名称,多个名称用逗号分隔","服务消费方收到register和unregister事件后,从key:/dubbo/com.foo.barservice/providers下获取提供者地址列表。","服务消费方注解:","服务消费方远程调用过程拦截器名称,多个名称用逗号分隔","服务消费方配置:","服务消费方,通过将服务强制转型为echoservice,并调用$echo()测试该服务的提供者是可用","服务消费者","服务消费者callback接口及实现","服务消费者向注册中心获取服务提供者地址列表,并根据负载算法直接调用提供者,同时汇报调用时间到监控中心,此时间包含网络开销","服务消费者启动时:","服务消费者和提供者,在内存中累计调用次数和调用时间,定时每分钟发送一次统计数据到监控中心。","服务消费者在启动时,向注册中心订阅自己所需的服务。","服务消费者引用服务配置:配置类:com.alibaba.dubbo.config.referenceconfig","服务消费者缺省值配置:配置类:com.alibaba.dubbo.config.consumerconfig说明:该标签为|标签的缺省值设置。","服务消费者调用示例","服务消费者配置示例","服务消费者,从提供者地址列表中,基于软负载均衡算法,选一台提供者进行调用,如果调用失败,再选另一台调用。","服务版本,与服务提供者的版本一致","服务版本,建议使用两位数字版本,如:1.0,通常在接口不兼容时版本号才需要升级","服务监控中心启动时,从channel:/dubbo/*订阅register和unregister,以及subscribe和unsubsribe事件。","服务监控中心收到register和unregister事件后,从key:/dubbo/com.foo.barservice/providers下获取提供者地址列表。","服务监控中心收到subscribe和unsubsribe事件后,从key:/dubbo/com.foo.barservice/consumers下获取消费者地址列表。","服务端口","服务线程池大小","服务线程池大小(固定大小)","服务调用信息,如:method,","服务调用者所在的分层。如:biz、dao、intl:web、china:acton。","服务负责人,用于服务治理,请填写负责人公司邮箱前缀","服务路径","服务运行容器。","服务配置,用于暴露一个服务,定义服务的元信息,一个服务可以用多个协议暴露,一个服务也可以注册到多个注册中心。","服务降级","服务降级:(通常用于临时屏蔽某个出错的非关键服务)","期望值范围","期望性能指标(量化)","期望运行状况(非量化,可选)","本地伪装","本地存储,影响性能,受磁盘大小限制","本地存根","本地调用","本地调用,使用了injvm协议,是一个伪协议,它不开启端口,不发起远程调用,只在jvm内直接关联,但执行dubbo的filter链。","本次性能测试考察的是dubbo本身的性能,实际使用过程中的性能有待应用来验证。","本次性能测试,测试了dubbo2.0所有支持的协议在不同大小和数据类型下的表现,并与dubbo1.0进行了对比。","本端是否为提供端,这里会返回true","本端是否为消费端,这里会返回true","机型","条件支持:","条件路由规则","来设置最大并行数。","来设置重试次数(不含第一次)。","构造函数传入真正的远程代理对象","枚举a多一种","枚举值","枚举(或者说b少一种","枚举),a不使用","枚举),a使用多","架构","某个方法不合并结果,其它都合并结果","查看file","查询方法不建议抛出checked异常,否则调用方在查询时将过多的try...catch,并且不能进行有效处理,","标签","标识","样例:以指定的9099端口启动一个简易注册中心","样例:生成指定接口和版本的服务提供者应用","框架,其通讯效率高于webservice和java自带的序列化。","模块信息配置:","模块负责人,用于服务治理,请填写负责人公司邮箱前缀","模块配置,用于配置当前模块信息,可选。","模型api","正常传输","此代码在客户端执行","此实例很重,封装了与注册中心的连接以及与提供者的连接,请自行缓存,否则可能造成内存和连接泄漏","此实例很重,封装了与注册中心的连接,请自行缓存,否则可能造成内存和连接泄漏","此日志量比较大,请注意磁盘容量。","此时findfoo和findbar的请求同时在执行,客户端不需要启动多线程来支持并行,而是借助nio的非阻塞完成。","此时本端变成消费端,这里会返回fals","此时,用于加速前端页面开发的web框架(mvc)是关键。","此时,用于提高业务复用及整合的分布式服务框架(rpc)是关键。","此时,用于提高机器利用率的资源调度和治理中心(soa)是关键。","此时,用于简化增删改查工作量的数据访问框架(orm)是关键。","此调用会立即返回null","每个接口都应定义版本号,为后续不兼容升级提供可能,如:","每个服务对每个提供者的最大连接数,rmi、http、hessian等短连接协议支持此配置,dubbo协议长连接不支持此配置","每天接收3亿次远程调用","每天接收4亿次远程调用","每服务每方法最大使用线程数限制","每服务消费者最大并发调用限制","每服务消费者每服务每方法最大并发调用数","比如:","比如:","比如:a调b,b再调c,则b机器上,在b调c之前,rpccontext记录的是a调b的信息,在b调c之后,rpccontext记录的是b调c的信息。","比如:crm有些服务是专门为国际站设计的,有些服务是专门为中文站设计的。","比如:crm需同时调用中文站和国际站的pc2服务,pc2在中文站和国际站均有部署,接口及版本号都一样,但连的数据库不一样。","比如:dubbo.application.name=foo等价于","比如:dubbo.protocol.rmi.port=1234等价于(协议的id没配时,缺省使用协议名作为id)","比如:dubbo.registry.address=10.20.153.10:9090等价于","比如:dubbo.registry.china.address=10.20.153.10:9090等价于","比如:不同服务在性能上适用不同协议进行传输,比如大数据用短连接协议,小数据大并发用长连接协议","比如:中文站有些服务来不及在青岛部署,只在杭州部署,而青岛的其它应用需要引用此服务,就可以将服务同时注册到两个注册中心。","比如:需要与http客户端互操作","没有提供者时报错","没有运行沙箱,脚本能力过于强大,可能成为后门","没有配置port,则会分配一个没有被占用的端口。dubbo","没有集群支持,可能单点故障","没有集群支持,可能单点故障,但故障后不影响rpc运行","泛化实现","泛化实现,无需业务接口类实现任意接口,用于mock平台","泛化引用","泛化调用,无需业务接口类进行远程调用,用于测试平台,开放网关桥接等","泛接口实现方式主要用于服务器端没有api接口及模型类元的情况,参数及返回值中的所有pojo均用map表示,通常用于框架集成,比如:实现一个通用的远程服务mock框架,可通过实现genericservice接口处理所有服务请求。","泛接口调用方式主要用于客户端没有api接口及模型类元的情况,参数及返回值中的所有pojo均用map表示,通常用于框架集成,比如:实现一个通用的服务测试框架,可通过genericservice调用所有服务实现。","注册中心不存在时,是否报错","注册中心为对等集群,可动态增加机器部署实例,所有客户端将自动发现新的注册中心","注册中心会话超时时间(毫秒),用于检测提供者非正常断线后的脏数据,比如用心跳检测的实现,此时间就是心跳间隔,不同注册中心实现不一样。","注册中心全部宕掉后,服务提供者和服务消费者仍能通过本地缓存通讯","注册中心参考手册","注册中心可灵活改变授权方式,而不需修改或升级提供者","注册中心和监控中心全部宕机,不影响已运行的提供者和消费者,消费者在本地缓存了提供者列表","注册中心和监控中心都是可选的,服务消费者可以直连服务提供者","注册中心地址","注册中心对等集群,任意一台宕掉后,将自动切换到另一台","注册中心引用beanid,可以在","注册中心服务器地址,如果地址没有端口缺省为9090,同一集群内的多个地址用逗号分隔,如:ip:port,ip:port,不同集群的注册中心,请配置多个","注册中心的列表","注册中心缺省端口,当address没有带端口时使用此端口做为缺省值","注册中心请求超时时间(毫秒)","注册中心负责服务地址的注册与查找,相当于目录服务,服务提供者和消费者只在启动时与注册中心交互,注册中心不转发请求,压力较小","注册中心返回服务提供者地址列表给消费者,如果有变更,注册中心将基于长连接推送变更数据给消费者。","注册中心通过长连接感知服务提供者的存在,服务提供者宕机,注册中心将立即推送事件通知消费者","注册中心配置,用于配置连接注册中心相关信息。","注册中心配置:配置类:com.alibaba.dubbo.config.registryconfig说明:如果有多个不同的注册中心,可以声明多个|标签,并在|或|的registry属性指定使用的注册中心。","注册中心,服务提供者,服务消费者三者之间均为长连接,监控中心除外","注册的地址如果获取不正确,比如需要注册公网地址,可以:","注册订阅失败时报错","注同中心地址协议,支持dubbo,","注意","注意为了避免复杂化线上环境,不要在线上使用这个功能,只应在测试阶段使用。","注意区别","注意声明:xmlns:p=\"http://www.springframework.org/schema/p\"","注意!","注意,如果使用servlet派发请求:","注意:","注意:referenceconfig为重对象,内部封装了与注册中心的连接,以及与服务提供方的连接","注意:serviceconfig为重对象,内部封装了与注册中心的连接,以及开启服务端口","注意:一个服务只能有一条白名单规则,否则两条规则交叉,就都被筛选掉了)","注意:只有group,interface,version是服务的匹配条件,三者决定是不是同一个服务,其它配置项均为调优和治理参数。","注意:如果参数类型是接口,或者list等丢失泛型,可通过class属性指定类型。","注意:服务暴露与服务引用都需要声明","注意:此代理对象内部封装了所有通讯细节,对象较重,请缓存复用","注意:每发起rpc调用,上下文状态会变化","注解api","注解配置","注:下面只列出不同的地方,其它参见上面的写法","流动计算架构","流程说明:","测试分析","测试局限性分析(可选)","测试环境","测试环境使用","测试目的","测试结果","测试脚本","测试覆盖率报告","测试说明","消费方启动时广播订阅请求。","消费方收到提供方地址时,连接该地址进行rpc调用。","消费方缺省配置,当referenceconfig某属性没有配置时,采用此缺省值,可选。","消费者启动时,没有提供者是否抛异常fast","消费者端,最大并发调用限制,即当consumer对一个服务的并发调用到上限后,新调用会wait直到超时。","消除cache中的referenceconfig,销毁referenceconfig并释放对应的资源。","清除屏幕上的内容。","清除屏幕上的指定行数的内容。","点对点直连","点对点直连服务提供方,用于测试","点对点直连服务提供者地址,将绕过注册中心","然后在客户端使用时,不需要感知memcached的地址:","然后在客户端使用时,不需要感知redis的地址:","然后在映射文件xxx.properties中加入:(key为服务名,value为服务提供者url)","然后将剩下的一半提供者升级为新版本","然后,检测有没有请求的响应还没有返回,等待响应返回,除非超时,则强制关闭。","然后,检测线程池中的线程是否正在运行,如果有,等待所有线程执行完成,除非超时,则强制关闭。","版本","特殊场景","特殊场景使用","理论上dubbo可以只依赖jdk,不依赖于任何三方库运行,只需配置使用jdk相关实现策略。","理论上referenceconfig的非服务标识配置,在consumerconfig,serviceconfig,","生成demo服务提供者应用","生成动态代理方式,可选:jdk/javassist","用","用com.alibaba.dubbo.rpc.service.genericservice可以替代所有接口实现","用com.alibaba.dubbo.rpc.service.genericservice可以替代所有接口引用","用map表示pojo参数,如果返回值为pojo也将自动转成map","用于指定方法参数配置。","用于服务分层对应的架构。如,intl、china。不同的架构使用不同的分层。","用户不能控制log4j的配置,不灵活","用法","由于dubbo本身的性能占用都在毫秒级,占的基数很小,性能提升可能对应用整体的性能变化不大。","由于邮件篇幅所限没有列出所有的监控图,如需获得可在大力神平台上查询。","登录注册中心密码,如果注册中心不需要验证可不填","登录注册中心用户名,如果注册中心不需要验证可不填","白名单:","的async","的check","的connect","的gener","的id属性,多个注册中心id用逗号分隔","的id属性,多个注册中心id用逗号分隔,如果不想将该服务注册到任何registry,可将值设为n/a","的loadbal","的retri","的timeout","监控中心协议,如果为protocol=\"registry\",表示从注册中心发现监控中心地址,否则直连监控中心。","监控中心启动时:","监控中心宕掉不影响使用,只是丢失部分采样数据","监控中心负责统计各服务调用次数,调用时间等,统计先在内存汇总后每分钟一次发送到监控中心服务器,并以报表展示","监控中心通过psubscribe功能订阅/dubbo/*,会收到所有服务的所有变更事件。","监控中心配置,用于配置连接监控中心相关信息,可选。","监控中心配置:配置类:com.alibaba.dubbo.config.monitorconfig","监控服务提供者端口状态:echo","监控配置","目前有负责人信息和组织信息(用于区分站点)。有问题时便于的找到服务的负责人,至少写两个人以便备份。负责人和组织的信息可以在注册中心的上看到。","目录下的所有","直接对基本类型参数验证","直连提供者","直连监控中心服务器地址,address=\"10.20.130.230:12080\"","直连:","硬件部署与参数调整","确保注册中心上有该服务的存在。","磁盘","示例代码:https://github.com/alibaba/dubbo/tree/master/dubbo","示例:","示例:https://github.com/alibaba/dubbo/tree/master/dubbo","禁用提供者:(通常用于临时踢除某台提供者机器,相似的,禁止消费者访问请使用路由规则)","禁用注册配置","禁用订阅配置","稳定性场景(20并发)","稳定性测试中由于将底层通信框架从mina换成netty,old区对象的增长大大减少,50小时运行,增长不到200m,无fullgc。(可以确认为mina在高并发下的设计缺陷)","等","等号","等待消息发出,消息发送失败将抛出异常。","等,通过","策略成熟度","签","算法参见:http://en.wikipedia.org/wiki/consistent_hashing。","类a多一种","类型","粒度","粘滞连接","粘滞连接将自动开启延迟连接,以减少长连接数,","粘滞连接用于有状态服务,尽可能让客户端总是向同一提供者发起调用,除非该提供者挂了,再连另一台。","粘滞连接,总是向同一个提供方发起请求,除非此提供方挂掉,再切换到另一台","约束:","纯文本,可跨语言解析,缺省采用fastjson解析","线程模型","线程池不可扩展,filter不能拦截下一filt","线程池类型,可选:fixed/cach","线程池队列大小,当线程池满时,排队等待执行的队列大小,建议不要设置,当线程程池时应立即失败,重试其它服务提供机器,而不是排队,除非有特殊需求。","组合情况:(async=fals","组播受网络结构限制,只适合小规模应用或开发阶段使用。组播地址段:","组织名称(bu或部门),用于注册中心区分服务来源,此配置项建议不要使用autoconfig,直接写死在配置中,比如china,intl,itu,crm,asc,dw,aliexpress等","结尾,表示通配,如:host","结果","结果缓存","结果缓存,用于加速热门数据的访问速度,dubbo提供声明式缓存,以减少用户加缓存的工作量。","结果缓存,用于加速请求","统一管理控制台。","统计10次服务任意方法的调用情况。","统计10次服务方法的调用情况。","统计1次服务任意方法的调用情况。","统计1次服务方法的调用情况。","统计于","统计服务的调用次调和调用时间的监控中心。","缓存类型可扩展,参见:cachefactory扩展点","缓存线程池,空闲一分钟自动删除,需要时重建。","缺使用第一个provider配置","缺省dubbo将自动生成一个com.xxx.xxxservice$remote的接口,并继承java.rmi.remote接口,并以此接口暴露服务,","缺省referenceconfigcache把相同服务group、接口、版本的referenceconfig认为是相同,缓存一份。即以服务group、接口、版本为缓存的key。","缺省为","缺省为接口名","缺省为的loadbal","缺省为的timeout","缺省为空串","缺省主机ip查找顺序:","缺省主机端口与协议相关:","缺省使用","缺省依赖","缺省值","缺省协议,使用基于mina1.1.7+hessian3.2.1的tbremoting交互。","缺省只对第一个参数hash,如果要修改,请配置","缺省可按服务接口区分验证场景,如:@notnull(group","缺省向所有registry注册","缺省将从所有注册中心获服务列表后合并结果","缺省用160份虚拟节点,如果要修改,请配置","缺省自动查找:","缺省配置:","网络","网络传输。","网络传输方式,可选mina,netti","网络读写缓冲区大小","老版本服务","老牌nio框架,稳定","而spring初始化线程,因不需要判断bean的存在,直接同步beandefinitionmap进行初始化,并同步singletonobjects写入bean实例缓存。","背景","脚本没有沙箱约束,可执行任意代码,存在后门风险","脚本路由规则","自动加载","自动加载meta","自动暴露、引用本地服务","自动查找本机ip","自动部署服务的本地代理。","自动配置log4j的配置,在多进程启动时,自动给日志文件按进程分目录","自动配置log4j的配置,在多进程启动时,自动给日志文件按进程分目录。","节点角色说明:","获取当前服务配置信息,所有配置信息都将转换为url的参数","获取最后一次调用的提供方ip地址","获取调用方ip地址","表示\"不匹配\",如:host","表示\"匹配\",如:host","表示只对指定应用生效,可不填,表示对所有应用生效。","表示只对指定服务生效,必填。","表示对所有ip地址生效,如果只想对某个ip的生效,请填入具体ip,必填。","表示对所有ip地址生效,如果只想覆盖某个ip的数据,请填入具体ip,必填。","表示将满足以上条件的timeout参数的值覆盖为1000。如果想覆盖其它参数,直接加在override的url参数上。","表示数据采用覆盖方式,支持override和absent,可扩展,必填。","表示是否需要回调.","表示消费方对该服务的方法调用在失败后,再返回null值,不抛异常。","表示消费方对该服务的方法调用都直接返回null值,不发起远程调用。","表示该数据为动态配置类型,必填。","表示该数据为持久数据,当注册方退出时,数据依然保存在注册中心,必填。","表示该服务使用jvm共享长连接。(缺省)","表示该服务使用独立两条长连接。","表示该服务使用独立长连接。","表示路由规则的内容,必填。","表示路由规则的类型,支持条件路由规则和脚本路由规则,可扩展,必填。","表达式:","要求服务器时间同步,用于检查心跳过期脏数据","覆盖策略:","覆盖规则是否生效,可不填,缺省生效。","规则:","解决方案可以让服务提供者开发方,只订阅服务(开发的服务可能依赖其它服务),而不注册正在开发的服务,通过直连测试正在开发的服务。","解决方案可以让服务提供者方,只注册服务到另一注册中心,而不从另一注册中心订阅服务。","订阅/dubbo/com.foo.barservice/providers目录下的提供者url地址。并向/dubbo/com.foo.barservice/consumers目录下写入自己的url地址。","订阅/dubbo/com.foo.barservice目录下的所有提供者和消费者url地址。","设为true,将向logger中输出访问日志,也可填写访问日志文件路径,直接把访问日志输出到指定文件","设为true,表示使用缺省mock类名,即:接口名","设为true,表示使用缺省代理类名,即:接口名","设置","设置redis中key的前缀,缺省为dubbo。","设置redis集群策略,缺省为failover。","设置true","设置zookeeper登录信息。","设置zookeeper的根节点,不设置将使用无根树。","设置优雅停机超时时间,缺省超时时间是10秒:(超时则强制关闭)","设置方法级配置","设置服务协议:","设置服务协议:","设置默认协议:","设置默认协议:","访问日志","访问日志,用于记录调用信息","试用","该协议的服务是否注册到注册中心","该实例很重量,里面封装了所有与注册中心及服务提供方连接,请缓存","该接口上的所有方法使用同一个provider.如果需要更复杂的规则,请使用用路由","详细参见:api配置","详细参见:上下文信息","详细参见:回声测试","详细参见:泛化引用","详细参见:注解配置","详细配置说明参见:dubbo配置参考手册","请升级到","请检查应用:","请求及响应数据包大小限制,单位:字节","请求线程的applicationcontext.getbean()调用,先同步singletonobjects判断bean是否存在,不存在就同步beandefinitionmap进行初始化,并再次同步singletonobjects写入bean实例缓存。2.","请考虑改为mock实现,并在mock中return","读写分离:","调度中心基于访问压力自动增减服务提供者。","调整权重:(通常用于容量评估,缺省权重为100)","调整负载均衡策略:(缺省负载均衡策略为random)","调用","调用代码:","调用信息丢失","调用关系说明:","调用服务的方法(自动查找包含此方法的服务)。","调用服务的方法。","调用服务负责人,用于服务治理,请填写负责人公司邮箱前缀","调用超时","调用过程:","调用远程服务的服务消费方。","负载均衡","负载均衡策略,可选值:random,roundrobin,leastactive,分别表示:随机,轮循,最少活跃调用","负载均衡算法(有多个provider时,如何挑选provider调用),缺省是随机(random)。还可以有轮询(roundrobin)、最不活跃优先(leastactive,指从consumer端并发调用最好的provider,可以减少的反应慢的provider的调用,因为反应更容易累积并发的调用)","跟踪10次服务任意方法的调用情况。","跟踪10次服务方法的调用情况。","跟踪1次服务任意方法的调用情况。","跟踪1次服务方法的调用情况","路径对应service.setpath()的值,如果未设置path,缺省path为接口名","路由参数值","路由参数键","路由规则","路由规则扩展点:路由扩展","路由规则的优先级,用于排序,优先级越大越靠前执行,可不填,缺省为0。","轮循,按公约后的权重设置轮循比率","轮循,按公约后的权重设置轮循比率。","软件名称及版本","软件架构","输入参数和结果集属性名变化,对客户端序列化无影响,但是如果客户端不重新部署,不管输入还是输出,属性名变化的属性值是获取不到的。","运行run.bat(windows)或run.sh(linux)","还可以改为:","还可在协议级别设置:","这个文件会缓存:","这样在注册中心推送有延迟的情况下,消费者通过缓存列表也能调用到原地址,保证调用成功。","这样就导致getbean线程,先锁singletonobjects,再锁beandefinitionmap,再次锁singletonobjects。而spring初始化线程,先锁beandefinitionmap,再锁singletonobjects。反向锁导致线程死锁,不能提供服务,启动不了。","这篇文档详细描述了dubbo的使用,基本涵盖dubbo的所有功能特性。","这里以xml","这里所有依赖都是换照dubbo缺省配置选的,这些缺省值是基于稳定性和性能考虑的。","这里的invoker是provider的一个可调用service的抽象,invoker封装了provider地址及service接口信息。","远程服务后,客户端通常只剩下接口,而实现全在服务器端,但提供方有些时候想在客户端也执行部分逻辑,比如:做threadlocal缓存,提前验证参数,调用失败后伪造容错数据等等,此时就需要在api中带上stub,客户端生成proxy实例,会把proxy通过构造函数传给stub,然后把stub暴露组给用户,stub可以决定要不要去调proxy。","远程服务引用","远程服务调用超时时间(毫秒)","远程服务调用重试次数,不包括第一次调用,不需要重试请设为0","远程调用","连接个数:单连接","连接个数:多连接","连接控制","连接数控制","连接方式:短连接","连接方式:长连接","连接注册中心配置","连通性:","退出当前telnet命令行。","适用场景:常规远程服务方法调用","适用场景:常规远程服务方法调用,与原生rmi服务互操作","适用场景:系统集成,跨语言调用。","适用场景:需同时给应用程序和浏览器js使用的服务。","适用场景:页面传输,文件传输,或与原生hessian服务互操作","适用性说明此simpleregistryservice只是简单实现,不支持集群,可作为自定义注册中心的参考,但不适合直接用于生产环境。","适用范围:传入传出参数数据包大小混合,提供者比消费者个数多,可用浏览器查看,可用表单或url传入参数,暂不支持传文件。","适用范围:传入传出参数数据包大小混合,消费者与提供者个数差不多,可传文件。","适用范围:传入传出参数数据包较大,提供者比消费者个数多,提供者压力较大,可传文件。","适用范围:传入传出参数数据包较小(建议小于100k),消费者比提供者个数多,单一消费者无法压满提供者,尽量不要用dubbo协议传输大文件或超大字符串。","选择动态代理实现策略,可选:javassist,","选项参数配置:配置类:java.util.map说明:该标签为|或|或|或|或|的子标签,用于配置自定义参数,该配置项将作为扩展点设置自定义参数使用。","选项:","通常用于写入审计日志等操作。","通常用于实时性要求较高的读操作,但需要浪费更多服务资源。","通常用于消息通知操作。","通常用于读操作,但重试会带来更长延迟。","通常用于通知所有提供者更新缓存或日志等本地资源信息。","通常用于非幂等性的写操作,比如新增记录。","通常由脚本监控中心页面等调用","通过localhost.getlocalhost()获取本机地址。","通过mvn","通过不传送pojo的类元信息,在大量pojo传输时,性能较好","通过事件的值区分事件类型:register,","通过参数类型查找参数的index","通过字节码生成代替反射,性能比较好(推荐使用)","通过心跳的方式检测脏数据,服务器时间必须相同,并且对服务器有一定压力。","速度慢,任意一台报错则报错","都配了actives,","都配了connections,","配置","配置api","配置duubo.properti","配置jetty启动端口","配置spring配置加载位置:dubbo.spring.config=classpath*:meta","配置。","配置上dubbo缓存文件","配置上管理信息","配置使用说明想知道如何使用配置,请参见:快速启动","配置关联","配置可通过jetty直接访问的目录,用于存放静态文件","配置声明:","配置如下:","配置如:","配置方法如下:","配置日志子目录,用于多进程启动,避免冲突","配置日志文件路径","配置日志级别","配置显示的页面,缺省加载所有页面","配置服务的客户端的loadbalance属性为leastactive,此loadbalance会调用并发数最小的provider(consumer端并发数)。","配置的覆盖规则:1)","配置类:com.alibaba.dubbo.config.moduleconfig","配置规则","配置解析。","配置项一览表","配置项说明详细配置项,请参见:配置参考手册","配置:","采用nio复用单一长连接,并使用线程池并发处理请求,减少握手和加大并发效率,性能较好(推荐使用)","采用spring的httpinvoker实现","里面嵌了一个constraintviolationexcept","重试会带来更长延迟","重试次数配置如:","长度或大小范围","问题为方便开发测试,经常会在线下共用一个所有服务可用的注册中心,这时,如果一个正在开发中的服务提供者注册,可能会影响消费者不能正常运行。","问题如果有两个镜像环境,两个注册中心,有一个服务只在其中一个注册中心有部署,另一个注册中心还没来得及部署,而两个注册中心的其它应用都需要依赖此服务,所以需要将服务同时注册到两个注册中心,但却不能让此服务同时依赖两个注册中心的其它服务。","阅读readme.txt(内容如下,请以压缩包内的为准)","防御容错","防止消费者绕过注册中心访问提供者","阿里内部并没有采用redis做为注册中心,而是使用自己实现的基于数据库的注册中心,即:redis注册中心并没有在阿里内部长时间运行的可靠性保障,此redis桥接实现只为开源版本提供,其可靠性依赖于redis本身的可靠性。","附加参数","限制com.foo.barservice的sayhello方法,服务器端并发执行(或占用线程池线程数)不能超过10个:","限制com.foo.barservice的sayhello方法,每客户端并发执行(或占用连接的请求数)不能超过10个:","限制com.foo.barservice的每个方法,服务器端并发执行(或占用线程池线程数)不能超过10个:","限制com.foo.barservice的每个方法,每客户端并发执行(或占用连接的请求数)不能超过10个:","限制客户端服务使用连接连接数:(如果是长连接,比如dubbo协议,connections表示该服务对每个提供者建立的长连接数)","限制服务器端接受的连接不能超过10个:(因为连接在server上,所以配置在provider上)","除了50k","随机,按权重设置随机概率。","随机,按权重设置随机概率(推荐使用)","随着互联网的发展,网站应用的规模不断扩大,常规的垂直应用架构已无法应对,分布式服务架构以及流动计算架构势在必行,亟需一个治理系统确保架构有条不紊的演进。","隐式传参","隔离不同机房网段:","集成,可以桥接各种缓存实现。","集群容错","集群容错模式","集群方式,可选:failover/failfast/failsafe/failback/fork","集群模式配置如:","需hessian.jar支持,http短连接的开销大","需依赖:","需求","需注册中心支持","需要加入依赖","需要浪费更多服务资源","静态服务","验证参数不为空","验证异常信息","验证方式可扩展,参见:验证扩展","高压力场景(20并发)","黑名单:","默认)",")则并发限制针对方法,在接口上配置(dubbo:service),则并发限制针对服务。",",使dubbo在spring容器初始化完后,再暴露服务。",",可订阅服务的所有分组和所有版本的提供者。",",将不生成$remote接口,而使用spring的rmiinvocationhandler接口暴露服务,和spring兼容。",",此属性只在",",表示不更新该字段",",设为",":async=fals",":async=tru"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"这篇文档详细描述了dubbo的使用,基本涵盖dubbo的所有功能特性。\n如果你正依赖dubbo作为你业务工程的RPC通信框架,这将是你的参考手册\n"},"preface/background.html":{"url":"preface/background.html","title":"1.1 背景","keywords":"","body":"随着互联网的发展,网站应用的规模不断扩大,常规的垂直应用架构已无法应对,分布式服务架构以及流动计算架构势在必行,亟需一个治理系统确保架构有条不紊的演进。\n \n\n单一应用架构\n当网站流量很小时,只需一个应用,将所有功能都部署在一起,以减少部署节点和成本。\n此时,用于简化增删改查工作量的数据访问框架(ORM)是关键。\n\n\n垂直应用架构``\n当访问量逐渐增大,单一应用增加机器带来的加速度越来越小,将应用拆成互不相干的几个应用,以提升效率。\n此时,用于加速前端页面开发的Web框架(MVC)是关键。\n\n\n分布式服务架构\n当垂直应用越来越多,应用之间交互不可避免,将核心业务抽取出来,作为独立的服务,逐渐形成稳定的服务中心,使前端应用能更快速的响应多变的市场需求。\n此时,用于提高业务复用及整合的分布式服务框架(RPC)是关键。\n\n\n流动计算架构\n当服务越来越多,容量的评估,小服务资源的浪费等问题逐渐显现,此时需增加一个调度中心基于访问压力实时管理集群容量,提高集群利用率。\n此时,用于提高机器利用率的资源调度和治理中心(SOA)是关键。\n\n\n\n"},"preface/requirements.html":{"url":"preface/requirements.html","title":"1.2 需求","keywords":"","body":"在大规模服务化之前,应用可能只是通过RMI或Hessian等工具,简单的暴露和引用远程服务,通过配置服务的URL地址进行调用,通过F5等硬件进行负载均衡。\n(1) 当服务越来越多时,服务URL配置管理变得非常困难,F5硬件负载均衡器的单点压力也越来越大。此时需要一个服务注册中心,动态的注册和发现服务,使服务的位置透明。\n并通过在消费方获取服务提供方地址列表,实现软负载均衡和Failover,降低对F5硬件负载均衡器的依赖,也能减少部分成本。(2) 当进一步发展,服务间依赖关系变得错踪复杂,甚至分不清哪个应用要在哪个应用之前启动,架构师都不能完整的描述应用的架构关系。这时,需要自动画出应用间的依赖关系图,以帮助架构师理清理关系。(3) 接着,服务的调用量越来越大,服务的容量问题就暴露出来,这个服务需要多少机器支撑?什么时候该加机器?为了解决这些问题,第一步,要将服务现在每天的调用量,响应时间,都统计出来,作为容量规划的参考指标。\n其次,要可以动态调整权重,在线上,将某台机器的权重一直加大,并在加大的过程中记录响应时间的变化,直到响应时间到达阀值,记录此时的访问量,再以此访问量乘以机器数反推总容量。\n以上是Dubbo最基本的几个需求,更多服务治理问题参见:\nhttp://code.alibabatech.com/blog/experience_1402/service-governance-process.html\n"},"preface/architacture.html":{"url":"preface/architacture.html","title":"1.3 架构","keywords":"","body":"\n节点角色说明:\nProvider: 暴露服务的服务提供方\nConsumer: 调用远程服务的服务消费方。\nRegistry: 服务注册与发现的注册中心。\nMonitor: 统计服务的调用次调和调用时间的监控中心。\nContainer: 服务运行容器。\n\n\n\n调用关系说明:\n服务容器负责启动,加载,运行服务提供者。\n服务提供者在启动时,向注册中心注册自己提供的服务。\n服务消费者在启动时,向注册中心订阅自己所需的服务。\n注册中心返回服务提供者地址列表给消费者,如果有变更,注册中心将基于长连接推送变更数据给消费者。\n服务消费者,从提供者地址列表中,基于软负载均衡算法,选一台提供者进行调用,如果调用失败,再选另一台调用。\n服务消费者和提供者,在内存中累计调用次数和调用时间,定时每分钟发送一次统计数据到监控中心。\n\n(1) 连通性:\n注册中心负责服务地址的注册与查找,相当于目录服务,服务提供者和消费者只在启动时与注册中心交互,注册中心不转发请求,压力较小\n监控中心负责统计各服务调用次数,调用时间等,统计先在内存汇总后每分钟一次发送到监控中心服务器,并以报表展示\n服务提供者向注册中心注册其提供的服务,并汇报调用时间到监控中心,此时间不包含网络开销\n服务消费者向注册中心获取服务提供者地址列表,并根据负载算法直接调用提供者,同时汇报调用时间到监控中心,此时间包含网络开销\n注册中心,服务提供者,服务消费者三者之间均为长连接,监控中心除外\n注册中心通过长连接感知服务提供者的存在,服务提供者宕机,注册中心将立即推送事件通知消费者\n注册中心和监控中心全部宕机,不影响已运行的提供者和消费者,消费者在本地缓存了提供者列表\n注册中心和监控中心都是可选的,服务消费者可以直连服务提供者\n(2) 健状性:\n监控中心宕掉不影响使用,只是丢失部分采样数据\n数据库宕掉后,注册中心仍能通过缓存提供服务列表查询,但不能注册新服务\n注册中心对等集群,任意一台宕掉后,将自动切换到另一台\n注册中心全部宕掉后,服务提供者和服务消费者仍能通过本地缓存通讯\n服务提供者无状态,任意一台宕掉后,不影响使用\n服务提供者全部宕掉后,服务消费者应用将无法使用,并无限次重连等待服务提供者恢复\n(3) 伸缩性:\n注册中心为对等集群,可动态增加机器部署实例,所有客户端将自动发现新的注册中心\n服务提供者无状态,可动态增加机器部署实例,注册中心将推送新的服务提供者信息给消费者\n(4) 升级性:\n当服务集群规模进一步扩大,带动IT治理结构进一步升级,需要实现动态部署,进行流动计算,现有分布式服务架构不会带来阻力:\n\n\nDeployer: 自动部署服务的本地代理。\nRepository: 仓库用于存储服务应用发布包。\nScheduler: 调度中心基于访问压力自动增减服务提供者。\nAdmin: 统一管理控制台。\n\n"},"preface/usage.html":{"url":"preface/usage.html","title":"1.4 用法","keywords":"","body":"quick start\n"},"dependencies/dependencies.html":{"url":"dependencies/dependencies.html","title":"2.1 依赖","keywords":"","body":"必须依赖\nJDK1.5+\n\n理论上Dubbo可以只依赖JDK,不依赖于任何三方库运行,只需配置使用JDK相关实现策略。\n\n缺省依赖\n通过mvn dependency:tree > dep.log命令分析,Dubbo缺省依赖以下三方库:\n[INFO] +- com.alibaba:dubbo:jar:2.1.2:compile\n[INFO] | +- log4j:log4j:jar:1.2.16:compile \n[INFO] | +- org.javassist:javassist:jar:3.15.0-GA:compile\n[INFO] | +- org.springframework:spring:jar:2.5.6.SEC03:compile\n[INFO] | +- commons-logging:commons-logging:jar:1.1.1:compile\n[INFO] | \\- org.jboss.netty:netty:jar:3.2.5.Final:compile\n这里所有依赖都是换照Dubbo缺省配置选的,这些缺省值是基于稳定性和性能考虑的。\n\nlog4j.jar和commons-logging.jar日志输出包。 \n可以直接去掉,dubbo本身的日志会自动切换为JDK的java.util.logging输出。\n但如果其它三方库比如spring.jar间接依赖commons-logging,则不能去掉。\n\n\njavassist.jar 字节码生成。\n如果或,以及,则不需要。\n\n\nspring.jar 配置解析。\n如果用ServiceConfig和ReferenceConfig的API调用,则不需要。\n\n\nnetty.jar 网络传输。\n如果或,则换成mina.jar或grizzly.jar。\n如果,则不需要。可选依赖\n以下依赖,在主动配置使用相应实现策略时用到,需自行加入依赖。\n\n\nmina: 1.1.7\ngrizzly: 2.1.4\nhttpclient: 4.1.2\nhessian_lite: 3.2.1-fixed\nxstream: 1.4.1\nfastjson: 1.1.8\nzookeeper: 3.3.3\njedis: 2.0.0\nxmemcached: 1.3.6\njfreechart: 1.0.13\nhessian: 4.0.7\njetty: 6.1.26\nhibernate-validator: 4.2.0.Final\nzkclient: 0.1\ncurator: 1.1.10\ncxf: 2.6.1\nthrift: 0.8.0\n\nJEE:\n\nservlet: 2.5\nbsf: 3.1\nvalidation-api: 1.0.0.GA\njcache: 0.4\n\n"},"maturity/maturity.html":{"url":"maturity/maturity.html","title":"2.2 成熟度","keywords":"","body":"功能成熟度\n\n\n\nFeature\nMaturity\nStrength\nProblem\nAdvise\nUser\n\n\n\n\n并发控制\nTested\n并发控制\n\n试用\n\n\n\n连接控制\nTested\n连接数控制\n\n试用\n\n\n\n直连提供者\nTested\n点对点直连服务提供方,用于测试\n\n测试环境使用\nAlibaba\n\n\n分组聚合\nTested\n分组聚合返回值,用于菜单聚合等服务\n特殊场景使用\n可用于生产环境\n\n\n\n参数验证\nTested\n参数验证,JSR303验证框架集成\n对性能有影响\n试用\nLaiWang\n\n\n结果缓存\nTested\n结果缓存,用于加速请求\n\n试用\n\n\n\n泛化引用\nStable\n泛化调用,无需业务接口类进行远程调用,用于测试平台,开放网关桥接等\n\n可用于生产环境\nAlibaba\n\n\n泛化实现\nStable\n泛化实现,无需业务接口类实现任意接口,用于Mock平台\n\n可用于生产环境\nAlibaba\n\n\n回声测试\nTested\n回声测试\n\n试用\n\n\n\n隐式传参\nStable\n附加参数\n\n可用于生产环境\n\n\n\n异步调用\nTested\n不可靠异步调用\n\n试用\n\n\n\n本地调用\nTested\n本地调用\n\n试用\n\n\n\n参数回调\nTested\n参数回调\n特殊场景使用\n试用\nRegistry\n\n\n事件通知\nTested\n事件通知,在远程调用执行前后触发\n\n试用\n\n\n\n本地存根\nStable\n在客户端执行部分逻辑\n\n可用于生产环境\nAlibaba\n\n\n本地伪装\nStable\n伪造返回结果,可在失败时执行,或直接执行,用于服务降级\n需注册中心支持\n可用于生产环境\nAlibaba\n\n\n延迟暴露\nStable\n延迟暴露服务,用于等待应用加载warmup数据,或等待spring加载完成\n\n可用于生产环境\nAlibaba\n\n\n延迟连接\nTested\n延迟建立连接,调用时建立\n\n试用\nRegistry\n\n\n粘滞连接\nTested\n粘滞连接,总是向同一个提供方发起请求,除非此提供方挂掉,再切换到另一台\n\n试用\nRegistry\n\n\n令牌验证\nTested\n令牌验证,用于服务授权\n需注册中心支持\n试用\n\n\n\n路由规则\nTested\n动态决定调用关系\n需注册中心支持\n试用\n\n\n\n配置规则\nTested\n动态下发配置,实现功能的开关\n需注册中心支持\n试用\n\n\n\n访问日志\nTested\n访问日志,用于记录调用信息\n本地存储,影响性能,受磁盘大小限制\n试用\n\n\n\n分布式事务\nResearch\nJTA/XA三阶段提交事务\n不稳定\n不可用\n\n\n\n策略成熟度\n\n\n\nFeature\nMaturity\nStrength\nProblem\nAdvise\nUser\n\n\n\n\nZookeeper注册中心\nStable\n支持基于网络的集群方式,有广泛周边开源产品,建议使用dubbo-2.3.3以上版本(推荐使用)\n依赖于Zookeeper的稳定性\n可用于生产环境\n\n\n\nRedis注册中心\nStable\n支持基于客户端双写的集群方式,性能高\n要求服务器时间同步,用于检查心跳过期脏数据\n可用于生产环境\n\n\n\nMulticast注册中心\nTested\n去中心化,不需要安装注册中心\n依赖于网络拓普和路由,跨机房有风险\n小规模应用或开发测试环境\n\n\n\nSimple注册中心\nTested\nDogfooding,注册中心本身也是一个标准的RPC服务\n没有集群支持,可能单点故障\n试用\n\n\n\nFeature\nMaturity\nStrength\nProblem\nAdvise\nUser\n\n\nSimple监控中心\nStable\n支持JFreeChart统计报表\n没有集群支持,可能单点故障,但故障后不影响RPC运行\n可用于生产环境\n\n\n\nFeature\nMaturity\nStrength\nProblem\nAdvise\nUser\n\n\nDubbo协议\nStable\n采用NIO复用单一长连接,并使用线程池并发处理请求,减少握手和加大并发效率,性能较好(推荐使用)\n在大文件传输时,单一连接会成为瓶颈\n可用于生产环境\nAlibaba\n\n\nRmi协议\nStable\n可与原生RMI互操作,基于TCP协议\n偶尔会连接失败,需重建Stub\n可用于生产环境\nAlibaba\n\n\nHessian协议\nStable\n可与原生Hessian互操作,基于HTTP协议\n需hessian.jar支持,http短连接的开销大\n可用于生产环境\n\n\n\nFeature\nMaturity\nStrength\nProblem\nAdvise\nUser\n\n\nNetty Transporter\nStable\nJBoss的NIO框架,性能较好(推荐使用)\n一次请求派发两种事件,需屏蔽无用事件\n可用于生产环境\nAlibaba\n\n\nMina Transporter\nStable\n老牌NIO框架,稳定\n待发送消息队列派发不及时,大压力下,会出现FullGC\n可用于生产环境\nAlibaba\n\n\nGrizzly Transporter\nTested\nSun的NIO框架,应用于GlassFish服务器中\n线程池不可扩展,Filter不能拦截下一Filter\n试用\n\n\n\nFeature\nMaturity\nStrength\nProblem\nAdvise\nUser\n\n\nHessian Serialization\nStable\n性能较好,多语言支持(推荐使用)\nHessian的各版本兼容性不好,可能和应用使用的Hessian冲突,Dubbo内嵌了hessian3.2.1的源码\n可用于生产环境\nAlibaba\n\n\nDubbo Serialization\nTested\n通过不传送POJO的类元信息,在大量POJO传输时,性能较好\n当参数对象增加字段时,需外部文件声明\n试用\n\n\n\nJson Serialization\nTested\n纯文本,可跨语言解析,缺省采用FastJson解析\n性能较差\n试用\n\n\n\nJava Serialization\nStable\nJava原生支持\n性能较差\n可用于生产环境\n\n\n\nFeature\nMaturity\nStrength\nProblem\nAdvise\nUser\n\n\nJavassist ProxyFactory\nStable\n通过字节码生成代替反射,性能比较好(推荐使用)\n依赖于javassist.jar包,占用JVM的Perm内存,Perm可能要设大一些:java -XX:PermSize=128m\n可用于生产环境\nAlibaba\n\n\nJdk ProxyFactory\nStable\nJDK原生支持\n性能较差\n可用于生产环境\n\n\n\nFeature\nMaturity\nStrength\nProblem\nAdvise\nUser\n\n\nFailover Cluster\nStable\n失败自动切换,当出现失败,重试其它服务器,通常用于读操作(推荐使用)\n重试会带来更长延迟\n可用于生产环境\nAlibaba\n\n\nFailfast Cluster\nStable\n快速失败,只发起一次调用,失败立即报错,通常用于非幂等性的写操作\n如果有机器正在重启,可能会出现调用失败\n可用于生产环境\nAlibaba\n\n\nFailsafe Cluster\nStable\n失败安全,出现异常时,直接忽略,通常用于写入审计日志等操作\n调用信息丢失\n可用于生产环境\nMonitor\n\n\nFailback Cluster\nTested\n失败自动恢复,后台记录失败请求,定时重发,通常用于消息通知操作\n不可靠,重启丢失\n可用于生产环境\nRegistry\n\n\nForking Cluster\nTested\n并行调用多个服务器,只要一个成功即返回,通常用于实时性要求较高的读操作\n需要浪费更多服务资源\n可用于生产环境\n\n\n\nBroadcast Cluster\nTested\n广播调用所有提供者,逐个调用,任意一台报错则报错,通常用于更新提供方本地状态\n速度慢,任意一台报错则报错\n可用于生产环境\n\n\n\nFeature\nMaturity\nStrength\nProblem\nAdvise\nUser\n\n\nRandom LoadBalance\nStable\n随机,按权重设置随机概率(推荐使用)\n在一个截面上碰撞的概率高,重试时,可能出现瞬间压力不均\n可用于生产环境\nAlibaba\n\n\nRoundRobin LoadBalance\nStable\n轮循,按公约后的权重设置轮循比率\n存在慢的机器累积请求问题,极端情况可能产生雪崩\n可用于生产环境\n\n\n\nLeastActive LoadBalance\nStable\n最少活跃调用数,相同活跃数的随机,活跃数指调用前后计数差,使慢的机器收到更少请求\n不支持权重,在容量规划时,不能通过权重把压力导向一台机器压测容量\n可用于生产环境\n\n\n\nConsistentHash LoadBalance\nStable\n一致性Hash,相同参数的请求总是发到同一提供者,当某一台提供者挂时,原本发往该提供者的请求,基于虚拟节点,平摊到其它提供者,不会引起剧烈变动\n压力分摊不均\n可用于生产环境\n\n\n\nFeature\nMaturity\nStrength\nProblem\nAdvise\nUser\n\n\n条件路由规则\nStable\n基于条件表达式的路由规则,功能简单易用\n有些复杂多分支条件情况,规则很难描述\n可用于生产环境\nAlibaba\n\n\n脚本路由规则\nTested\n基于脚本引擎的路由规则,功能强大\n没有运行沙箱,脚本能力过于强大,可能成为后门\n试用\n\n\n\nFeature\nMaturity\nStrength\nProblem\nAdvise\nUser\n\n\nSpring Container\nStable\n自动加载META-INF/spring目录下的所有Spring配置\n\n可用于生产环境\nAlibaba\n\n\nJetty Container\nStable\n启动一个内嵌Jetty,用于汇报状态\n大量访问页面时,会影响服务器的线程和内存\n可用于生产环境\nAlibaba\n\n\nLog4j Container\nStable\n自动配置log4j的配置,在多进程启动时,自动给日志文件按进程分目录\n用户不能控制log4j的配置,不灵活\n可用于生产环境\nAlibaba\n\n\n\n"},"configuration/xml.html":{"url":"configuration/xml.html","title":"3.1 XML配置","keywords":"","body":"\n配置项说明详细配置项,请参见:配置参考手册 (+)\nAPI使用说明如果不想使用Spring配置,而希望通过API的方式进行调用,请参见:API配置 (+)\n配置使用说明想知道如何使用配置,请参见:快速启动 (+)\n\n示例:\nprovider.xml\n\n\n \n \n \n \n \n \n\n\n\n所有标签者支持自定义参数,用于不同扩展点实现的特殊配置。\n\n如:\n\n \n\n\n或:(2.1.0开始支持)\n\n 注意声明:xmlns:p=\"http://www.springframework.org/schema/p\"\n \n \n\n\nConfiguration Relation:\n\n 服务配置,用于暴露一个服务,定义服务的元信息,一个服务可以用多个协议暴露,一个服务也可以注册到多个注册中心。\n 引用配置,用于创建一个远程服务代理,一个引用可以指向多个注册中心。\n 协议配置,用于配置提供服务的协议信息,协议由提供方指定,消费方被动接受。\n 应用配置,用于配置当前应用信息,不管该应用是提供者还是消费者。\n 模块配置,用于配置当前模块信息,可选。\n 注册中心配置,用于配置连接注册中心相关信息。\n 监控中心配置,用于配置连接监控中心相关信息,可选。\n 提供方的缺省值,当ProtocolConfig和ServiceConfig某属性没有配置时,采用此缺省值,可选。\n 消费方缺省配置,当ReferenceConfig某属性没有配置时,采用此缺省值,可选。\n 方法配置,用于ServiceConfig和ReferenceConfig指定方法级的配置信息。\n 用于指定方法参数配置。\n\n\nConfiguration Override:\n\n上图中以timeout为例,显示了配置的查找顺序,其它retries, loadbalance, actives等类似。\n方法级优先,接口级次之,全局配置再次之。\n如果级别一样,则消费方优先,提供方次之。\n\n\n其中,服务提供方配置,通过URL经由注册中心传递给消费方。\n建议由服务提供方设置超时,因为一个方法需要执行多长时间,服务提供方更清楚,如果一个消费方同时引用多个服务,就不需要关心每个服务的超时设置。\n理论上ReferenceConfig的非服务标识配置,在ConsumerConfig,ServiceConfig, ProviderConfig均可以缺省配置。\n\n"},"configuration/properties.html":{"url":"configuration/properties.html","title":"3.2 属性配置","keywords":"","body":"\n如果公共配置很简单,没有多注册中心,多协议等情况,或者想多个Spring容器想共享配置,可以使用dubbo.properties作为缺省配置。\nDubbo将自动加载classpath根目录下的dubbo.properties,可以通过JVM启动参数:-Ddubbo.properties.file=xxx.properties 改变缺省配置位置。\n如果classpath根目录下存在多个dubbo.properties,比如多个jar包中有dubbo.properties,Dubbo会任意加载,并打印Error日志,后续可能改为抛异常。\n\n映射规则:\n\n将XML配置的标签名,加属性名,用点分隔,多个属性拆成多行: \n比如:dubbo.application.name=foo等价于 \n比如:dubbo.registry.address=10.20.153.10:9090等价于 \n\n\n如果XML有多行同名标签配置,可用id号区分,如果没有id号将对所有同名标签生效: \n比如:dubbo.protocol.rmi.port=1234等价于(协议的id没配时,缺省使用协议名作为id)\n比如:dubbo.registry.china.address=10.20.153.10:9090等价于\n\n\n\n典型配置如:\ndubbo.properties\ndubbo.application.name=foo\ndubbo.application.owner=bar\ndubbo.registry.address=10.20.153.10:9090\n\n\n覆盖策略:\n\nJVM启动-D参数优先,这样可以使用户在部署和启动时进行参数重写,比如在启动时需改变协议的端口。\nXML次之,如果在XML中有配置,则dubbo.properties中的相应配置项无效。\nProperties最后,相当于缺省值,只有XML没有配置时,dubbo.properties的相应配置项才会生效,通常用于共享公共配置,比如应用名。\n\n"},"configuration/api.html":{"url":"configuration/api.html","title":"3.3 API配置","keywords":"","body":"\n API使用范围API仅用于OpenAPI, ESB, Test, Mock等系统集成,普通服务提供方或消费方,请采用配置方式使用Dubbo,请参见:\n API属性含义参考API属性与配置项一对一,各属性含义,请参见:,比如:ApplicationConfig.setName(\"xxx\") 对应 \n\n(1). 服务提供者\nimport com.alibaba.dubbo.rpc.config.ApplicationConfig;\nimport com.alibaba.dubbo.rpc.config.RegistryConfig;\nimport com.alibaba.dubbo.rpc.config.ProviderConfig;\nimport com.alibaba.dubbo.rpc.config.ServiceConfig;\nimport com.xxx.XxxService;\nimport com.xxx.XxxServiceImpl;\n\n// 服务实现\nXxxService xxxService = new XxxServiceImpl();\n\n// 当前应用配置\nApplicationConfig application = new ApplicationConfig();\napplication.setName(\"xxx\");\n\n// 连接注册中心配置\nRegistryConfig registry = new RegistryConfig();\nregistry.setAddress(\"10.20.130.230:9090\");\nregistry.setUsername(\"aaa\");\nregistry.setPassword(\"bbb\");\n\n// 服务提供者协议配置\nProtocolConfig protocol = new ProtocolConfig();\nprotocol.setName(\"dubbo\");\nprotocol.setPort(12345);\nprotocol.setThreads(200);\n\n// 注意:ServiceConfig为重对象,内部封装了与注册中心的连接,以及开启服务端口\n\n// 服务提供者暴露服务配置\nServiceConfig service = new ServiceConfig(); // 此实例很重,封装了与注册中心的连接,请自行缓存,否则可能造成内存和连接泄漏\nservice.setApplication(application);\nservice.setRegistry(registry); // 多个注册中心可以用setRegistries()\nservice.setProtocol(protocol); // 多个协议可以用setProtocols()\nservice.setInterface(XxxService.class);\nservice.setRef(xxxService);\nservice.setVersion(\"1.0.0\");\n\n// 暴露及注册服务\nservice.export();\n\n(2). 服务消费者\nimport com.alibaba.dubbo.rpc.config.ApplicationConfig;\nimport com.alibaba.dubbo.rpc.config.RegistryConfig;\nimport com.alibaba.dubbo.rpc.config.ConsumerConfig;\nimport com.alibaba.dubbo.rpc.config.ReferenceConfig;\nimport com.xxx.XxxService;\n\n// 当前应用配置\nApplicationConfig application = new ApplicationConfig();\napplication.setName(\"yyy\");\n\n// 连接注册中心配置\nRegistryConfig registry = new RegistryConfig();\nregistry.setAddress(\"10.20.130.230:9090\");\nregistry.setUsername(\"aaa\");\nregistry.setPassword(\"bbb\");\n\n// 注意:ReferenceConfig为重对象,内部封装了与注册中心的连接,以及与服务提供方的连接\n\n// 引用远程服务\nReferenceConfig reference = new ReferenceConfig(); // 此实例很重,封装了与注册中心的连接以及与提供者的连接,请自行缓存,否则可能造成内存和连接泄漏\nreference.setApplication(application);\nreference.setRegistry(registry); // 多个注册中心可以用setRegistries()\nreference.setInterface(XxxService.class);\nreference.setVersion(\"1.0.0\");\n\n// 和本地bean一样使用xxxService\nXxxService xxxService = reference.get(); // 注意:此代理对象内部封装了所有通讯细节,对象较重,请缓存复用\n\n(3). 特殊场景\n\n注:下面只列出不同的地方,其它参见上面的写法\n\n(3.1). 方法级设置\n...\n\n// 方法级配置\nList methods = new ArrayList();\nMethodConfig method = new MethodConfig();\nmethod.setName(\"createXxx\");\nmethod.setTimeout(10000);\nmethod.setRetries(0);\nmethods.add(method);\n\n// 引用远程服务\nReferenceConfig reference = new ReferenceConfig(); // 此实例很重,封装了与注册中心的连接以及与提供者的连接,请自行缓存,否则可能造成内存和连接泄漏\n...\nreference.setMethods(methods); // 设置方法级配置\n\n...\n\n(3.2). 点对点直连\n\n...\n\nReferenceConfig reference = new ReferenceConfig(); // 此实例很重,封装了与注册中心的连接以及与提供者的连接,请自行缓存,否则可能造成内存和连接泄漏\n// 如果点对点直连,可以用reference.setUrl()指定目标地址,设置url后将绕过注册中心,\n// 其中,协议对应provider.setProtocol()的值,端口对应provider.setPort()的值,\n// 路径对应service.setPath()的值,如果未设置path,缺省path为接口名\nreference.setUrl(\"dubbo://10.20.130.230:20880/com.xxx.XxxService\"); \n\n...\n\n"},"configuration/annotation.html":{"url":"configuration/annotation.html","title":"3.4 注解配置","keywords":"","body":"\n 2.2.1以上版本支持 \n\n服务提供方注解:\nimport com.alibaba.dubbo.config.annotation.Service;\n\n@Service(version=\"1.0.0\")\npublic class FooServiceImpl implements FooService {\n\n // ......\n\n}\n\n服务提供方配置:\n\n\n\n\n\n\n\n服务消费方注解:\nimport com.alibaba.dubbo.config.annotation.Reference;\nimport org.springframework.stereotype.Component;\n\n@Component\npublic class BarAction {\n\n @Reference(version=\"1.0.0\")\n private FooService fooService;\n\n}\n\n服务消费方配置:\n\n\n\n\n\n\n\n也可以使用:(等价于前面的:)\n\n\n \n\n\n\n Spring2.5及以后版本支持component-scan,如果用的是Spring2.0及以前版本,需配置:\n\n\n\n\n\n"},"demos/启动时检查.html":{"url":"demos/启动时检查.html","title":"4.1 启动时检查","keywords":"","body":"\nDubbo缺省会在启动时检查依赖的服务是否可用,不可用时会抛出异常,阻止Spring初始化完成,以便上线时,能及早发现问题,默认 check=\"tr\bue\"。如果你的Spring容器是懒加载的,或者通过API编程延迟引用服务,请关闭check,否则服务临时不可用时,会抛出异常,拿到null引用,如果 check=\"false\",总是会返回引用,当服务恢复时,能自动连上。\n\n可以通过 check=\"false\" 关闭检查,比如,测试时,有些服务不关心,或者出现了循环依赖,必须有一方先启动。\n关闭某个服务的启动时检查:\n\n没有提供者时报错\n\n\n\n关闭所有服务的启动时检查:\n\n没有提供者时报错\n\n\n\n关闭注册中心启动时检查:\n\n注册订阅失败时报错\n\n\n\n也可以用dubbo.properties配置\ndubbo.reference.com.foo.BarService.check=false\ndubbo.reference.check=false\ndubbo.consumer.check=false\ndubbo.registry.check=false\n\n也可以用-D参数\njava -Ddubbo.reference.com.foo.BarService.check=false\njava -Ddubbo.reference.check=false\njava -Ddubbo.consumer.check=false \njava -Ddubbo.registry.check=false\n\n注意区别\n\n\ndubbo.reference.check=false,强制改变所有reference的check值,就算配置中有声明,也会被覆盖。\ndubbo.consumer.check=false,是设置check的缺省值,如果配置中有显式的声明,如:,不会受影响。\ndubbo.registry.check=false,前面两个都是指订阅成功,但提供者列表是否为空是否报错,如果注册订阅失败时,也允许启动,需使用此选项,将在后台定时重试。\n\n\n引用缺省是延迟初始化的,只有引用被注入到其它Bean,或被getBean()获取,才会初始化。\n如果需要饥饿加载,即没有人引用也立即生成动态代理,可以配置:\n\n\n"},"demos/集群容错.html":{"url":"demos/集群容错.html","title":"4.2 集群容错","keywords":"","body":"\n在集群调用失败时,Dubbo提供了多种容错方案,缺省为failover重试。\n\n\n各节点关系:\n\n这里的Invoker是Provider的一个可调用Service的抽象,Invoker封装了Provider地址及Service接口信息。\nDirectory代表多个Invoker,可以把它看成List,但与List不同的是,它的值可能是动态变化的,比如注册中心推送变更。\nCluster将Directory中的多个Invoker伪装成一个Invoker,对上层透明,伪装过程包含了容错逻辑,调用失败后,重试另一个。\nRouter负责从多个Invoker中按路由规则选出子集,比如读写分离,应用隔离等。\nLoadBalance负责从多个Invoker中选出具体的一个用于本次调用,选的过程包含了负载均衡算法,调用失败后,需要重选\n\n集群容错模式\n可以自行扩展集群容错策略,参见:集群扩展\nFailover Cluster\n\n失败自动切换,当出现失败,重试其它服务器。(缺省)\n通常用于读操作,但重试会带来更长延迟。\n可通过 retries=\"2\" 来设置重试次数(不含第一次)。\n\nFailfast Cluster\n\n快速失败,只发起一次调用,失败立即报错。\n通常用于非幂等性的写操作,比如新增记录。\n\nFailsafe Cluster\n\n失败安全,出现异常时,直接忽略。\n通常用于写入审计日志等操作。\n\nFailback Cluster\n\n失败自动恢复,后台记录失败请求,定时重发。\n通常用于消息通知操作。\n\nForking Cluster\n\n并行调用多个服务器,只要一个成功即返回。\n通常用于实时性要求较高的读操作,但需要浪费更多服务资源。\n可通过 forks=\"2\" 来设置最大并行数。\n\nBroadcast Cluster\n\n广播调用所有提供者,逐个调用,任意一台报错则报错。(2.1.0开始支持)\n通常用于通知所有提供者更新缓存或日志等本地资源信息。\n\n重试次数配置如: (failover集群模式生效)\n\n\n或\n\n\n或\n\n \n\n\n集群模式配置如:\n\n\n或\n\n\n"},"demos/负载均衡.html":{"url":"demos/负载均衡.html","title":"4.3 负载均衡","keywords":"","body":"\n在集群负载均衡时,Dubbo提供了多种均衡策略,缺省为random随机调用。可以自行扩展负载均衡策略,参见:负载均衡扩展\n\nRandom LoadBalance\n\n随机,按权重设置随机概率。\n在一个截面上碰撞的概率高,但调用量越大分布越均匀,而且按概率使用权重后也比较均匀,有利于动态调整提供者权重。\n\nRoundRobin LoadBalance\n\n轮循,按公约后的权重设置轮循比率。\n存在慢的提供者累积请求的问题,比如:第二台机器很慢,但没挂,当请求调到第二台时就卡在那,久而久之,所有请求都卡在调到第二台上。\n\nLeastActive LoadBalance\n\n最少活跃调用数,相同活跃数的随机,活跃数指调用前后计数差。\n使慢的提供者收到更少请求,因为越慢的提供者的调用前后计数差会越大。\n\nConsistentHash LoadBalance\n\n一致性Hash,相同参数的请求总是发到同一提供者。\n当某一台提供者挂时,原本发往该提供者的请求,基于虚拟节点,平摊到其它提供者,不会引起剧烈变动。\n算法参见:http://en.wikipedia.org/wiki/Consistent_hashing。\n缺省只对第一个参数Hash,如果要修改,请配置\n缺省用160份虚拟节点,如果要修改,请配置 \n\n配置如:\n\n\n或\n\n\n或\n\n \n\n\n或\n\n \n\n\n"},"demos/线程模型.html":{"url":"demos/线程模型.html","title":"4.4 线程模型","keywords":"","body":"\n\n事件处理线程说明 \n\n如果事件处理的逻辑能迅速完成,并且不会发起新的IO请求,比如只是在内存中记个标识,则直接在IO线程上处理更快,因为减少了线程池调度。 \n但如果事件处理逻辑较慢,或者需要发起新的IO请求,比如需要查询数据库,则必须派发到线程池,否则IO线程阻塞,将导致不能接收其它请求。 \n如果用IO线程处理事件,又在事件处理过程中发起新的IO请求,比如在连接事件中发起登录请求,会报“可能引发死锁”异常,但不会真死锁。\n\n\nDispatcher\n\nall 所有消息都派发到线程池,包括请求,响应,连接事件,断开事件,心跳等。\ndirect 所有消息都不派发到线程池,全部在IO线程上直接执行。\nmessage 只有请求响应消息派发到线程池,其它连接断开事件,心跳等消息,直接在IO线程上执行。\nexecution 只请求消息派发到线程池,不含响应,响应和其它连接断开事件,心跳等消息,直接在IO线程上执行。\nconnection 在IO线程上,将连接断开事件放入队列,有序逐个执行,其它消息派发到线程池。\n\nThreadPool\n\nfixed 固定大小线程池,启动时建立线程,不关闭,一直持有。(缺省)\ncached 缓存线程池,空闲一分钟自动删除,需要时重建。\nlimited 可伸缩线程池,但池中的线程数只会增长不会收缩。(为避免收缩时突然来了大流量引起的性能问题)。\n\n配置如下:\n\n\n"},"demos/直连提供者.html":{"url":"demos/直连提供者.html","title":"4.5 直连提供者","keywords":"","body":"在开发及测试环境下,经常需要绕过注册中心,只测试指定服务提供者,这时候可能需要点对点直连,点对点直联方式,将以服务接口为单位,忽略注册中心的提供者列表,A接口配置点对点,不影响B接口从注册中心获取列表。\n\n\n如果是线上需求需要点对点,可在 中配置url指向提供者,将绕过注册中心,多个地址用分号隔开,配置如下:\n\n1.0.6及以上版本支持\n\n \n\n\n在JVM启动参数中加入-D参数映射服务地址,如:\n\nkey为服务名,value为服务提供者url,此配置优先级最高,1.0.15及以上版本支持\n\n java -Dcom.alibaba.xxx.XxxService=dubbo://localhost:20890\n\n\n如果服务比较多,也可以用文件映射,如:\n\n用-Ddubbo.resolve.file指定映射文件路径,此配置优先级高于中的配置,1.0.15及以上版本支持\n2.0以上版本自动加载${user.home}/dubbo-resolve.properties文件,不需要配置\n\n java -Ddubbo.resolve.file=xxx.properties\n\n 然后在映射文件xxx.properties中加入:(key为服务名,value为服务提供者url)\n com.alibaba.xxx.XxxService=dubbo://localhost:20890\n\n\n\n\n注意为了避免复杂化线上环境,不要在线上使用这个功能,只应在测试阶段使用。\n\n"},"demos/只订阅.html":{"url":"demos/只订阅.html","title":"4.6 只订阅","keywords":"","body":"\n问题为方便开发测试,经常会在线下共用一个所有服务可用的注册中心,这时,如果一个正在开发中的服务提供者注册,可能会影响消费者不能正常运行。\n解决方案可以让服务提供者开发方,只订阅服务(开发的服务可能依赖其它服务),而不注册正在开发的服务,通过直连测试正在开发的服务。\n\n\n禁用注册配置\n\n\n或者\n\n\n"},"demos/只注册.html":{"url":"demos/只注册.html","title":"4.7 只注册","keywords":"","body":"\n问题如果有两个镜像环境,两个注册中心,有一个服务只在其中一个注册中心有部署,另一个注册中心还没来得及部署,而两个注册中心的其它应用都需要依赖此服务,所以需要将服务同时注册到两个注册中心,但却不能让此服务同时依赖两个注册中心的其它服务。\n解决方案可以让服务提供者方,只注册服务到另一注册中心,而不从另一注册中心订阅服务。\n\n禁用订阅配置\n\n\n\n或者\n\n\n\n"},"demos/静态服务.html":{"url":"demos/静态服务.html","title":"4.8 静态服务","keywords":"","body":"有时候希望人工管理服务提供者的上线和下线,此时需将注册中心标识为非动态管理模式\n\n\n或者\n\n\n服务提供者初次注册时为禁用状态,需人工启用,断线时,将不会被自动删除,需人工禁用。\n如果是一个第三方独立提供者,比如memcached等,可以直接向注册中心写入提供者地址信息,消费者正常使用:\n\n通常由脚本监控中心页面等调用\n\nRegistryFactory registryFactory = ExtensionLoader.getExtensionLoader(RegistryFactory.class).getAdaptiveExtension();\nRegistry registry = registryFactory.getRegistry(URL.valueOf(\"zookeeper://10.20.153.10:2181\"));\nregistry.register(URL.valueOf(\"memcached://10.20.153.11/com.foo.BarService?category=providers&dynamic=false&application=foo\"));\n\n"},"demos/多协议.html":{"url":"demos/多协议.html","title":"4.9 多协议","keywords":"","body":"可以自行扩展协议,参见:协议扩展\n(1) 不同服务不同协议\n比如:不同服务在性能上适用不同协议进行传输,比如大数据用短连接协议,小数据大并发用长连接协议\nconsumer.xml\n\n\n\n \n \n\n \n \n \n\n \n \n \n \n\n\n(2) 多协议暴露服务\n比如:需要与http客户端互操作\nconsumer.xml\n\n\n\n \n \n\n \n \n \n\n \n \n\n\n"},"demos/多注册中心.html":{"url":"demos/多注册中心.html","title":"4.10 多注册中心","keywords":"","body":"可以自行扩展注册中心,参见:注册中心扩展\n(1) 多注册中心注册\n比如:中文站有些服务来不及在青岛部署,只在杭州部署,而青岛的其它应用需要引用此服务,就可以将服务同时注册到两个注册中心。\nconsumer.xml\n\n\n\n\n \n\n \n \n \n\n \n \n\n\n(2) 不同服务使用不同注册中心\n比如:CRM有些服务是专门为国际站设计的,有些服务是专门为中文站设计的。\nconsumer.xml\n\n\n\n \n\n \n \n \n\n \n \n\n \n \n\n\n(3) 多注册中心引用\n比如:CRM需同时调用中文站和国际站的PC2服务,PC2在中文站和国际站均有部署,接口及版本号都一样,但连的数据库不一样。\nconsumer.xml\n\n\n\n \n\n \n \n \n\n \n \n\n \n \n\n\n如果只是测试环境临时需要连接两个不同注册中心,使用竖号分隔多个不同注册中心地址:\nconsumer.xml\n\n\n\n \n\n \n \n\n \n \n\n\n"},"demos/服务分组.html":{"url":"demos/服务分组.html","title":"4.11 服务分组","keywords":"","body":"\n当一个接口有多种实现时,可以用group区分。\n\n服务\n\n\n\n引用\n\n\n\n任意组:\n\n2.2.0以上版本支持,总是只调一个可用组的实现\n\n\n\n"},"demos/多版本.html":{"url":"demos/多版本.html","title":"4.13 多版本","keywords":"","body":"\n当一个接口实现,出现不兼容升级时,可以用版本号过渡,版本号不同的服务相互间不引用。\n\n\n在低压力时间段,先升级一半提供者为新版本\n再将所有消费者升级为新版本\n然后将剩下的一半提供者升级为新版本\n\n老版本服务\n\n\n新版本服务\n\n\n引用老版本\n\n\n引用新版本\n\n\n不区分版本:(2.2.0以上版本支持)\n\n\n"},"demos/分组聚合.html":{"url":"demos/分组聚合.html","title":"4.14 分组聚合","keywords":"","body":"\n按组合并返回结果,比如菜单服务,接口一样,但有多种实现,用group区分,现在消费方需从每种group中调用一次返回结果,合并结果返回,这样就可以实现聚合菜单项。从2.1.0版本开始支持,\n\n代码参见:https://github.com/alibaba/dubbo/tree/master/dubbo-test/dubbo-test-examples/src/main/java/com/alibaba/dubbo/examples/merge\n配置如:\n搜索所有分组\n\n\n合并指定分组\n\n\n指定方法合并结果,其它未指定的方法,将只调用一个Group\n\n \n\n\n某个方法不合并结果,其它都合并结果\n\n \n\n\n指定合并策略,缺省根据返回值类型自动匹配,如果同一类型有两个合并器时,需指定合并器的名称\n参见:合并结果扩展\n\n \n\n\n指定合并方法,将调用返回结果的指定方法进行合并,合并方法的参数类型必须是返回结果类型本身\n\n \n\n\n"},"demos/参数验证.html":{"url":"demos/参数验证.html","title":"4.15 参数验证","keywords":"","body":"\n参数验证功能是基于 JSR303 实现的,用户只需标识JSR303标准的验证Annotation,并通过声明filter来实现验证。 \n2.1.0以上版本支持, 完整示例代码参见:https://github.com/alibaba/dubbo/tree/master/dubbo-test/dubbo-test-examples/src/main/java/com/alibaba/dubbo/examples/validation \n\n验证方式可扩展,参见:验证扩展\n参数标注示例\n\nimport java.io.Serializable;\nimport java.util.Date;\n\nimport javax.validation.constraints.Future;\nimport javax.validation.constraints.Max;\nimport javax.validation.constraints.Min;\nimport javax.validation.constraints.NotNull;\nimport javax.validation.constraints.Past;\nimport javax.validation.constraints.Pattern;\nimport javax.validation.constraints.Size;\n\npublic class ValidationParameter implements Serializable {\n\n private static final long serialVersionUID = 7158911668568000392L;\n\n @NotNull // 不允许为空\n @Size(min = 1, max = 20) // 长度或大小范围\n private String name;\n\n @NotNull(groups = ValidationService.Save.class) // 保存时不允许为空,更新时允许为空 ,表示不更新该字段\n @Pattern(regexp = \"^\\\\s*\\\\w+(?:\\\\.{0,1}[\\\\w-]+)*@[a-zA-Z0-9]+(?:[-.][a-zA-Z0-9]+)*\\\\.[a-zA-Z]+\\\\s*$\")\n private String email;\n\n @Min(18) // 最小值\n @Max(100) // 最大值\n private int age;\n\n @Past // 必须为一个过去的时间\n private Date loginDate;\n\n @Future // 必须为一个未来的时间\n private Date expiryDate;\n\n public String getName() {\n return name;\n }\n\n public void setName(String name) {\n this.name = name;\n }\n\n public String getEmail() {\n return email;\n }\n\n public void setEmail(String email) {\n this.email = email;\n }\n\n public int getAge() {\n return age;\n }\n\n public void setAge(int age) {\n this.age = age;\n }\n\n public Date getLoginDate() {\n return loginDate;\n }\n\n public void setLoginDate(Date loginDate) {\n this.loginDate = loginDate;\n }\n\n public Date getExpiryDate() {\n return expiryDate;\n }\n\n public void setExpiryDate(Date expiryDate) {\n this.expiryDate = expiryDate;\n }\n\n}\n\n分组验证示例\npublic interface ValidationService { // 缺省可按服务接口区分验证场景,如:@NotNull(groups = ValidationService.class)\n\n @interface Save{} // 与方法同名接口,首字母大写,用于区分验证场景,如:@NotNull(groups = ValidationService.Save.class),可选\n void save(ValidationParameter parameter);\n void update(ValidationParameter parameter);\n}\n\n关联验证示例\nimport javax.validation.GroupSequence;\n\npublic interface ValidationService {\n\n @GroupSequence(Update.class) // 同时验证Update组规则\n @interface Save{}\n void save(ValidationParameter parameter);\n\n @interface Update{} \n void update(ValidationParameter parameter);\n}\n\n参数验证示例\nimport javax.validation.constraints.Min;\nimport javax.validation.constraints.NotNull;\n\npublic interface ValidationService {\n\n void save(@NotNull ValidationParameter parameter); // 验证参数不为空\n\n void delete(@Min(1) int id); // 直接对基本类型参数验证\n}\n\n在客户端验证参数\n\n\n在服务器端验证参数\n\n\n验证异常信息\nimport javax.validation.ConstraintViolationException;\nimport javax.validation.ConstraintViolationException;\n\nimport org.springframework.context.support.ClassPathXmlApplicationContext;\n\nimport com.alibaba.dubbo.examples.validation.api.ValidationParameter;\nimport com.alibaba.dubbo.examples.validation.api.ValidationService;\nimport com.alibaba.dubbo.rpc.RpcException;\n\npublic class ValidationConsumer {\n\n public static void main(String[] args) throws Exception {\n String config = ValidationConsumer.class.getPackage().getName().replace('.', '/') + \"/validation-consumer.xml\";\n ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(config);\n context.start();\n ValidationService validationService = (ValidationService)context.getBean(\"validationService\");\n // Error\n try {\n parameter = new ValidationParameter();\n validationService.save(parameter);\n System.out.println(\"Validation ERROR\");\n } catch (RpcException e) { // 抛出的是RpcException\n ConstraintViolationException ve = (ConstraintViolationException) e.getCause(); // 里面嵌了一个ConstraintViolationException\n Set> violations = ve.getConstraintViolations(); // 可以拿到一个验证错误详细信息的集合\n System.out.println(violations);\n }\n } \n}\n\n需要加入依赖\n\n javax.validation\n validation-api\n 1.0.0.GA\n\n\n org.hibernate\n hibernate-validator\n 4.2.0.Final\n\n\n"},"demos/结果缓存.html":{"url":"demos/结果缓存.html","title":"4.16 结果缓存","keywords":"","body":"\n结果缓存,用于加速热门数据的访问速度,Dubbo提供声明式缓存,以减少用户加缓存的工作量。\n2.1.0以上版本支持\n\n示例代码:https://github.com/alibaba/dubbo/tree/master/dubbo-test/dubbo-test-examples/src/main/java/com/alibaba/dubbo/examples/cache\n\nlru 基于最近最少使用原则删除多余缓存,保持最热的数据被缓存。\nthreadlocal 当前线程缓存,比如一个页面渲染,用到很多portal,每个portal都要去查用户信息,通过线程缓存,可以减少这种多余访问。\njcache 与 JSR107 集成,可以桥接各种缓存实现。\n\n缓存类型可扩展,参见:CacheFactory扩展点\n配置如:\n\n\n或:\n\n \n\n\n"},"demos/泛化引用.html":{"url":"demos/泛化引用.html","title":"4.17 泛化引用","keywords":"","body":"\n泛接口调用方式主要用于客户端没有API接口及模型类元的情况,参数及返回值中的所有POJO均用Map表示,通常用于框架集成,比如:实现一个通用的服务测试框架,可通过GenericService调用所有服务实现。\n\n\n\nGenericService barService = (GenericService) applicationContext.getBean(\"barService\");\nObject result = barService.$invoke(\"sayHello\", new String[] { \"java.lang.String\" }, new Object[] { \"World\" });\n\nimport com.alibaba.dubbo.rpc.service.GenericService; \n... \n\n// 引用远程服务 \nReferenceConfig reference = new ReferenceConfig(); // 该实例很重量,里面封装了所有与注册中心及服务提供方连接,请缓存\nreference.setInterface(\"com.xxx.XxxService\"); // 弱类型接口名 \nreference.setVersion(\"1.0.0\"); \nreference.setGeneric(true); // 声明为泛化接口 \n\nGenericService genericService = reference.get(); // 用com.alibaba.dubbo.rpc.service.GenericService可以替代所有接口引用 \n\n// 基本类型以及Date,List,Map等不需要转换,直接调用 \nObject result = genericService.$invoke(\"sayHello\", new String[] {\"java.lang.String\"}, new Object[] {\"world\"}); \n\n// 用Map表示POJO参数,如果返回值为POJO也将自动转成Map \nMap person = new HashMap(); \nperson.put(\"name\", \"xxx\"); \nperson.put(\"password\", \"yyy\"); \nObject result = genericService.$invoke(\"findPerson\", new String[]{\"com.xxx.Person\"}, new Object[]{person}); // 如果返回POJO将自动转成Map \n\n...\n\n假设存在POJO如:\npackage com.xxx;\n\npublic class PersonImpl implements Person {\n private String name;\n private String password;\n\n public String getName() {\n return name;\n }\n\n public void setName(String name) {\n this.name = name;\n }\n\n public String getPassword() {\n return password;\n }\n\n public void setPassword(String password) {\n this.password = password;\n }\n}\n\n则POJO数据:\nPerson person = new PersonImpl(); \nperson.setName(\"xxx\"); \nperson.setPassword(\"yyy\");\n\n可用下面Map表示:\nMap map = new HashMap(); \nmap.put(\"class\", \"com.xxx.PersonImpl\"); // 注意:如果参数类型是接口,或者List等丢失泛型,可通过class属性指定类型。\nmap.put(\"name\", \"xxx\"); \nmap.put(\"password\", \"yyy\");\n\n"},"demos/泛化实现.html":{"url":"demos/泛化实现.html","title":"4.18 泛化实现","keywords":"","body":"\n泛接口实现方式主要用于服务器端没有API接口及模型类元的情况,参数及返回值中的所有POJO均用Map表示,通常用于框架集成,比如:实现一个通用的远程服务Mock框架,可通过实现GenericService接口处理所有服务请求。\n\n\n\n\npackage com.foo;\npublic class MyGenericService implements GenericService {\n\n public Object $invoke(String methodName, String[] parameterTypes, Object[] args) throws GenericException {\n if (\"sayHello\".equals(methodName)) {\n return \"Welcome \" + args[0];\n }\n }\n}\n\n... \nGenericService xxxService = new XxxGenericService(); // 用com.alibaba.dubbo.rpc.service.GenericService可以替代所有接口实现 \n\nServiceConfig service = new ServiceConfig(); // 该实例很重量,里面封装了所有与注册中心及服务提供方连接,请缓存\nservice.setInterface(\"com.xxx.XxxService\"); // 弱类型接口名 \nservice.setVersion(\"1.0.0\"); \nservice.setRef(xxxService); // 指向一个通用服务实现 \n\n// 暴露及注册服务 \nservice.export();\n\n"},"demos/回声测试.html":{"url":"demos/回声测试.html","title":"4.19 回声测试","keywords":"","body":"\n回声测试用于检测服务是否可用,回声测试按照正常请求流程执行,能够测试整个调用是否通畅,可用于监控。\n所有服务自动实现EchoService接口,只需将任意服务引用强制转型为EchoService,即可使用。\n\n\n\nMemberService memberService = ctx.getBean(\"memberService\"); // 远程服务引用\n\nEchoService echoService = (EchoService) memberService; // 强制转型为EchoService\n\nString status = echoService.$echo(\"OK\"); // 回声测试可用性\n\nassert(status.equals(\"OK\"));\n\n"},"demos/上下文信息.html":{"url":"demos/上下文信息.html","title":"4.20 上下文信息","keywords":"","body":"\n上下文中存放的是当前调用过程中所需的环境信息。\n所有配置信息都将转换为URL的参数,参见 配置项一览表 中的“对应URL参数”一列。\n注意\nRpcContext是一个ThreadLocal的临时状态记录器,当接收到RPC请求,或发起RPC请求时,RpcContext的状态都会变化。\n比如:A调B,B再调C,则B机器上,在B调C之前,RpcContext记录的是A调B的信息,在B调C之后,RpcContext记录的是B调C的信息。\n\n(1) 服务消费方\nxxxService.xxx(); // 远程调用\nboolean isConsumerSide = RpcContext.getContext().isConsumerSide(); // 本端是否为消费端,这里会返回true\nString serverIP = RpcContext.getContext().getRemoteHost(); // 获取最后一次调用的提供方IP地址\nString application = RpcContext.getContext().getUrl().getParameter(\"application\"); // 获取当前服务配置信息,所有配置信息都将转换为URL的参数\n// ...\nyyyService.yyy(); // 注意:每发起RPC调用,上下文状态会变化\n// ...\n\n(2) 服务提供方\npublic class XxxServiceImpl implements XxxService {\n\n public void xxx() { // 服务方法实现\n boolean isProviderSide = RpcContext.getContext().isProviderSide(); // 本端是否为提供端,这里会返回true\n String clientIP = RpcContext.getContext().getRemoteHost(); // 获取调用方IP地址\n String application = RpcContext.getContext().getUrl().getParameter(\"application\"); // 获取当前服务配置信息,所有配置信息都将转换为URL的参数\n // ...\n yyyService.yyy(); // 注意:每发起RPC调用,上下文状态会变化\n boolean isProviderSide = RpcContext.getContext().isProviderSide(); // 此时本端变成消费端,这里会返回false\n // ...\n } \n}\n\n"},"demos/异步调用.html":{"url":"demos/异步调用.html","title":"4.22 异步调用","keywords":"","body":"\n基于NIO的非阻塞实现并行调用,客户端不需要启动多线程即可完成并行调用多个远程服务,相对多线程开销较小。\n2.0.6及其以上版本支持\n\n\n配置声明:\nconsumer.xml\n\n \n\n\n \n\n\n调用代码:\nfooService.findFoo(fooId); // 此调用会立即返回null\nFuture fooFuture = RpcContext.getContext().getFuture(); // 拿到调用的Future引用,当结果返回后,会被通知和设置到此Future。\n\nbarService.findBar(barId); // 此调用会立即返回null\nFuture barFuture = RpcContext.getContext().getFuture(); // 拿到调用的Future引用,当结果返回后,会被通知和设置到此Future。\n\n// 此时findFoo和findBar的请求同时在执行,客户端不需要启动多线程来支持并行,而是借助NIO的非阻塞完成。\n\nFoo foo = fooFuture.get(); // 如果foo已返回,直接拿到返回值,否则线程wait住,等待foo返回后,线程会被notify唤醒。\nBar bar = barFuture.get(); // 同理等待bar返回。\n\n// 如果foo需要5秒返回,bar需要6秒返回,实际只需等6秒,即可获取到foo和bar,进行接下来的处理。\n\n你也可以设置是否等待消息发出:(异步总是不等待返回)\n\nsent=\"true\" 等待消息发出,消息发送失败将抛出异常。\nsent=\"false\" 不等待消息发出,将消息放入IO队列,即刻返回。\n\n\n\n如果你只是想异步,完全忽略返回值,可以配置 return=\"false\",以减少Future对象的创建和管理成本:\n\n\n"},"demos/本地调用.html":{"url":"demos/本地调用.html","title":"4.23 本地调用","keywords":"","body":"\n本地调用,使用了Injvm协议,是一个伪协议,它不开启端口,不发起远程调用,只在JVM内直接关联,但执行Dubbo的Filter链。\n\n定义 injvm 协议:\n\n\n设置默认协议:\n\n\n设置服务协议:\n\n\n优先使用 injvm:\n\n\n\n或\n\n\n\n\n注意:服务暴露与服务引用都需要声明 injvm=\"true\"\n\n自动暴露、引用本地服务\n从 dubbo 2.2.0 开始,每个服务默认都会在本地暴露。在引用服务的时候,默认优先引用本地服务。如果希望引用远程服务可以使用一下配置强制引用远程服务。\n\n\n"},"demos/参数回调.html":{"url":"demos/参数回调.html","title":"4.24 参数回调","keywords":"","body":"\n参数回调方式与调用本地callback或listener相同,只需要在Spring的配置文件中声明哪个参数是callback类型即可,Dubbo将基于长连接生成反向代理,这样就可以从服务器端调用客户端逻辑。\n2.0.6及其以上版本支持代码参见:https://github.com/alibaba/dubbo/tree/master/dubbo-test/dubbo-test-examples/src/main/java/com/alibaba/dubbo/examples/callback\n\n(1) 共享服务接口\n服务接口示例\nCallbackService.java\npackage com.callback;\n\npublic interface CallbackService {\n void addListener(String key, CallbackListener listener);\n}\n\nCallbackListener.java\npackage com.callback;\n\npublic interface CallbackListener {\n void changed(String msg);\n}\n\n(2) 服务提供者\n服务提供者接口实现示例\nCallbackServiceImpl.java\npackage com.callback.impl;\n\nimport java.text.SimpleDateFormat;\nimport java.util.Date;\nimport java.util.Map;\nimport java.util.concurrent.ConcurrentHashMap;\n\nimport com.callback.CallbackListener;\nimport com.callback.CallbackService;\n\npublic class CallbackServiceImpl implements CallbackService {\n\n private final Map listeners = new ConcurrentHashMap();\n\n public CallbackServiceImpl() {\n Thread t = new Thread(new Runnable() {\n public void run() {\n while(true) {\n try {\n for(Map.Entry entry : listeners.entrySet()){\n try {\n entry.getValue().changed(getChanged(entry.getKey()));\n } catch (Throwable t) {\n listeners.remove(entry.getKey());\n }\n }\n Thread.sleep(5000); // 定时触发变更通知\n } catch (Throwable t) { // 防御容错\n t.printStackTrace();\n }\n }\n }\n });\n t.setDaemon(true);\n t.start();\n }\n\n public void addListener(String key, CallbackListener listener) {\n listeners.put(key, listener);\n listener.changed(getChanged(key)); // 发送变更通知\n }\n\n private String getChanged(String key) {\n return \"Changed: \" + new SimpleDateFormat(\"yyyy-MM-dd HH:mm:ss\").format(new Date());\n }\n}\n\n服务提供者配置示例\n\n\n \n \n \n -->\n \n\n\n(3) 服务消费者\n服务消费者配置示例\nconsumer.xml\n\n\n服务消费者调用示例\nCallbackServiceTest.java\nClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(\"classpath:consumer.xml\");\ncontext.start();\n\nCallbackService callbackService = (CallbackService) context.getBean(\"callbackService\");\n\ncallbackService.addListener(\"http://10.20.160.198/wiki/display/dubbo/foo.bar\", new CallbackListener(){\n public void changed(String msg) {\n System.out.println(\"callback1:\" + msg);\n }\n});\n\n"},"demos/事件通知.html":{"url":"demos/事件通知.html","title":"4.25 事件通知","keywords":"","body":"\n在调用之前,调用之后,出现异常时,会触发oninvoke, onreturn, onthrow三个事件,可以配置当事件发生时,通知哪个类的哪个方法。\n支持版本:2.0.7之后\n\n(1) 服务提供者与消费者共享服务接口\nIDemoService.java\ninterface IDemoService {\n public Person get(int id);\n}\n\n(2) 服务提供者实现\nDemoServiceImpl.java\n\nclass NormalDemoService implements IDemoService {\n public Person get(int id) {\n return new Person(id, \"charles`son\", 4);\n }\n}\n\n(3) 服务提供者配置\nprovider.xml\n\n\n\n\n\n(4) 服务消费者Callback接口及实现\nNotify.java\ninterface Notify {\n public void onreturn(Person msg, Integer id);\n public void onthrow(Throwable ex, Integer id);\n}\n\nNotifyImpl.java\n\nclass NotifyImpl implements Notify {\n public Map ret = new HashMap();\n public Map errors = new HashMap();\n public void onreturn(Person msg, Integer id) {\n System.out.println(\"onreturn:\" + msg);\n ret.put(id, msg);\n }\n public void onthrow(Throwable ex, Integer id) {\n errors.put(id, ex);\n }\n}\n\n(5) 服务消费者Callback接口及实现\nconsumer.xml\n\n\n \n\n\n\ncallback与async功能正交分解:\n\nasync=true,表示结果是否马上返回. \nonreturn 表示是否需要回调. \n\n组合情况:(async=false 默认)\n\n异步回调模式:async=true onreturn=\"xxx\" \n同步回调模式:async=false onreturn=\"xxx\" \n异步无回调 :async=true \n同步无回调 :async=false \n\n\n(6) TEST CASE\nTest.java\nIDemoService demoService = (IDemoService) context.getBean(\"demoService\");\nNofifyImpl notify = (NofifyImpl) context.getBean(\"demoCallback\");\nint requestId = 2;\nPerson ret = demoService.get(requestId);\nAssert.assertEquals(null, ret);\n//for Test:只是用来说明callback正常被调用,业务具体实现自行决定.\nfor (int i = 0; i \n"},"demos/本地存根.html":{"url":"demos/本地存根.html","title":"4.26 本地存根","keywords":"","body":"\n远程服务后,客户端通常只剩下接口,而实现全在服务器端,但提供方有些时候想在客户端也执行部分逻辑,比如:做ThreadLocal缓存,提前验证参数,调用失败后伪造容错数据等等,此时就需要在API中带上Stub,客户端生成Proxy实例,会把Proxy通过构造函数传给Stub,然后把Stub暴露组给用户,Stub可以决定要不要去调Proxy。\nStub必须有可传入Proxy的构造函数。\n\n\n\n\n或\n\n\napi.jar:\ncom.foo.BarService\ncom.foo.BarServiceStub // 在API旁边放一个Stub实现,它实现BarService接口,并有一个传入远程BarService实例的构造函数\n\npackage com.foo;\npublic class BarServiceStub implements BarService {\n\n private final BarService barService;\n\n // 构造函数传入真正的远程代理对象\n public (BarService barService) {\n this.barService = barService;\n }\n\n public String sayHello(String name) {\n // 此代码在客户端执行\n // 你可以在客户端做ThreadLocal本地缓存,或预先验证参数是否合法,等等\n try {\n return barService.sayHello(name);\n } catch (Exception e) {\n // 你可以容错,可以做任何AOP拦截事项\n return \"容错数据\";\n }\n }\n}\n\n"},"demos/本地伪装.html":{"url":"demos/本地伪装.html","title":"4.27 本地伪装","keywords":"","body":"\nMock通常用于服务降级,比如某验权服务,当服务提供方全部挂掉后,客户端不抛出异常,而是通过Mock数据返回授权失败。\nMock是Stub的一个子集,便于服务提供方在客户端执行容错逻辑,因经常需要在出现RpcException(比如网络失败,超时等)时进行容错,而在出现业务异常(比如登录用户名密码错误)时不需要容错,如果用Stub,可能就需要捕获并依赖RpcException类,而用Mock就可以不依赖RpcException,因为它的约定就是只有出现RpcException时才执行。\n\n\n\n或\n\n\napi.jar:\ncom.foo.BarService\ncom.foo.BarServiceMock // 在API旁边放一个Mock实现,它实现BarService接口,并有一个无参构造函数\n\npackage com.foo;\npublic class BarServiceMock implements BarService {\n\n public String sayHello(String name) {\n // 你可以伪造容错数据,此方法只在出现RpcException时被执行\n return \"容错数据\";\n }\n}\n\n如果服务的消费方经常需要try-catch捕获异常,如:\nOffer offer = null;\ntry {\n offer = offerService.findOffer(offerId);\n} catch (RpcException e) {\n logger.error(e);\n}\n\n请考虑改为Mock实现,并在Mock中return null。\n如果只是想简单的忽略异常,在2.0.11以上版本可用:\n\n\n"},"demos/延迟暴露.html":{"url":"demos/延迟暴露.html","title":"4.28 延迟暴露","keywords":"","body":"\n如果你的服务需要warmup时间,比如初始化缓存,等待相关资源就位等,可以使用delay进行延迟暴露。\n\n延迟5秒暴露服务\n\n\n延迟到Spring初始化完成后,再暴露服务:(基于Spring的ContextRefreshedEvent事件触发暴露)\n\n\n\nSpring2.x初始化死锁问题\n!在Spring解析到时,就已经向外暴露了服务,而Spring还在接着初始化其它Bean。!如果这时有请求进来,并且服务的实现类里有调用applicationContext.getBean()的用法。\n!1. 请求线程的applicationContext.getBean()调用,先同步singletonObjects判断Bean是否存在,不存在就同步beanDefinitionMap进行初始化,并再次同步singletonObjects写入Bean实例缓存。2. 而Spring初始化线程,因不需要判断Bean的存在,直接同步beanDefinitionMap进行初始化,并同步singletonObjects写入Bean实例缓存。 \n这样就导致getBean线程,先锁singletonObjects,再锁beanDefinitionMap,再次锁singletonObjects。而Spring初始化线程,先锁beanDefinitionMap,再锁singletonObjects。反向锁导致线程死锁,不能提供服务,启动不了。 \n**规避办法\n\n强烈建议不要在服务的实现类中有applicationContext.getBean()的调用,全部采用IoC注入的方式使用Spring的Bean。\n如果实在要调getBean(),可以将Dubbo的配置放在Spring的最后加载。\n如果不想依赖配置顺序,可以使用 ,使Dubbo在Spring容器初始化完后,再暴露服务。\n如果大量使用getBean(),相当于已经把Spring退化为工厂模式在用,可以将Dubbo的服务隔离单独的Spring容器。\n\n\n"},"demos/并发控制.html":{"url":"demos/并发控制.html","title":"4.29 并发控制","keywords":"","body":"限制com.foo.BarService的每个方法,服务器端并发执行(或占用线程池线程数)不能超过10个:\n\n\n限制com.foo.BarService的sayHello方法,服务器端并发执行(或占用线程池线程数)不能超过10个:\n\n \n\n\n限制com.foo.BarService的每个方法,每客户端并发执行(或占用连接的请求数)不能超过10个:\n\n\n或\n\n\n限制com.foo.BarService的sayHello方法,每客户端并发执行(或占用连接的请求数)不能超过10个:\n\n \n\n\n或\n\n \n\n\n如果 和 都配了actives, 优先,参见:配置的覆盖策略。\nLoad Balance 均衡\n配置服务的客户端的loadbalance属性为leastactive,此Loadbalance会调用并发数最小的Provider(Consumer端并发数)。\n\n\n或\n\n\n"},"demos/连接控制.html":{"url":"demos/连接控制.html","title":"4.30 连接控制","keywords":"","body":"限制服务器端接受的连接不能超过10个:(因为连接在Server上,所以配置在Provider上)\n\n\n\n\n限制客户端服务使用连接连接数:(如果是长连接,比如Dubbo协议,connections表示该服务对每个提供者建立的长连接数)\n\n\n或\n\n\n如果 和 都配了connections, 优先,参见:配置的覆盖策略\n"},"demos/延迟连接.html":{"url":"demos/延迟连接.html","title":"4.31 延迟连接","keywords":"","body":"\n延迟连接,用于减少长连接数,当有调用发起时,再创建长连接。\n只对使用长连接的dubbo协议生效。\n\n\n\n"},"demos/粘滞连接.html":{"url":"demos/粘滞连接.html","title":"4.32 粘滞连接","keywords":"","body":"\n粘滞连接用于有状态服务,尽可能让客户端总是向同一提供者发起调用,除非该提供者挂了,再连另一台。\n粘滞连接将自动开启延迟连接,以减少长连接数, 参见:延迟连接\n\n\n\n"},"demos/令牌验证.html":{"url":"demos/令牌验证.html","title":"4.33 令牌验证","keywords":"","body":"\n\n防止消费者绕过注册中心访问提供者\n在注册中心控制权限,以决定要不要下发令牌给消费者\n注册中心可灵活改变授权方式,而不需修改或升级提供者\n\n可以全局设置开启令牌验证\n\n\n\n\n\n\n也可在服务级别设置:\n\n\n\n\n\n\n还可在协议级别设置:\n\n\n\n\n\n\n"},"demos/路由规则.html":{"url":"demos/路由规则.html","title":"4.34 路由规则","keywords":"","body":"\n2.2.0以上版本支持,\n路由规则扩展点:路由扩展\n\n向注册中心写入路由规则:(通常由监控中心或治理中心的页面完成)\nRegistryFactory registryFactory = ExtensionLoader.getExtensionLoader(RegistryFactory.class).getAdaptiveExtension();\nRegistry registry = registryFactory.getRegistry(URL.valueOf(\"zookeeper://10.20.153.10:2181\"));\nregistry.register(URL.valueOf(\"condition://0.0.0.0/com.foo.BarService?category=routers&dynamic=false&rule=\" + URL.encode(\"http://10.20.160.198/wiki/display/dubbo/host = 10.20.153.10 => host = 10.20.153.11\") + \"));\n\n其中:\n\ncondition://\n表示路由规则的类型,支持条件路由规则和脚本路由规则,可扩展,必填。\n0.0.0.0\n表示对所有IP地址生效,如果只想对某个IP的生效,请填入具体IP,必填。\ncom.foo.BarService\n表示只对指定服务生效,必填。\ncategory=routers\n表示该数据为动态配置类型,必填。\ndynamic=false\n表示该数据为持久数据,当注册方退出时,数据依然保存在注册中心,必填。\nenabled=true\n覆盖规则是否生效,可不填,缺省生效。\nforce=false\n当路由结果为空时,是否强制执行,如果不强制执行,路由结果为空的路由规则将自动失效,可不填,缺省为flase。\nruntime=false\n是否在每次调用时执行路由规则,否则只在提供者地址列表变更时预先执行并缓存结果,调用时直接从缓存中获取路由结果。\n如果用了参数路由,必须设为true,需要注意设置会影响调用的性能,可不填,缺省为flase。\npriority=1\n路由规则的优先级,用于排序,优先级越大越靠前执行,可不填,缺省为0。\nrule=URL.encode(\"host = 10.20.153.10 => host = 10.20.153.11\")\n表示路由规则的内容,必填。\n\n条件路由规则\n基于条件表达式的路由规则,如:host = 10.20.153.10 => host = 10.20.153.11\n规则:\n\n\"=>\"之前的为消费者匹配条件,所有参数和消费者的URL进行对比,当消费者满足匹配条件时,对该消费者执行后面的过滤规则。\n\"=>\"之后为提供者地址列表的过滤条件,所有参数和提供者的URL进行对比,消费者最终只拿到过滤后的地址列表。\n如果匹配条件为空,表示对所有消费方应用,如:=> host != 10.20.153.11\n如果过滤条件为空,表示禁止访问,如:host = 10.20.153.10 =>\n\n表达式:\n\n参数支持:\n服务调用信息,如:method, argument 等 (暂不支持参数路由)\nURL本身的字段,如:protocol, host, port 等\n以及URL上的所有参数,如:application, organization 等\n\n\n条件支持:\n等号 = 表示\"匹配\",如:host = 10.20.153.10\n不等号 != 表示\"不匹配\",如:host != 10.20.153.10\n\n\n值支持:\n以逗号 , 分隔多个值,如:host != 10.20.153.10,10.20.153.11\n以星号 * 结尾,表示通配,如:host != 10.20.*\n以美元符 $ 开头,表示引用消费者参数,如:host = $host\n\n\n\n示例:\n\n排除预发布机:\n => host != 172.22.3.91\n\n白名单:\n 注意:一个服务只能有一条白名单规则,否则两条规则交叉,就都被筛选掉了) \n host != 10.20.153.10,10.20.153.11 =>\n\n黑名单:\n host = 10.20.153.10,10.20.153.11 =>\n\n服务寄宿在应用上,只暴露一部分的机器,防止整个集群挂掉:\n => host = 172.22.3.1*,172.22.3.2*\n\n为重要应用提供额外的机器:\n application != kylin => host != 172.22.3.95,172.22.3.96\n\n读写分离:\n method = find*,list*,get*,is* => host = 172.22.3.94,172.22.3.95,172.22.3.96\n method != find*,list*,get*,is* => host = 172.22.3.97,172.22.3.98\n\n前后台分离:\n application = bops => host = 172.22.3.91,172.22.3.92,172.22.3.93\n application != bops => host = 172.22.3.94,172.22.3.95,172.22.3.96\n\n隔离不同机房网段:\n host != 172.22.3.* => host != 172.22.3.*\n\n提供者与消费者部署在同集群内,本机只访问本机的服务:\n => host = $host\n\n\n脚本路由规则\n\n支持JDK脚本引擎的所有脚本,比如:javascript, jruby, groovy 等,通过 type=javascript 参数设置脚本类型,缺省为javascript。\n脚本没有沙箱约束,可执行任意代码,存在后门风险\n\n\"script://0.0.0.0/com.foo.BarService?category=routers&dynamic=false&rule=\" + URL.encode(\"function route(invokers) { ... } (invokers)\")\n基于脚本引擎的路由规则,如:\nfunction route(invokers) {\n var result = new java.util.ArrayList(invokers.size());\n for (i = 0; i \n"},"demos/配置规则.html":{"url":"demos/配置规则.html","title":"4.35 配置规则","keywords":"","body":"\n2.2.0 以上版本支持\n\n向注册中心写入动态配置覆盖规则:(通常由监控中心或治理中心的页面完成)\nRegistryFactory registryFactory = ExtensionLoader.getExtensionLoader(RegistryFactory.class).getAdaptiveExtension();\nRegistry registry = registryFactory.getRegistry(URL.valueOf(\"zookeeper://10.20.153.10:2181\"));\nregistry.register(URL.valueOf(\"override://0.0.0.0/com.foo.BarService?category=configurators&dynamic=false&application=foo&timeout=1000\"));\n\n其中:\n\noverride:// 表示数据采用覆盖方式,支持override和absent,可扩展,必填。\n0.0.0.0 表示对所有IP地址生效,如果只想覆盖某个IP的数据,请填入具体IP,必填。\ncom.foo.BarService 表示只对指定服务生效,必填。\ncategory=configurators 表示该数据为动态配置类型,必填。\ndynamic=false 表示该数据为持久数据,当注册方退出时,数据依然保存在注册中心,必填。\nenabled=true 覆盖规则是否生效,可不填,缺省生效。\napplication=foo 表示只对指定应用生效,可不填,表示对所有应用生效。\ntimeout=1000 表示将满足以上条件的timeout参数的值覆盖为1000。如果想覆盖其它参数,直接加在override的URL参数上。\n\n示例:\n\n禁用提供者:(通常用于临时踢除某台提供者机器,相似的,禁止消费者访问请使用路由规则)\n override://10.20.153.10/com.foo.BarService?category=configurators&dynamic=false&disbaled=true\n\n调整权重:(通常用于容量评估,缺省权重为100)\n override://10.20.153.10/com.foo.BarService?category=configurators&dynamic=false&weight=200\n\n调整负载均衡策略:(缺省负载均衡策略为random)\n override://10.20.153.10/com.foo.BarService?category=configurators&dynamic=false&loadbalance=leastactive\n\n服务降级:(通常用于临时屏蔽某个出错的非关键服务)\n override://0.0.0.0/com.foo.BarService?category=configurators&dynamic=false&application=foo&mock=force:return+null\n\n\n"},"demos/服务降级.html":{"url":"demos/服务降级.html","title":"4.36 服务降级","keywords":"","body":"\n2.2.0以上版本支持,\n参见:配置规则\n\n向注册中心写入动态配置覆盖规则:(通过由监控中心或治理中心的页面完成)\n\nRegistryFactory registryFactory = ExtensionLoader.getExtensionLoader(RegistryFactory.class).getAdaptiveExtension();\nRegistry registry = registryFactory.getRegistry(URL.valueOf(\"zookeeper://10.20.153.10:2181\"));\nregistry.register(URL.valueOf(\"override://0.0.0.0/com.foo.BarService?category=configurators&dynamic=false&application=foo&mock=force:return+null\"));\n\n其中:\nmock=force:return+null\n\n\n表示消费方对该服务的方法调用都直接返回null值,不发起远程调用。\n屏蔽不重要服务不可用时对调用方的影响。\n\n还可以改为:\nmock=fail:return+null\n\n\n表示消费方对该服务的方法调用在失败后,再返回null值,不抛异常。\n容忍不重要服务不稳定时对调用方的影响。\n\n"},"demos/优雅停机.html":{"url":"demos/优雅停机.html","title":"4.37 优雅停机","keywords":"","body":"\nDubbo是通过JDK的ShutdownHook来完成优雅停机的,所以如果用户使用\"kill -9 PID\"等强制关闭指令,是不会执行优雅停机的,只有通过\"kill PID\"时,才会执行。\n\n原理\n服务提供方\n\n停止时,先标记为不接收新请求,新请求过来时直接报错,让客户端重试其它机器。\n然后,检测线程池中的线程是否正在运行,如果有,等待所有线程执行完成,除非超时,则强制关闭。\n\n服务消费方\n\n停止时,不再发起新的调用请求,所有新的调用在客户端即报错。\n然后,检测有没有请求的响应还没有返回,等待响应返回,除非超时,则强制关闭。\n\n设置优雅停机超时时间,缺省超时时间是10秒:(超时则强制关闭)\n\n\n \n\n\n如果ShutdownHook不能生效,可以自行调用:\nProtocolConfig.destroyAll();\n\n"},"demos/主机绑定.html":{"url":"demos/主机绑定.html","title":"4.38 主机绑定","keywords":"","body":"缺省主机IP查找顺序:\n\n通过LocalHost.getLocalHost()获取本机地址。\n如果是127.*等loopback地址,则扫描各网卡,获取网卡IP。\n\n注册的地址如果获取不正确,比如需要注册公网地址,可以:\n\n可以在/etc/hosts中加入:机器名 公网IP,比如:\n test1 205.182.23.201\n\n在dubbo.xml中加入主机地址的配置:\n \n\n\n或在dubbo.properties中加入主机地址的配置:\n dubbo.protocol.host=205.182.23.201\n\n\n缺省主机端口与协议相关:\n\ndubbo: 20880\nrmi: 1099\nhttp: 80\nhessian: 80\nwebservice: 80\nmemcached: 11211\nredis: 6379\n\n主机端口配置:\n\n在dubbo.xml中加入主机地址的配置:\n \n\n\n或在dubbo.properties中加入主机地址的配置:\n dubbo.protocol.dubbo.port=20880\n\n\n"},"demos/日志适配.html":{"url":"demos/日志适配.html","title":"4.39 日志适配","keywords":"","body":"\n2.2.1以上版本支持 \n扩展点:日志适配扩展\n\n缺省自动查找:\n\nlog4j\nslf4j\njcl\njdk\n\n可以通过以下方式配置日志输出策略\njava -Ddubbo.application.logger=log4j\n\ndubbo.properties\ndubbo.application.logger=log4j\ndubbo.xml\n\n\n"},"demos/访问日志.html":{"url":"demos/访问日志.html","title":"4.40 访问日志","keywords":"","body":"\n如果你想记录每一次请求信息,可开启访问日志,类似于apache的访问日志。\n此日志量比较大,请注意磁盘容量。\n\n将访问日志输出到当前应用的log4j日志:\n\n\n将访问日志输出到指定文件:\n\n\n"},"demos/服务容器.html":{"url":"demos/服务容器.html","title":"4.41 服务容器","keywords":"","body":"\n服务容器是一个standalone的启动程序,因为后台服务不需要Tomcat或JBoss等Web容器的功能,如果硬要用Web容器去加载服务提供方,增加复杂性,也浪费资源。\n服务容器只是一个简单的Main方法,并加载一个简单的Spring容器,用于暴露服务。\n服务容器的加载内容可以扩展,内置了spring, jetty, log4j等加载,可通过Container扩展点进行扩展,参见:Container。配置配在java命令-D参数或者dubbo.properties中\n\nSpring Container\n\n自动加载 META-INF/spring 目录下的所有 Spring 配置。\n配置spring配置加载位置:dubbo.spring.config=classpath*:META-INF/spring/*.xml\n\nJetty Container\n\n启动一个内嵌Jetty,用于汇报状态。\n配置:\ndubbo.jetty.port=8080 ----配置jetty启动端口\ndubbo.jetty.directory=/foo/bar ----配置可通过jetty直接访问的目录,用于存放静态文件\ndubbo.jetty.page=log,status,system ----配置显示的页面,缺省加载所有页面\n\n\n\nLog4j Container\n\n自动配置log4j的配置,在多进程启动时,自动给日志文件按进程分目录。\n配置:\ndubbo.log4j.file=/foo/bar.log ----配置日志文件路径\ndubbo.log4j.level=WARN ----配置日志级别\ndubbo.log4j.subdirectory=20880 ----配置日志子目录,用于多进程启动,避免冲突\n\n\n\n容器启动\n如:(缺省只加载spring)\njava com.alibaba.dubbo.container.Main\n\n或:(通过main函数参数传入要加载的容器)\njava com.alibaba.dubbo.container.Main spring jetty log4j\n\n或:(通过JVM启动参数传入要加载的容器)\njava com.alibaba.dubbo.container.Main -Ddubbo.container=spring,jetty,log4j\n\n或:(通过classpath下的dubbo.properties配置传入要加载的容器)\ndubbo.properties\ndubbo.container=spring,jetty,log4j\n"},"demos/ReferenceConfig缓存.html":{"url":"demos/ReferenceConfig缓存.html","title":"4.42 Reference Config缓存","keywords":"","body":"ReferenceConfig实例很重,封装了与注册中心的连接以及与提供者的连接,需要缓存,否则重复生成ReferenceConfig可能造成性能问题并且会有内存和连接泄漏。API方式编程时,容易忽略此问题。\nDubbo 2.4.0+版本,提供了简单的工具类ReferenceConfigCache用于缓存ReferenceConfig实例。\n使用方式如下:\nReferenceConfig reference = new ReferenceConfig();\nreference.setInterface(XxxService.class);\nreference.setVersion(\"1.0.0\");\n......\n\nReferenceConfigCache cache = ReferenceConfigCache.getCache();\nXxxService xxxService = cache.get(reference); // cache.get方法中会Cache Reference对象,并且调用ReferenceConfig.get方法启动ReferenceConfig\n// 注意! Cache会持有ReferenceConfig,不要在外部再调用ReferenceConfig的destroy方法,导致Cache内的ReferenceConfig失效!\n\n// 使用xxxService对象\nxxxService.sayHello();\n\n消除Cache中的ReferenceConfig,销毁ReferenceConfig并释放对应的资源。\nReferenceConfigCache cache = ReferenceConfigCache.getCache();\ncache.destroy(reference);\n\n缺省ReferenceConfigCache把相同服务Group、接口、版本的ReferenceConfig认为是相同,缓存一份。即以服务Group、接口、版本为缓存的Key。\n可以修改这个策略,在ReferenceConfigCache.getCache时,传一个KeyGenerator。详见ReferenceConfigCache类的方法。\nKeyGenerator keyGenerator = new ...\n\nReferenceConfigCache cache = ReferenceConfigCache.getCache(keyGenerator );\n\n"},"demos/分布式事务.html":{"url":"demos/分布式事务.html","title":"4.43 分布式事务","keywords":"","body":"\n基于JTA/XA规范实现。\n暂未实现。\n\n两阶段提交:\n\n"},"reference-apiconf/api.html":{"url":"reference-apiconf/api.html","title":"5 API参考手册","keywords":"","body":"\n Dubbo的常规功能,都保持零侵入,但有些功能不得不用API侵入才能实现。 \n Dubbo中除这里声明以外的接口或类,都是内部接口或扩展接口,普通用户请不要直接依赖,否则升级版本可能出现不兼容。\n\nAPI汇总如下: \n配置API\ncom.alibaba.dubbo.config.ServiceConfig\ncom.alibaba.dubbo.config.ReferenceConfig\ncom.alibaba.dubbo.config.ProtocolConfig\ncom.alibaba.dubbo.config.RegistryConfig\ncom.alibaba.dubbo.config.MonitorConfig\ncom.alibaba.dubbo.config.ApplicationConfig\ncom.alibaba.dubbo.config.ModuleConfig\ncom.alibaba.dubbo.config.ProviderConfig\ncom.alibaba.dubbo.config.ConsumerConfig\ncom.alibaba.dubbo.config.MethodConfig\ncom.alibaba.dubbo.config.ArgumentConfig\n详细参见:API配置 \n注解API\ncom.alibaba.dubbo.config.annotation.Service\ncom.alibaba.dubbo.config.annotation.Reference\n详细参见:注解配置\n模型API\ncom.alibaba.dubbo.common.URL\ncom.alibaba.dubbo.rpc.RpcException\n上下文API\ncom.alibaba.dubbo.rpc.RpcContext\n详细参见:上下文信息 & 对方地址 & 隐式传参 & 异步调用\n服务API\ncom.alibaba.dubbo.rpc.service.GenericService\ncom.alibaba.dubbo.rpc.service.GenericException\n详细参见:泛化引用 & 泛化实现\ncom.alibaba.dubbo.rpc.service.EchoService\n详细参见:回声测试\n"},"reference-xmlconf/introduction.html":{"url":"reference-xmlconf/introduction.html","title":"5 schema配置参考手册","keywords":"","body":"\n这里以Xml Config为准,列举所有配置项,其它配置方式,请参见相应转换关系:Properties Config,Annotation Config,API Config\n注意:只有group,interface,version是服务的匹配条件,三者决定是不是同一个服务,其它配置项均为调优和治理参数。\n\n所有配置项分为三大类,参见下表中的\"作用\"一列。\n\n服务发现:表示该配置项用于服务的注册与发现,目的是让消费方找到提供方。\n服务治理:表示该配置项用于治理服务间的关系,或为开发测试提供便利条件。\n性能调优:表示该配置项用于调优性能,不同的选项对性能会产生影响。\n所有配置最终都将转换为URL表示,并由服务提供方生成,经注册中心传递给消费方,各属性对应URL的参数,参见配置项一览表中的\"对应URL参数\"列。\n\nURL格式: \n\nprotocol://username:password@host:port/path?key=value&key=value\n\nSchema: http://code.alibabatech.com/schema/dubbo/dubbo.xsd\n"},"reference-xmlconf/dubbo-service.html":{"url":"reference-xmlconf/dubbo-service.html","title":"5.1 dubbo:service","keywords":"","body":"服务提供者暴露服务配置:配置类:com.alibaba.dubbo.config.ServiceConfig\n\n\n\n标签\n属性\n对应URL参数\n类型\n是否必填\n缺省值\n作用\n描述\n兼容性\n\n\n\n\n\ninterface\n\nclass\n必填\n\n服务发现\n服务接口名\n1.0.0以上版本\n\n\n\nref\n\nobject\n必填\n\n服务发现\n服务对象实现引用\n1.0.0以上版本\n\n\n\nversion\nversion\nstring\n可选\n0.0.0\n服务发现\n服务版本,建议使用两位数字版本,如:1.0,通常在接口不兼容时版本号才需要升级\n1.0.0以上版本\n\n\n\ngroup\ngroup\nstring\n可选\n\n服务发现\n服务分组,当一个接口有多个实现,可以用分组区分\n1.0.7以上版本\n\n\n\npath\n\nstring\n可选\n缺省为接口名\n服务发现\n服务路径 (注意:1.0不支持自定义路径,总是使用接口名,如果有1.0调2.0,配置服务路径可能不兼容)\n1.0.12以上版本\n\n\n\ndelay\ndelay\nint\n可选\n0\n性能调优\n延迟注册服务时间(毫秒) ,设为-1时,表示延迟到Spring容器初始化完成时暴露服务\n1.0.14以上版本\n\n\n\ntimeout\ntimeout\nint\n可选\n1000\n性能调优\n远程服务调用超时时间(毫秒)\n2.0.0以上版本\n\n\n\nretries\nretries\nint\n可选\n2\n性能调优\n远程服务调用重试次数,不包括第一次调用,不需要重试请设为0\n2.0.0以上版本\n\n\n\nconnections\nconnections\nint\n可选\n100\n性能调优\n对每个提供者的最大连接数,rmi、http、hessian等短连接协议表示限制连接数,dubbo等长连接协表示建立的长连接个数\n2.0.0以上版本\n\n\n\nloadbalance\nloadbalance\nstring\n可选\nrandom\n性能调优\n负载均衡策略,可选值:random,roundrobin,leastactive,分别表示:随机,轮循,最少活跃调用\n2.0.0以上版本\n\n\n\nasync\nasync\nboolean\n可选\nfalse\n性能调优\n是否缺省异步执行,不可靠异步,只是忽略返回值,不阻塞执行线程\n2.0.0以上版本\n\n\n\nstub\nstub\nclass/boolean\n可选\nfalse\n服务治理\n设为true,表示使用缺省代理类名,即:接口名 + Local后缀,服务接口客户端本地代理类名,用于在客户端执行本地逻辑,如本地缓存等,该本地代理类的构造函数必须允许传入远程代理对象,构造函数如:public XxxServiceLocal(XxxService xxxService)\n2.0.0以上版本\n\n\n\nmock\nmock\nclass/boolean\n可选\nfalse\n服务治理\n设为true,表示使用缺省Mock类名,即:接口名 + Mock后缀,服务接口调用失败Mock实现类,该Mock类必须有一个无参构造函数,与Local的区别在于,Local总是被执行,而Mock只在出现非业务异常(比如超时,网络异常等)时执行,Local在远程调用之前执行,Mock在远程调用后执行。\n2.0.0以上版本\n\n\n\ntoken\ntoken\nstring/boolean\n可选\nfalse\n服务治理\n令牌验证,为空表示不开启,如果为true,表示随机生成动态令牌,否则使用静态令牌,令牌的作用是防止消费者绕过注册中心直接访问,保证注册中心的授权功能有效,如果使用点对点调用,需关闭令牌功能\n2.0.0以上版本\n\n\n\nregistry\n\nstring\n可选\n缺省向所有registry注册\n配置关联\n向指定注册中心注册,在多个注册中心时使用,值为的id属性,多个注册中心ID用逗号分隔,如果不想将该服务注册到任何registry,可将值设为N/A\n2.0.0以上版本\n\n\n\nprovider\n\nstring\n可选\n缺使用第一个provider配置\n配置关联\n指定provider,值为的id属性\n2.0.0以上版本\n\n\n\ndeprecated\ndeprecated\nboolean\n可选\nfalse\n服务治理\n服务是否过时,如果设为true,消费方引用时将打印服务过时警告error日志\n2.0.5以上版本\n\n\n\ndynamic\ndynamic\nboolean\n可选\ntrue\n服务治理\n服务是否动态注册,如果设为false,注册后将显示后disable状态,需人工启用,并且服务提供者停止时,也不会自动取消册,需人工禁用。\n2.0.5以上版本\n\n\n\naccesslog\naccesslog\nstring/boolean\n可选\nfalse\n服务治理\n设为true,将向logger中输出访问日志,也可填写访问日志文件路径,直接把访问日志输出到指定文件\n2.0.5以上版本\n\n\n\nowner\nowner\nstring\n可选\n\n服务治理\n服务负责人,用于服务治理,请填写负责人公司邮箱前缀\n2.0.5以上版本\n\n\n\ndocument\ndocument\nstring\n可选\n\n服务治理\n服务文档URL\n2.0.5以上版本\n\n\n\nweight\nweight\nint\n可选\n\n性能调优\n服务权重\n2.0.5以上版本\n\n\n\nexecutes\nexecutes\nint\n可选\n0\n性能调优\n服务提供者每服务每方法最大可并行执行请求数\n2.0.5以上版本\n\n\n\nactives\nactives\nint\n可选\n0\n性能调优\n每服务消费者每服务每方法最大并发调用数\n2.0.5以上版本\n\n\n\nproxy\nproxy\nstring\n可选\njavassist\n性能调优\n生成动态代理方式,可选:jdk/javassist\n2.0.5以上版本\n\n\n\ncluster\ncluster\nstring\n可选\nfailover\n性能调优\n集群方式,可选:failover/failfast/failsafe/failback/forking\n2.0.5以上版本\n\n\n\nfilter\nservice.filter\nstring\n可选\ndefault\n性能调优\n服务提供方远程调用过程拦截器名称,多个名称用逗号分隔\n2.0.5以上版本\n\n\n\nlistener\nexporter.listener\nstring\n可选\ndefault\n性能调优\n服务提供方导出服务监听器名称,多个名称用逗号分隔\n\n\n\n\nprotocol\n\nstring\n可选\n\n配置关联\n使用指定的协议暴露服务,在多协议时使用,值为的id属性,多个协议ID用逗号分隔\n2.0.5以上版本\n\n\n\nlayer\nlayer\nstring\n可选\n\n服务治理\n服务提供者所在的分层。如:biz、dao、intl:web、china:acton。\n2.0.7以上版本\n\n\n\nregister\nregister\nboolean\n可选\ntrue\n服务治理\n该协议的服务是否注册到注册中心\n2.0.8以上版本\n\n\n\n"},"reference-xmlconf/dubbo-reference.html":{"url":"reference-xmlconf/dubbo-reference.html","title":"5.2 dubbo:reference","keywords":"","body":"服务消费者引用服务配置:配置类:com.alibaba.dubbo.config.ReferenceConfig\n\n\n\n签\n属性\n对应URL参数\n类型\n是否必填\n缺省值\n作用\n描述\n兼容性\n\n\n\n\n\nid\n\nstring\n必填\n\n配置关联\n服务引用BeanId\n1.0.0以上版本\n\n\n\ninterface\n\nclass\n必填\n\n服务发现\n服务接口名\n1.0.0以上版本\n\n\n\nversion\nversion\nstring\n可选\n\n服务发现\n服务版本,与服务提供者的版本一致\n1.0.0以上版本\n\n\n\ngroup\ngroup\nstring\n可选\n\n服务发现\n服务分组,当一个接口有多个实现,可以用分组区分,必需和服务提供方一致\n1.0.7以上版本\n\n\n\ntimeout\ntimeout\nlong\n可选\n缺省使用 的timeout\n性能调优\n服务方法调用超时时间(毫秒)\n1.0.5以上版本\n\n\n\nretries\nretries\nint\n可选\n缺省使用 的retries\n性能调优\n远程服务调用重试次数,不包括第一次调用,不需要重试请设为0\n2.0.0以上版本\n\n\n\nconnections\nconnections\nint\n可选\n缺省使用 的connections\n性能调优\n对每个提供者的最大连接数,rmi、http、hessian等短连接协议表示限制连接数,dubbo等长连接协表示建立的长连接个数\n2.0.0以上版本\n\n\n\nloadbalance\nloadbalance\nstring\n可选\n缺省使用 的loadbalance\n性能调优\n负载均衡策略,可选值:random,roundrobin,leastactive,分别表示:随机,轮循,最少活跃调用\n2.0.0以上版本\n\n\n\nasync\nasync\nboolean\n可选\n缺省使用\n的async\n性能调优\n是否异步执行,不可靠异步,只是忽略返回值,不阻塞执行线程\n2.0.0以上版本\n\n\n\ngeneric\ngeneric\nboolean\n可选\n缺省使用\n的generic\n服务治理\n是否缺省泛化接口,如果为泛化接口,将返回GenericService\n2.0.0以上版本\n\n\n\ncheck\ncheck\nboolean\n可选\n缺省使用\n的check\n服务治理\n启动时检查提供者是否存在,true报错,false忽略\n2.0.0以上版本\n\n\n\nurl\n\n\nstring\n可选\n\n服务治理\n点对点直连服务提供者地址,将绕过注册中心\n1.0.6以上版本\n\n\n\nstub\nstub\nclass/boolean\n可选\n\n服务治理\n服务接口客户端本地代理类名,用于在客户端执行本地逻辑,如本地缓存等,该本地代理类的构造函数必须允许传入远程代理对象,构造函数如:public XxxServiceLocal(XxxService xxxService)\n2.0.0以上版本\n\n\n\nmock\nmock\nclass/boolean\n可选\n\n服务治理\n服务接口调用失败Mock实现类名,该Mock类必须有一个无参构造函数,与Local的区别在于,Local总是被执行,而Mock只在出现非业务异常(比如超时,网络异常等)时执行,Local在远程调用之前执行,Mock在远程调用后执行。\nDubbo1.0.13及其以上版本支持\n\n\n\ncache\ncache\nstring/boolean\n可选\n\n服务治理\n以调用参数为key,缓存返回结果,可选:lru, threadlocal, jcache等\nDubbo2.1.0及其以上版本支持\n\n\n\nvalidation\nvalidation\nboolean\n可选\n\n服务治理\n是否启用JSR303标准注解验证,如果启用,将对方法参数上的注解进行校验\nDubbo2.1.0及其以上版本支持\n\n\n\nproxy\nproxy\nboolean\n可选\njavassist\n性能调优\n选择动态代理实现策略,可选:javassist, jdk\n2.0.2以上版本\n\n\n\nclient\nclient\nstring\n可选\n\n性能调优\n客户端传输类型设置,如Dubbo协议的netty或mina。\nDubbo2.0.0以上版本支持\n\n\n\nregistry\n\nstring\n可选\n缺省将从所有注册中心获服务列表后合并结果\n配置关联\n从指定注册中心注册获取服务列表,在多个注册中心时使用,值为\n的id属性,多个注册中心ID用逗号分隔\n2.0.0以上版本\n\n\n\nowner\nowner\nstring\n可选\n\n服务治理\n调用服务负责人,用于服务治理,请填写负责人公司邮箱前缀\n2.0.5以上版本\n\n\n\nactives\nactives\nint\n可选\n0\n性能调优\n每服务消费者每服务每方法最大并发调用数\n2.0.5以上版本\n\n\n\ncluster\ncluster\nstring\n可选\nfailover\n性能调优\n集群方式,可选:failover/failfast/failsafe/failback/forking\n2.0.5以上版本\n\n\n\nfilter\nreference.filter\nstring\n可选\ndefault\n性能调优\n服务消费方远程调用过程拦截器名称,多个名称用逗号分隔\n2.0.5以上版本\n\n\n\nlistener\ninvoker.listener\nstring\n可选\ndefault\n性能调优\n服务消费方引用服务监听器名称,多个名称用逗号分隔\n2.0.5以上版本\n\n\n\nlayer\nlayer\nstring\n可选\n\n服务治理\n服务调用者所在的分层。如:biz、dao、intl:web、china:acton。\n2.0.7以上版本\n\n\n\ninit\ninit\nboolean\n可选\nfalse\n性能调优\n是否在afterPropertiesSet()时饥饿初始化引用,否则等到有人注入或引用该实例时再初始化。\n2.0.10以上版本\n\n\n\nprotocol\nprotocol\nstring\n可选\n\n服力治理\n只调用指定协议的服务提供方,其它协议忽略。\n2.2.0以上版本\n\n\n\n"},"reference-xmlconf/dubbo-protocol.html":{"url":"reference-xmlconf/dubbo-protocol.html","title":"5.3 dubbo:protocol","keywords":"","body":"服务提供者协议配置:配置类:com.alibaba.dubbo.config.ProtocolConfig说明:如果需要支持多协议,可以声明多个|标签,并在|中通过protocol属性指定使用的协议。\n\n\n\n标签\n属性\n对应URL参数\n类型\n是否必填\n缺省值\n作用\n描述\n兼容性\n\n\n\n\n\nid\n\nstring\n可选\ndubbo\n配置关联\n协议BeanId,可以在\n中引用此ID,如果ID不填,缺省和name属性值一样,重复则在name后加序号。\n2.0.5以上版本\n\n\n\nname\n\n\nstring\n必填\ndubbo\n性能调优\n协议名称\n2.0.5以上版本\n\n\n\nport\n\n\nint\n可选\ndubbo协议缺省端口为20880,rmi协议缺省端口为1099,http和hessian协议缺省端口为80 如果配置为-1 或者 没有配置port,则会分配一个没有被占用的端口。Dubbo 2.4.0+,分配的端口在协议缺省端口的基础上增长,确保端口段可控。\n服务发现\n服务端口\n2.0.5以上版本\n\n\n\nhost\n\n\nstring\n可选\n自动查找本机IP\n服务发现\n-服务主机名,多网卡选择或指定VIP及域名时使用,为空则自动查找本机IP,-建议不要配置,让Dubbo自动获取本机IP\n2.0.5以上版本\n\n\n\nthreadpool\nthreadpool\nstring\n可选\nfixed\n性能调优\n线程池类型,可选:fixed/cached\n2.0.5以上版本\n\n\n\nthreads\nthreads\nint\n可选\n100\n性能调优\n服务线程池大小(固定大小)\n2.0.5以上版本\n\n\n\niothreads\nthreads\nint\n可选\ncpu个数+1\n性能调优\nio线程池大小(固定大小)\n2.0.5以上版本\n\n\n\naccepts\naccepts\nint\n可选\n0\n性能调优\n服务提供方最大可接受连接数\n2.0.5以上版本\n\n\n\npayload\npayload\nint\n可选\n88388608(=8M)\n性能调优\n请求及响应数据包大小限制,单位:字节\n2.0.5以上版本\n\n\n\ncodec\ncodec\nstring\n可选\ndubbo\n性能调优\n协议编码方式\n2.0.5以上版本\n\n\n\nserialization\nserialization\nstring\n可选\ndubbo协议缺省为hessian2,rmi协议缺省为java,http协议缺省为json\n性能调优\n协议序列化方式,当协议支持多种序列化方式时使用,比如:dubbo协议的dubbo,hessian2,java,compactedjava,以及http协议的json等\n2.0.5以上版本\n\n\n\naccesslog\naccesslog\nstring/boolean\n可选\n\n服务治理\n设为true,将向logger中输出访问日志,也可填写访问日志文件路径,直接把访问日志输出到指定文件\n2.0.5以上版本\n\n\n\npath\n\n\nstring\n可选\n\n服务发现\n提供者上下文路径,为服务path的前缀\n2.0.5以上版本\n\n\n\ntransporter\ntransporter\nstring\n可选\ndubbo协议缺省为netty\n性能调优\n协议的服务端和客户端实现类型,比如:dubbo协议的mina,netty等,可以分拆为server和client配置\n2.0.5以上版本\n\n\n\nserver\nserver\nstring\n可选\ndubbo协议缺省为netty,http协议缺省为servlet\n性能调优\n协议的服务器端实现类型,比如:dubbo协议的mina,netty等,http协议的jetty,servlet等\n2.0.5以上版本\n\n\n\nclient\nclient\nstring\n可选\ndubbo协议缺省为netty\n性能调优\n协议的客户端实现类型,比如:dubbo协议的mina,netty等\n2.0.5以上版本\n\n\n\ndispatcher\ndispatcher\nstring\n可选\ndubbo协议缺省为all\n性能调优\n协议的消息派发方式,用于指定线程模型,比如:dubbo协议的all, direct, message, execution, connection等\n2.1.0以上版本\n\n\n\nqueues\nqueues\nint\n可选\n0\n性能调优\n线程池队列大小,当线程池满时,排队等待执行的队列大小,建议不要设置,当线程程池时应立即失败,重试其它服务提供机器,而不是排队,除非有特殊需求。\n2.0.5以上版本\n\n\n\ncharset\ncharset\nstring\n可选\nUTF-8\n性能调优\n序列化编码\n2.0.5以上版本\n\n\n\nbuffer\nbuffer\nint\n可选\n8192\n性能调优\n网络读写缓冲区大小\n2.0.5以上版本\n\n\n\nheartbeat\nheartbeat\nint\n可选\n0\n性能调优\n心跳间隔,对于长连接,当物理层断开时,比如拔网线,TCP的FIN消息来不及发送,对方收不到断开事件,此时需要心跳来帮助检查连接是否已断开\n2.0.10以上版本\n\n\n\ntelnet\ntelnet\nstring\n可选\n\n服务治理\n所支持的telnet命令,多个命令用逗号分隔\n2.0.5以上版本\n\n\n\nregister\nregister\nboolean\n可选\ntrue\n服务治理\n该协议的服务是否注册到注册中心\n2.0.8以上版本\n\n\n\ncontextpath\ncontextpath\nString\n可选\n缺省为空串\n服务治理\n\n2.0.6以上版本\n\n\n\n"},"reference-xmlconf/dubbo-registry.html":{"url":"reference-xmlconf/dubbo-registry.html","title":"5.4 dubbo:registry","keywords":"","body":"注册中心配置:配置类:com.alibaba.dubbo.config.RegistryConfig说明:如果有多个不同的注册中心,可以声明多个|标签,并在|或|的registry属性指定使用的注册中心。\n\n\n\n标签\n属性\n对应URL参数\n类型\n是否必填\n缺省值\n作用\n描述\n兼容性\n\n\n\n\n\nid\n\nstring\n可选\n\n配置关联\n注册中心引用BeanId,可以在\n或\n中引用此ID\n1.0.16以上版本\n\n\n\naddress\n\n\nstring\n必填\n\n服务发现\n注册中心服务器地址,如果地址没有端口缺省为9090,同一集群内的多个地址用逗号分隔,如:ip:port,ip:port,不同集群的注册中心,请配置多个\n标签\n1.0.16以上版本\n\n\n\nprotocol\n\n\nstring\n可选\ndubbo\n服务发现\n注同中心地址协议,支持dubbo, http, local三种协议,分别表示,dubbo地址,http地址,本地注册中心\n2.0.0以上版本\n\n\n\nport\n\n\nint\n可选\n9090\n服务发现\n注册中心缺省端口,当address没有带端口时使用此端口做为缺省值\n2.0.0以上版本\n\n\n\nusername\n\n\nstring\n可选\n\n服务治理\n登录注册中心用户名,如果注册中心不需要验证可不填\n2.0.0以上版本\n\n\n\npassword\n\n\nstring\n可选\n\n服务治理\n登录注册中心密码,如果注册中心不需要验证可不填\n2.0.0以上版本\n\n\n\ntransport\nregistry.transporter\nstring\n可选\nnetty\n性能调优\n网络传输方式,可选mina,netty\n2.0.0以上版本\n\n\n\ntimeout\nregistry.timeout\nint\n可选\n5000\n性能调优\n注册中心请求超时时间(毫秒)\n2.0.0以上版本\n\n\n\nsession\nregistry.session\nint\n可选\n60000\n性能调优\n注册中心会话超时时间(毫秒),用于检测提供者非正常断线后的脏数据,比如用心跳检测的实现,此时间就是心跳间隔,不同注册中心实现不一样。\n2.1.0以上版本\n\n\n\nfile\nregistry.file\nstring\n可选\n\n服务治理\n使用文件缓存注册中心地址列表及服务提供者列表,应用重启时将基于此文件恢复,注意:两个注册中心不能使用同一文件存储\n2.0.0以上版本\n\n\n\nwait\nregistry.wait\nint\n可选\n0\n性能调优\n停止时等待通知完成时间(毫秒)\n2.0.0以上版本\n\n\n\ncheck\ncheck\nboolean\n可选\ntrue\n服务治理\n注册中心不存在时,是否报错\n2.0.0以上版本\n\n\n\nregister\nregister\nboolean\n可选\ntrue\n服务治理\n是否向此注册中心注册服务,如果设为false,将只订阅,不注册\n2.0.5以上版本\n\n\n\nsubscribe\nsubscribe\nboolean\n可选\ntrue\n服务治理\n是否向此注册中心订阅服务,如果设为false,将只注册,不订阅\n2.0.5以上版本\n\n\n\ndynamic\ndynamic\nboolean\n可选\ntrue\n服务治理\n服务是否动态注册,如果设为false,注册后将显示后disable状态,需人工启用,并且服务提供者停止时,也不会自动取消册,需人工禁用。\n2.0.5以上版本\n\n\n\n"},"reference-xmlconf/dubbo-monitor.html":{"url":"reference-xmlconf/dubbo-monitor.html","title":"5.5 dubbo:monitor","keywords":"","body":"监控中心配置:配置类:com.alibaba.dubbo.config.MonitorConfig\n\n\n\n标签\n属性\n对应URL参数\n类型\n是否必填\n缺省值\n作用\n描述\n兼容性\n\n\n\n\n\n>\nprotocol\nprotocol\nstring\n可选\ndubbo\n服务治理\n监控中心协议,如果为protocol=\"registry\",表示从注册中心发现监控中心地址,否则直连监控中心。\n2.0.9以上版本\n\n\n\n>\naddress\n\n\n>\nstring\n可选\nN/A\n服务治理\n直连监控中心服务器地址,address=\"10.20.130.230:12080\"\n1.0.16以上版本\n\n\n\n"},"reference-xmlconf/dubbo-application.html":{"url":"reference-xmlconf/dubbo-application.html","title":"5.6 dubbo:application","keywords":"","body":"应用信息配置:配置类:com.alibaba.dubbo.config.ApplicationConfig\n\n\n\n标签\n属性\n对应URL参数\n类型\n是否必填\n缺省值\n作用\n描述\n兼容性\n\n\n\n\n\nname\napplication\nstring\n必填\n\n服务治理\n当前应用名称,用于注册中心计算应用间依赖关系,注意:消费者和提供者应用名不要一样,此参数不是匹配条件,你当前项目叫什么名字就填什么,和提供者消费者角色无关,比如:kylin应用调用了morgan应用的服务,则kylin项目配成kylin,morgan项目配成morgan,可能kylin也提供其它服务给别人使用,但kylin项目永远配成kylin,这样注册中心将显示kylin依赖于morgan\n1.0.16以上版本\n\n\n\nversion\napplication.version\nstring\n可选\n\n服务治理\n当前应用的版本\n2.2.0以上版本\n\n\n\nowner\nowner\nstring\n可选\n\n服务治理\n应用负责人,用于服务治理,请填写负责人公司邮箱前缀\n2.0.5以上版本\n\n\n\norganization\norganization\nstring\n可选\n\n服务治理\n组织名称(BU或部门),用于注册中心区分服务来源,此配置项建议不要使用autoconfig,直接写死在配置中,比如china,intl,itu,crm,asc,dw,aliexpress等\n2.0.0以上版本\n\n\n\narchitecture\narchitecture\nstring\n可选\n\n服务治理\n用于服务分层对应的架构。如,intl、china。不同的架构使用不同的分层。\n2.0.7以上版本\n\n\n\nenvironment\nenvironment\nstring\n可选\n\n服务治理\n应用环境,如:develop/test/product,不同环境使用不同的缺省值,以及作为只用于开发测试功能的限制条件\n2.0.0以上版本\n\n\n\ncompiler\ncompiler\nstring\n可选\njavassist\n性能优化\nJava字节码编译器,用于动态类的生成,可选:jdk或javassist\n2.1.0以上版本\n\n\n\nlogger\nlogger\nstring\n可选\nslf4j\n性能优化\n日志输出方式,可选:slf4j,jcl,log4j,jdk\n2.2.0以上版本\n\n\n\n"},"reference-xmlconf/dubbo-module.html":{"url":"reference-xmlconf/dubbo-module.html","title":"5.7 dubbo:module","keywords":"","body":"模块信息配置:\n配置类:com.alibaba.dubbo.config.ModuleConfig\n\n\n\n标签\n属性\n对应URL参数\n类型\n是否必填\n缺省值\n作用\n描述\n兼容性\n\n\n\n\n\nname\nmodule\nstring\n必填\n\n服务治理\n当前模块名称,用于注册中心计算模块间依赖关系\n2.2.0以上版本\n\n\n\nversion\nmodule.version\nstring\n可选\n\n服务治理\n当前模块的版本\n2.2.0以上版本\n\n\n\nowner\nowner\nstring\n可选\n\n服务治理\n模块负责人,用于服务治理,请填写负责人公司邮箱前缀\n2.2.0以上版本\n\n\n\norganization\norganization\nstring\n可选\n\n服务治理\n组织名称(BU或部门),用于注册中心区分服务来源,此配置项建议不要使用autoconfig,直接写死在配置中,比如china,intl,itu,crm,asc,dw,aliexpress等\n2.2.0以上版本\n\n\n\n"},"reference-xmlconf/dubbo-provider.html":{"url":"reference-xmlconf/dubbo-provider.html","title":"5.8 dubbo:provider","keywords":"","body":"服务提供者缺省值配置:配置类:com.alibaba.dubbo.config.ProviderConfig说明:该标签为|和|标签的缺省值设置。\n\n\n\n标签\n属性\n对应URL参数\n类型\n是否必填\n缺省值\n作用\n描述\n兼容性\n\n\n\n\n\nid\n\nstring\n可选\ndubbo\n配置关联\n协议BeanId,可以在\n中引用此ID\n1.0.16以上版本\n\n\n\nprotocol\n\n\nstring\n可选\ndubbo\n性能调优\n协议名称\n1.0.16以上版本\n\n\n\nhost\n\n\nstring\n可选\n自动查找本机IP\n服务发现\n服务主机名,多网卡选择或指定VIP及域名时使用,为空则自动查找本机IP,建议不要配置,让Dubbo自动获取本机IP\n1.0.16以上版本\n\n\n\nthreads\nthreads\nint\n可选\n100\n性能调优\n服务线程池大小(固定大小)\n1.0.16以上版本\n\n\n\npayload\npayload\nint\n可选\n88388608(=8M)\n性能调优\n请求及响应数据包大小限制,单位:字节\n2.0.0以上版本\n\n\n\npath\n\n\nstring\n可选\n\n服务发现\n提供者上下文路径,为服务path的前缀\n2.0.0以上版本\n\n\n\nserver\nserver\nstring\n可选\ndubbo协议缺省为netty,http协议缺省为servlet\n性能调优\n协议的服务器端实现类型,比如:dubbo协议的mina,netty等,http协议的jetty,servlet等\n2.0.0以上版本\n\n\n\nclient\nclient\nstring\n可选\ndubbo协议缺省为netty\n性能调优\n协议的客户端实现类型,比如:dubbo协议的mina,netty等\n2.0.0以上版本\n\n\n\ncodec\ncodec\nstring\n可选\ndubbo\n性能调优\n协议编码方式\n2.0.0以上版本\n\n\n\nserialization\nserialization\nstring\n可选\ndubbo协议缺省为hessian2,rmi协议缺省为java,http协议缺省为json\n性能调优\n协议序列化方式,当协议支持多种序列化方式时使用,比如:dubbo协议的dubbo,hessian2,java,compactedjava,以及http协议的json,xml等\n2.0.5以上版本\n\n\n\ndefault\n\nboolean\n可选\nfalse\n配置关联\n是否为缺省协议,用于多协议\n1.0.16以上版本\n\n\n\nfilter\nservice.filter\nstring\n可选\n\n性能调优\n服务提供方远程调用过程拦截器名称,多个名称用逗号分隔\n2.0.5以上版本\n\n\n\nlistener\nexporter.listener\nstring\n可选\n\n性能调优\n服务提供方导出服务监听器名称,多个名称用逗号分隔\n2.0.5以上版本\n\n\n\nthreadpool\nthreadpool\nstring\n可选\nfixed\n性能调优\n线程池类型,可选:fixed/cached\n2.0.5以上版本\n\n\n\naccepts\naccepts\nint\n可选\n0\n性能调优\n服务提供者最大可接受连接数\n2.0.5以上版本\n\n\n\nversion\nversion\nstring\n可选\n0.0.0\n服务发现\n服务版本,建议使用两位数字版本,如:1.0,通常在接口不兼容时版本号才需要升级\n2.0.5以上版本\n\n\n\ngroup\ngroup\nstring\n可选\n\n服务发现\n服务分组,当一个接口有多个实现,可以用分组区分\n2.0.5以上版本\n\n\n\ndelay\ndelay\nint\n可选\n0\n性能调优\n延迟注册服务时间(毫秒)- ,设为-1时,表示延迟到Spring容器初始化完成时暴露服务\n2.0.5以上版本\n\n\n\ntimeout\ndefault.timeout\nint\n可选\n1000\n性能调优\n远程服务调用超时时间(毫秒)\n2.0.5以上版本\n\n\n\nretries\ndefault.retries\nint\n可选\n2\n性能调优\n远程服务调用重试次数,不包括第一次调用,不需要重试请设为0\n2.0.5以上版本\n\n\n\nconnections\ndefault.connections\nint\n可选\n0\n性能调优\n对每个提供者的最大连接数,rmi、http、hessian等短连接协议表示限制连接数,dubbo等长连接协表示建立的长连接个数\n2.0.5以上版本\n\n\n\nloadbalance\ndefault.loadbalance\nstring\n可选\nrandom\n性能调优\n负载均衡策略,可选值:random,roundrobin,leastactive,分别表示:随机,轮循,最少活跃调用\n2.0.5以上版本\n\n\n\nasync\ndefault.async\nboolean\n可选\nfalse\n性能调优\n是否缺省异步执行,不可靠异步,只是忽略返回值,不阻塞执行线程\n2.0.5以上版本\n\n\n\nstub\nstub\nboolean\n可选\nfalse\n服务治理\n设为true,表示使用缺省代理类名,即:接口名 + Local后缀。\n2.0.5以上版本\n\n\n\nmock\nmock\nboolean\n可选\nfalse\n服务治理\n设为true,表示使用缺省Mock类名,即:接口名 + Mock后缀。\n2.0.5以上版本\n\n\n\ntoken\ntoken\nboolean\n可选\nfalse\n服务治理\n令牌验证,为空表示不开启,如果为true,表示随机生成动态令牌\n2.0.5以上版本\n\n\n\nregistry\nregistry\nstring\n可选\n缺省向所有registry注册\n配置关联\n向指定注册中心注册,在多个注册中心时使用,值为\n的id属性,多个注册中心ID用逗号分隔,如果不想将该服务注册到任何registry,可将值设为N/A\n2.0.5以上版本\n\n\n\ndynamic\ndynamic\nboolean\n可选\ntrue\n服务治理\n服务是否动态注册,如果设为false,注册后将显示后disable状态,需人工启用,并且服务提供者停止时,也不会自动取消册,需人工禁用。\n2.0.5以上版本\n\n\n\naccesslog\naccesslog\nstring/boolean\n可选\nfalse\n服务治理\n设为true,将向logger中输出访问日志,也可填写访问日志文件路径,直接把访问日志输出到指定文件\n2.0.5以上版本\n\n\n\nowner\nowner\nstring\n可选\n\n服务治理\n服务负责人,用于服务治理,请填写负责人公司邮箱前缀\n2.0.5以上版本\n\n\n\ndocument\ndocument\nstring\n可选\n\n服务治理\n服务文档URL\n2.0.5以上版本\n\n\n\nweight\nweight\nint\n可选\n\n性能调优\n服务权重\n2.0.5以上版本\n\n\n\nexecutes\nexecutes\nint\n可选\n0\n性能调优\n服务提供者每服务每方法最大可并行执行请求数\n2.0.5以上版本\n\n\n\nactives\ndefault.actives\nint\n可选\n0\n性能调优\n每服务消费者每服务每方法最大并发调用数\n2.0.5以上版本\n\n\n\nproxy\nproxy\nstring\n可选\njavassist\n性能调优\n生成动态代理方式,可选:jdk/javassist\n2.0.5以上版本\n\n\n\ncluster\ndefault.cluster\nstring\n可选\nfailover\n性能调优\n集群方式,可选:failover/failfast/failsafe/failback/forking\n2.0.5以上版本\n\n\n\ndeprecated\ndeprecated\nboolean\n可选\nfalse\n服务治理\n服务是否过时,如果设为true,消费方引用时将打印服务过时警告error日志\n2.0.5以上版本\n\n\n\nqueues\nqueues\nint\n可选\n0\n性能调优\n线程池队列大小,当线程池满时,排队等待执行的队列大小,建议不要设置,当线程程池时应立即失败,重试其它服务提供机器,而不是排队,除非有特殊需求。\n2.0.5以上版本\n\n\n\ncharset\ncharset\nstring\n可选\nUTF-8\n性能调优\n序列化编码\n2.0.5以上版本\n\n\n\nbuffer\nbuffer\nint\n可选\n8192\n性能调优\n网络读写缓冲区大小\n2.0.5以上版本\n\n\n\niothreads\niothreads\nint\n可选\nCPU + 1\n性能调优\nIO线程池,接收网络读写中断,以及序列化和反序列化,不处理业务,业务线程池参见threads配置,此线程池和CPU相关,不建议配置。\n2.0.5以上版本\n\n\n\ntelnet\ntelnet\nstring\n可选\n\n服务治理\n所支持的telnet命令,多个命令用逗号分隔\n2.0.5以上版本\n\n\n\ncontextpath\ncontextpath\nString\n可选\n缺省为空串\n服务治理\n\n2.0.6以上版本\n\n\n\nlayer\nlayer\nstring\n可选\n\n服务治理\n服务提供者所在的分层。如:biz、dao、intl:web、china:acton。\n2.0.7以上版本\n\n\n\n"},"reference-xmlconf/dubbo-consumer.html":{"url":"reference-xmlconf/dubbo-consumer.html","title":"5.9 dubbo:consumer","keywords":"","body":"服务消费者缺省值配置:配置类:com.alibaba.dubbo.config.ConsumerConfig说明:该标签为|标签的缺省值设置。\n\n\n\n标签\n属性\n对应URL参数\n类型\n是否必填\n缺省值\n作用\n描述\n兼容性\n\n\n\n\n\ntimeout\ndefault.timeout\nint\n可选\n1000\n性能调优\n远程服务调用超时时间(毫秒)\n1.0.16以上版本\n\n\n\nretries\ndefault.retries\nint\n可选\n2\n性能调优\n远程服务调用重试次数,不包括第一次调用,不需要重试请设为0\n1.0.16以上版本\n\n\n\nloadbalance\ndefault.loadbalance\nstring\n可选\nrandom\n性能调优\n负载均衡策略,可选值:random,roundrobin,leastactive,分别表示:随机,轮循,最少活跃调用\n1.0.16以上版本\n\n\n\nasync\ndefault.async\nboolean\n可选\nfalse\n性能调优\n是否缺省异步执行,不可靠异步,只是忽略返回值,不阻塞执行线程\n2.0.0以上版本\n\n\n\nconnections\ndefault.connections\nint\n可选\n100\n性能调优\n每个服务对每个提供者的最大连接数,rmi、http、hessian等短连接协议支持此配置,dubbo协议长连接不支持此配置\n1.0.16以上版本\n\n\n\ngeneric\ngeneric\nboolean\n可选\nfalse\n服务治理\n是否缺省泛化接口,如果为泛化接口,将返回GenericService\n2.0.0以上版本\n\n\n\ncheck\ncheck\nboolean\n可选\ntrue\n服务治理\n启动时检查提供者是否存在,true报错,false忽略\n1.0.16以上版本\n\n\n\nproxy\nproxy\nstring\n可选\njavassist\n性能调优\n生成动态代理方式,可选:jdk/javassist\n2.0.5以上版本\n\n\n\nowner\nowner\nstring\n可选\n\n服务治理\n调用服务负责人,用于服务治理,请填写负责人公司邮箱前缀\n2.0.5以上版本\n\n\n\nactives\ndefault.actives\nint\n可选\n0\n性能调优\n每服务消费者每服务每方法最大并发调用数\n2.0.5以上版本\n\n\n\ncluster\ndefault.cluster\nstring\n可选\nfailover\n性能调优\n集群方式,可选:failover/failfast/failsafe/failback/forking\n2.0.5以上版本\n\n\n\nfilter\nreference.filter\nstring\n可选\n\n性能调优\n服务消费方远程调用过程拦截器名称,多个名称用逗号分隔\n2.0.5以上版本\n\n\n\nlistener\ninvoker.listener\nstring\n可选\n\n性能调优\n服务消费方引用服务监听器名称,多个名称用逗号分隔\n2.0.5以上版本\n\n\n\nregistry\n\nstring\n可选\n缺省向所有registry注册\n配置关联\n向指定注册中心注册,在多个注册中心时使用,值为\n的id属性,多个注册中心ID用逗号分隔,如果不想将该服务注册到任何registry,可将值设为N/A\n2.0.5以上版本\n\n\n\nlayer\nlayer\nstring\n可选\n\n服务治理\n服务调用者所在的分层。如:biz、dao、intl:web、china:acton。\n2.0.7以上版本\n\n\n\ninit\ninit\nboolean\n可选\nfalse\n性能调优\n是否在afterPropertiesSet()时饥饿初始化引用,否则等到有人注入或引用该实例时再初始化。\n2.0.10以上版本\n\n\n\ncache\ncache\nstring/boolean\n可选\n\n服务治理\n以调用参数为key,缓存返回结果,可选:lru, threadlocal, jcache等\nDubbo2.1.0及其以上版本支持\n\n\n\nvalidation\nvalidation\nboolean\n可选\n\n服务治理\n是否启用JSR303标准注解验证,如果启用,将对方法参数上的注解进行校验\nDubbo2.1.0及其以上版本支持\n\n\n\n"},"reference-xmlconf/dubbo-method.html":{"url":"reference-xmlconf/dubbo-method.html","title":"5.10 dubbo:method","keywords":"","body":"方法级配置:配置类:com.alibaba.dubbo.config.MethodConfig说明:该标签为|或|的子标签,用于控制到方法级,\n\n\n\n标签\n属性\n对应URL参数\n类型\n是否必填\n缺省值\n作用\n描述\n兼容性\n\n\n\n\n\nname\n\nstring\n必填\n\n标识\n方法名\n1.0.8以上版本\n\n\n\ntimeout\n\n.timeout\nint\n可选\n缺省为的timeout\n性能调优\n方法调用超时时间(毫秒)\n1.0.8以上版本\n\n\n\nretries\n\n.retries\nint\n可选\n缺省为\n的retries\n性能调优\n远程服务调用重试次数,不包括第一次调用,不需要重试请设为0\n2.0.0以上版本\n\n\n\nloadbalance\n\n.loadbalance\nstring\n可选\n缺省为的loadbalance\n性能调优\n负载均衡策略,可选值:random,roundrobin,leastactive,分别表示:随机,轮循,最少活跃调用\n2.0.0以上版本\n\n\n\nasync\n\n.async\nboolean\n可选\n缺省为\n的async\n性能调优\n是否异步执行,不可靠异步,只是忽略返回值,不阻塞执行线程\n1.0.9以上版本\n\n\n\nsent\n\n.sent\nboolean\n可选\ntrue\n性能调优\n异步调用时,标记sent=true时,表示网络已发出数据\n2.0.6以上版本\n\n\n\nactives\n\n.actives\nint\n可选\n0\n性能调优\n每服务消费者最大并发调用限制\n2.0.5以上版本\n\n\n\nexecutes\n\n.executes\nint\n可选\n0\n性能调优\n每服务每方法最大使用线程数限制- -,此属性只在\n作为\n子标签时有效\n2.0.5以上版本\n\n\n\ndeprecated\n\n.deprecated\nboolean\n可选\nfalse\n服务治理\n服务方法是否过时,此属性只在\n作为\n子标签时有效\n2.0.5以上版本\n\n\n\nsticky\n\n.sticky\nboolean\n可选\nfalse\n服务治理\n设置true 该接口上的所有方法使用同一个provider.如果需要更复杂的规则,请使用用路由\n2.0.6以上版本\n\n\n\nreturn\n\n.return\nboolean\n可选\ntrue\n性能调优\n方法调用是否需要返回值,async设置为true时才生效,如果设置为true,则返回future,或回调onreturn等方法,如果设置为false,则请求发送成功后直接返回Null\n2.0.6以上版本\n\n\n\noninvoke\nattribute属性,不在URL中体现\nString\n可选\n\n性能调优\n方法执行前拦截\n2.0.6以上版本\n\n\n\nonreturn\nattribute属性,不在URL中体现\nString\n可选\n\n性能调优\n方法执行返回后拦截\n2.0.6以上版本\n\n\n\nonthrow\nattribute属性,不在URL中体现\nString\n可选\n\n性能调优\n方法执行有异常拦截\n2.0.6以上版本\n\n\n\ncache\n\n.cache\nstring/boolean\n可选\n\n服务治理\n以调用参数为key,缓存返回结果,可选:lru, threadlocal, jcache等\nDubbo2.1.0及其以上版本支持\n\n\n\nvalidation\n\n.validation\nboolean\n可选\n\n服务治理\n是否启用JSR303标准注解验证,如果启用,将对方法参数上的注解进行校验\nDubbo2.1.0及其以上版本支持\n\n\n\n比如: \n\n \n\n\n"},"reference-xmlconf/dubbo-argument.html":{"url":"reference-xmlconf/dubbo-argument.html","title":"5.11 dubbo:argument","keywords":"","body":"方法参数配置:配置类:com.alibaba.dubbo.config.ArgumentConfig说明:该标签为|的子标签,用于方法参数的特征描述,比如: \n|<dubbo:method name=\"findXxx\" timeout=\"3000\" retries=\"2\">\n |<dubbo:argument index=\"0\" callback=\"true\" />\n|<dubbo:method>\n\n\n\n\n标签\n属性\n对应URL参数\n类型\n是否必填\n缺省值\n作用\n描述\n兼容性\n\n\n\n\n\nindex\n\nint\n必填\n\n标识\n方法名\n2.0.6以上版本\n\n\n\ntype\n\nString\n与index二选一\n\n标识\n通过参数类型查找参数的index\n2.0.6以上版本\n\n\n\ncallback\n\n\n.retries\nboolean\n可选\n\n服务治理\n参数是否为callback接口,如果为callback,服务提供方将生成反向代理,可以从服务提供方反向调用消费方,通常用于事件推送.\n2.0.6以上版本\n\n\n\n"},"reference-xmlconf/dubbo-parameter.html":{"url":"reference-xmlconf/dubbo-parameter.html","title":"5.12 dubbo:parameter","keywords":"","body":"选项参数配置:配置类:java.util.Map说明:该标签为|或|或|或|或|的子标签,用于配置自定义参数,该配置项将作为扩展点设置自定义参数使用。\n\n\n\n标签\n属性\n对应URL参数\n类型\n是否必填\n缺省值\n作用\n描述\n兼容性\n\n\n\n\n\nkey\nkey\nstring\n必填\n\n服务治理\n路由参数键\n2.0.0以上版本\n\n\n\nvalue\nvalue\nstring\n必填\n\n服务治理\n路由参数值\n2.0.0以上版本\n\n\n\n比如: \n\n \n\n\n也可以: \n\n\n"},"reference-protocol/introduction.html":{"url":"reference-protocol/introduction.html","title":"6 协议参考手册","keywords":"","body":"\n推荐使用Dubbo协议\n性能测试报告 各协议的性能情况,请参见:性能测试报告\n\n"},"reference-protocol/dubbo.html":{"url":"reference-protocol/dubbo.html","title":"6.1 dubbo://","keywords":"","body":"\nDubbo缺省协议采用单一长连接和NIO异步通讯,适合于小数据量大并发的服务调用,以及服务消费者机器数远大于服务提供者机器数的情况。\nDubbo缺省协议不适合传送大数据量的服务,比如传文件,传视频等,除非请求量很低。\n\n\n\n设置默认协议:\n\n\n设置服务协议:\n\n\n多端口:\n\n\n\n\nTransporter: mina, netty, grizzy\nSerialization: dubbo, hessian2, java, json\nDispatcher: all, direct, message, execution, connection\nThreadPool: fixed, cached\n\n\nDubbo协议缺省每服务每提供者每消费者使用单一长连接,如果数据量较大,可以使用多个连接。\n\n\n\n\n 或 表示该服务使用JVM共享长连接。(缺省)\n 或 表示该服务使用独立长连接。\n 或 表示该服务使用独立两条长连接。\n\n\n为防止被大量连接撑挂,可在服务提供方限制大接收连接数,以实现服务提供方自我保护。\n\n\n\n缺省协议,使用基于mina1.1.7+hessian3.2.1的tbremoting交互。\n\n连接个数:单连接\n连接方式:长连接\n传输协议:TCP\n传输方式:NIO异步传输\n序列化:Hessian二进制序列化\n适用范围:传入传出参数数据包较小(建议小于100K),消费者比提供者个数多,单一消费者无法压满提供者,尽量不要用dubbo协议传输大文件或超大字符串。\n适用场景:常规远程服务方法调用\n\n为什么要消费者比提供者个数多?\n因dubbo协议采用单一长连接,假设网络为千兆网卡(1024Mbit=128MByte),根据测试经验数据每条连接最多只能压满7MByte(不同的环境可能不一样,供参考),理论上1个服务提供者需要20个服务消费者才能压满网卡。\n为什么不能传大包?\n因dubbo协议采用单一长连接,如果每次请求的数据包大小为500KByte,假设网络为千兆网卡(1024Mbit=128MByte),每条连接最大7MByte(不同的环境可能不一样,供参考),单个服务提供者的TPS(每秒处理事务数)最大为:128MByte / 500KByte = 262。单个消费者调用单个服务提供者的TPS(每秒处理事务数)最大为:7MByte / 500KByte = 14。如果能接受,可以考虑使用,否则网络将成为瓶颈。\n为什么采用异步单一长连接?\n因为服务的现状大都是服务提供者少,通常只有几台机器,而服务的消费者多,可能整个网站都在访问该服务,比如Morgan的提供者只有6台提供者,却有上百台消费者,每天有1.5亿次调用,如果采用常规的hessian服务,服务提供者很容易就被压跨,通过单一连接,保证单一消费者不会压死提供者,长连接,减少连接握手验证等,并使用异步IO,复用线程池,防止C10K问题。\n(1) 约束:\n\n参数及返回值需实现Serializable接口\n参数及返回值不能自定义实现List, Map, Number, Date, Calendar等接口,只能用JDK自带的实现,因为hessian会做特殊处理,自定义实现类中的属性值都会丢失。\nHessian序列化,只传成员属性值和值的类型,不传方法或静态变量,兼容情况:(由吴亚军提供)\n 数据通讯 | 情况 | 结果\n------------- | ------------- | -------------\nA->B | 类A多一种 属性(或者说类B少一种 属性)| 不抛异常,A多的那 个属性的值,B没有, 其他正常\nA->B | 枚举A多一种 枚举(或者说B少一种 枚举),A使用多 出来的枚举进行传输 | 抛异常\nA->B | 枚举A多一种 枚举(或者说B少一种 枚举),A不使用 多出来的枚举进行传输 | 不抛异常,B正常接 收数据\nA->B | A和B的属性 名相同,但类型不相同 | 抛异常\nA->B | serialId 不相同 | 正常传输\n 总结:会抛异常的情况:枚举值一边多一种,一边少一种,正好使用了差别的那种,或者属性名相同,类型不同\n\n\n接口增加方法,对客户端无影响,如果该方法不是客户端需要的,客户端不需要重新部署。输入参数和结果集中增加属性,对客户端无影响,如果客户端并不需要新属性,不用重新部署。\n输入参数和结果集属性名变化,对客户端序列化无影响,但是如果客户端不重新部署,不管输入还是输出,属性名变化的属性值是获取不到的。\n总结:服务器端和客户端对领域对象并不需要完全一致,而是按照最大匹配原则。\n(2) 配置:\ndubbo.properties\ndubbo.service.protocol=dubbo\n\n"},"reference-protocol/rmi.html":{"url":"reference-protocol/rmi.html","title":"6.2 rmi//","keywords":"","body":"\nRMI协议采用JDK标准的java.rmi.*实现,采用阻塞式短连接和JDK标准序列化方式。\n如果正在使用RMI提供服务给外部访问(公司内网环境应该不会有攻击风险),同时应用里依赖了老的common-collections包(dubbo不会依赖这个包,请排查自己的应用有没有使用)的情况下,存在反序列化安全风险。\n请检查应用: \n\n将commons-collections3 请升级到 3.2.2版本 \n将commons-collections4 请升级到 4.1版本新版本的commons-collections解决了该问题\n\n\n如果服务接口继承了java.rmi.Remote接口,可以和原生RMI互操作,即:\n\n提供者用Dubbo的RMI协议暴露服务,消费者直接用标准RMI接口调用,\n或者提供方用标准RMI暴露服务,消费方用Dubbo的RMI协议调用。\n\n如果服务接口没有继承java.rmi.Remote接口\n\n缺省Dubbo将自动生成一个com.xxx.XxxService$Remote的接口,并继承java.rmi.Remote接口,并以此接口暴露服务,\n但如果设置了 ,将不生成$Remote接口,而使用Spring的RmiInvocationHandler接口暴露服务,和Spring兼容。\n\n定义 RMI 协议:\n\n\n设置默认协议:\n\n\n设置服务协议:\n\n\n多端口:\n\n\n\n\n\nSpring 兼容性:\n\n\nJava标准的远程调用协议\n\n连接个数:多连接\n连接方式:短连接\n传输协议:TCP\n传输方式:同步传输\n序列化:Java标准二进制序列化\n适用范围:传入传出参数数据包大小混合,消费者与提供者个数差不多,可传文件。\n适用场景:常规远程服务方法调用,与原生RMI服务互操作\n\n(1) 约束:\n\n参数及返回值需实现Serializable接口\ndubbo配置中的超时时间对rmi无效,需使用java启动参数设置:-Dsun.rmi.transport.tcp.responseTimeout=3000,参见下面的RMI配置\n\n(2) 配置:\ndubbo.properties\ndubbo.service.protocol=rmi\n(3) RMI配置:\njava -Dsun.rmi.transport.tcp.responseTimeout=3000\n\n更多RMI优化参数请查看:\nhttp://download.oracle.com/docs/cd/E17409_01/javase/6/docs/technotes/guides/rmi/sunrmiproperties.html\n"},"reference-protocol/hessian.html":{"url":"reference-protocol/hessian.html","title":"6.3 hessian://","keywords":"","body":"\nHessian协议用于集成Hessian的服务,Hessian底层采用Http通讯,采用Servlet暴露服务,Dubbo缺省内嵌Jetty作为服务器实现。\nHessian 是Caucho开源的一个 RPC 框架,其通讯效率高于WebService和Java自带的序列化。\n\n依赖:\n\n com.caucho\n hessian\n 4.0.7\n\n\n可以和原生Hessian服务互操作,即:\n\n提供者用Dubbo的Hessian协议暴露服务,消费者直接用标准Hessian接口调用,\n或者提供方用标准Hessian暴露服务,消费方用Dubbo的Hessian协议调用。\n\n基于Hessian的远程调用协议。\n\n连接个数:多连接\n连接方式:短连接\n传输协议:HTTP\n传输方式:同步传输\n序列化:Hessian二进制序列化\n适用范围:传入传出参数数据包较大,提供者比消费者个数多,提供者压力较大,可传文件。\n适用场景:页面传输,文件传输,或与原生hessian服务互操作\n\n(1) 约束:\n\n参数及返回值需实现Serializable接口\n参数及返回值不能自定义实现List, Map, Number, Date, Calendar等接口,只能用JDK自带的实现,因为hessian会做特殊处理,自定义实现类中的属性值都会丢失。\n\n(2) 配置:\n定义 hessian 协议:\n\n\n设置默认协议:\n\n\n设置 service 协议:\n\n\n多端口:\n\n\n\n直连:\n\n\n"},"reference-protocol/http.html":{"url":"reference-protocol/http.html","title":"6.4 http://","keywords":"","body":"\n 采用Spring的HttpInvoker实现 \n 2.3.0以上版本支持\n\n基于http表单的远程调用协议。参见:HTTP协议使用说明\n\n连接个数:多连接\n连接方式:短连接\n传输协议:HTTP\n传输方式:同步传输\n序列化:表单序列化\n适用范围:传入传出参数数据包大小混合,提供者比消费者个数多,可用浏览器查看,可用表单或URL传入参数,暂不支持传文件。\n适用场景:需同时给应用程序和浏览器JS使用的服务。\n\n(1) 约束: \n\n参数及返回值需符合Bean规范\n\n(2) 配置:\ndubbo.xml:\n\n\nh4. Jetty Server: (default)\n\n\nh4. Servlet Bridge Server: (recommend)\n\n\nweb.xml:\n\n dubbo\n com.alibaba.dubbo.remoting.http.servlet.DispatcherServlet\n 1\n\n\n dubbo\n /*\n\n\n注意,如果使用servlet派发请求:\n\n协议的端口必须与servlet容器的端口相同,\n协议的上下文路径必须与servlet应用的上下文路径相同。\n\n"},"reference-protocol/webservice.html":{"url":"reference-protocol/webservice.html","title":"6.5 webservice://","keywords":"","body":"\n 2.3.0以上版本支持。 \n 基于CXF的frontend-simple和transports-http实现。 \n CXF是Apache开源的一个RPC框架:http://cxf.apache.org,由Xfire和Celtix合并而来 。 \n\n依赖:\n\n org.apache.cxf\n cxf-rt-frontend-simple\n 2.6.1\n\n\n org.apache.cxf\n cxf-rt-transports-http\n 2.6.1\n\n\n可以和原生WebService服务互操作,即: \n\n提供者用Dubbo的WebService协议暴露服务,消费者直接用标准WebService接口调用,\n或者提供方用标准WebService暴露服务,消费方用Dubbo的WebService协议调用。\n\n基于WebService的远程调用协议: \n\n连接个数:多连接\n连接方式:短连接\n传输协议:HTTP\n传输方式:同步传输\n序列化:SOAP文本序列化\n适用场景:系统集成,跨语言调用。\n\n(1) 约束: \n\n参数及返回值需实现Serializable接口\n参数尽量使用基本类型和POJO。\n\n(2) 配置: \n\nDefine hessian protocol:\n\n\nSet default protocol:\n\n\nSet service protocol:\n\n\n\nMulti port:\n\n\n\nDirectly provider:\n\n\nWSDL:http://10.20.153.10:8080/com.foo.HelloWorld?wsdl\n\nh4. Jetty Server: (default) \n\n\n\nh4. Servlet Bridge Server: (recommend) \n\n\nweb.xml: \n\n dubbo\n com.alibaba.dubbo.remoting.http.servlet.DispatcherServlet\n 1\n\n\n dubbo\n /*\n\n\n注意,如果使用servlet派发请求: \n\n协议的端口必须与servlet容器的端口相同,\n协议的上下文路径必须与servlet应用的上下文路径相同。\n\n"},"reference-protocol/thrift.html":{"url":"reference-protocol/thrift.html","title":"6.6 thrift://","keywords":"","body":"\n2.3.0以上版本支持。\nThrift 是Facebook捐给Apache的一个RPC框架\n当前 dubbo 支持的 thrift 协议是对 thrift 原生协议的扩展,在原生协议的基础上添加了一些额外的头信息,比如service name,magic number等。使用dubbo thrift协议同样需要使用thrift的idl compiler编译生成相应的java代码,后续版本中会在这方面做一些增强。\n\n示例:https://github.com/alibaba/dubbo/tree/master/dubbo-rpc/dubbo-rpc-thrift/src/test/java/com/alibaba/dubbo/rpc/protocol/thrift/examples\n依赖:\n\n org.apache.thrift\n libthrift\n 0.8.0\n\n\n所有服务共用一个端口:(与原生Thrift不兼容)\n\n\nThrift不支持数据类型:null值 (不能在协议中传递null值)\n"},"reference-protocol/memcached.html":{"url":"reference-protocol/memcached.html","title":"6.7 memcached://","keywords":"","body":"\n2.3.0以上版本支持。\nMemcached 是一个高效的KV缓存服务器。\n\n可以通过脚本或监控中心手工填写表单注册memcached服务的地址:\nRegistryFactory registryFactory = ExtensionLoader.getExtensionLoader(RegistryFactory.class).getAdaptiveExtension();\nRegistry registry = registryFactory.getRegistry(URL.valueOf(\"zookeeper://10.20.153.10:2181\"));\nregistry.register(URL.valueOf(\"memcached://10.20.153.11/com.foo.BarService?category=providers&dynamic=false&application=foo&group=member&loadbalance=consistenthash\"));\n\n然后在客户端使用时,不需要感知Memcached的地址:\n\n\n或者,点对点直连:\n\n\n也可以使用自定义接口:\n\n\n方法名建议和memcached的标准方法名相同,即:get(key), set(key, value), delete(key)。\n如果方法名和memcached的标准方法名不相同,则需要配置映射关系:(其中\"p:xxx\"为spring的标准p标签)\n\n\n"},"reference-protocol/redis.html":{"url":"reference-protocol/redis.html","title":"6.8 redis://","keywords":"","body":"\n2.3.0以上版本支持。\nRedis 是一个高效的KV存储服务器。\n\nRegistryFactory registryFactory = ExtensionLoader.getExtensionLoader(RegistryFactory.class).getAdaptiveExtension();\nRegistry registry = registryFactory.getRegistry(URL.valueOf(\"zookeeper://10.20.153.10:2181\"));\nregistry.register(URL.valueOf(\"redis://10.20.153.11/com.foo.BarService?category=providers&dynamic=false&application=foo&group=member&loadbalance=consistenthash\"));\n\n然后在客户端使用时,不需要感知Redis的地址:\n\n\n或者,点对点直连:\n\n\n也可以使用自定义接口:\n\n\n方法名建议和redis的标准方法名相同,即:get(key), set(key, value), delet(key)。\n如果方法名和redis的标准方法名不相同,则需要配置映射关系:(其中\"p:xxx\"为spring的标准p标签)\n\n\n"},"reference-registry/introduction.html":{"url":"reference-registry/introduction.html","title":"7 注册中心参考手册","keywords":"","body":"推荐使用Zookeeper注册中心\n"},"reference-registry/multicast.html":{"url":"reference-registry/multicast.html","title":"7.1 Multicast注册中心","keywords":"","body":"\n不需要启动任何中心节点,只要广播地址一样,就可以互相发现。\n组播受网络结构限制,只适合小规模应用或开发阶段使用。组播地址段: 224.0.0.0 - 239.255.255.255\n\n\n\n提供方启动时广播自己的地址。\n消费方启动时广播订阅请求。\n提供方收到订阅请求时,单播自己的地址给订阅者,如果设置了unicast=false,则广播给订阅者。\n消费方收到提供方地址时,连接该地址进行RPC调用。\n\n\n\n或\n\n\n为了减少广播量,Dubbo缺省使用单播发送提供者地址信息给消费者,如果一个机器上同时启了多个消费者进程,消费者需声明unicast=false,否则只会有一个消费者能收到消息:\n\n\n或\n\n \n\n\n"},"reference-registry/zookeeper.html":{"url":"reference-registry/zookeeper.html","title":"7.2 Zookeeper注册中心","keywords":"","body":"\n建议使用dubbo-2.3.3以上版本的zookeeper注册中心客户端。\nZookeeper说明Zookeeper 是Apacahe Hadoop的子项目,是一个树型的目录服务,支持变更推送,适合作为Dubbo服务的注册中心,工业强度较高,可用于生产环境,并推荐使用。\nZookeeper安装安装方式参见: Zookeeper安装手册,只需搭一个原生的Zookeeper 服务器,并将 Quick Start 中Provider和Consumer里的conf/dubbo.properties中的dubbo.registry.addrss的值改为zookeeper://127.0.0.1:2181即可使用。\n可靠性声明阿里内部并没有采用Zookeeper做为注册中心,而是使用自己实现的基于数据库的注册中心,即:Zookeeper注册中心并没有在阿里内部长时间运行的可靠性保障,此Zookeeper桥接实现只为开源版本提供,其可靠性依赖于Zookeeper本身的可靠性。\n兼容性声明因2.0.8最初设计的zookeeper存储结构不能扩充不同类型的数据,2.0.9版本做了调整,所以不兼容,需全部改用2.0.9版本才行,以后的版本会保持兼容2.0.9。2.2.0版本改为基于zkclient实现,需增加zkclient的依赖包,2.3.0版本增加了基于curator的实现,作为可选实现策略。\n\n\n流程说明:\n\n服务提供者启动时: 向/dubbo/com.foo.BarService/providers目录下写入自己的URL地址。\n服务消费者启动时: 订阅/dubbo/com.foo.BarService/providers目录下的提供者URL地址。并向/dubbo/com.foo.BarService/consumers目录下写入自己的URL地址。\n监控中心启动时: 订阅/dubbo/com.foo.BarService目录下的所有提供者和消费者URL地址。\n\n支持以下功能:\n\n当提供者出现断电等异常停机时,注册中心能自动删除提供者信息。\n当注册中心重启时,能自动恢复注册数据,以及订阅请求。\n当会话过期时,能自动恢复注册数据,以及订阅请求。\n当设置 时,记录失败注册和订阅请求,后台定时重试。\n可通过 设置zookeeper登录信息。\n可通过 设置zookeeper的根节点,不设置将使用无根树。\n支持 * 号通配符 ,可订阅服务的所有分组和所有版本的提供者。\n\n在provider和consumer中增加zookeeper客户端jar包依赖:\n\n org.apache.zookeeper\n zookeeper\n 3.3.3\n\n\n或直接下载:http://repo1.maven.org/maven2/org/apache/zookeeper/zookeeper\n支持zkclient和curator两种Zookeeper客户端实现:\nZKClient Zookeeper Registry\n从2.2.0版本开始缺省为zkclient实现,以提升zookeeper客户端的健状性。ZKClient是Datameer开源的一个Zookeeper客户端实现,开源比较早,参见:https://github.com/sgroschupf/zkclient\n缺省配置:\n\n\n或:\ndubbo.registry.client=zkclient\n\n或:\nzookeeper://10.20.153.10:2181?client=zkclient\n\n需依赖:\n\n com.github.sgroschupf\n zkclient\n 0.1\n\n\n或直接下载:http://repo1.maven.org/maven2/com/github/sgroschupf/zkclient\nCurator Zookeeper Registry\n从2.3.0版本开始支持可选curator实现。Curator 是Netflix开源的一个Zookeeper客户端实现,比较活跃。\n如果需要改为curator实现,请配置:\n\n\n或:\ndubbo.registry.client=curator\n\n或:\nzookeeper://10.20.153.10:2181?client=curator\n\n需依赖:\n\n com.netflix.curator\n curator-framework\n 1.1.10\n\n\n或直接下载:http://repo1.maven.org/maven2/com/netflix/curator/curator-framework\nZookeeper单机配置:\n\n\n或:\n\n\nZookeeper集群配置:\n\n\n\n或:\n\n\n同一Zookeeper,分成多组注册中心:\n\n\n\n"},"reference-registry/redis.html":{"url":"reference-registry/redis.html","title":"7.3 Redis注册中心","keywords":"","body":"\nRedis 是一个高效的KV存储服务器。安装方式参见: Redis安装手册,只需搭一个原生的Redis服务器,并将 Quick Start 中Provider和Consumer里的conf/dubbo.properties中的dubbo.registry.addrss的值改为redis://127.0.0.1:6379即可使用。\n\nRedis过期数据\n通过心跳的方式检测脏数据,服务器时间必须相同,并且对服务器有一定压力。\n可靠性声明\n阿里内部并没有采用Redis做为注册中心,而是使用自己实现的基于数据库的注册中心,即:Redis注册中心并没有在阿里内部长时间运行的可靠性保障,此Redis桥接实现只为开源版本提供,其可靠性依赖于Redis本身的可靠性。\n从2.1.0版本开始支持\n\n数据结构:\n使用Redis的Key/Map结构存储数据\n\n主Key为服务名和类型。\nMap中的Key为URL地址。\nMap中的Value为过期时间,用于判断脏数据,脏数据由监控中心删除。(注意:服务器时间必需同步,否则过期检测会不准确)\n\n使用Redis的Publish/Subscribe事件通知数据变更\n\n通过事件的值区分事件类型:register, unregister, subscribe, unsubscribe。\n普通消费者直接订阅指定服务提供者的Key,只会收到指定服务的register, unregister事件。\n监控中心通过psubscribe功能订阅/dubbo/*,会收到所有服务的所有变更事件。\n\n调用过程:\n\n服务提供方启动时,向Key:/dubbo/com.foo.BarService/providers下,添加当前提供者的地址。\n并向Channel:/dubbo/com.foo.BarService/providers发送register事件。\n服务消费方启动时,从Channel:/dubbo/com.foo.BarService/providers订阅register和unregister事件。\n并向Key:/dubbo/com.foo.BarService/providers下,添加当前消费者的地址。\n服务消费方收到register和unregister事件后,从Key:/dubbo/com.foo.BarService/providers下获取提供者地址列表。\n服务监控中心启动时,从Channel:/dubbo/*订阅register和unregister,以及subscribe和unsubsribe事件。\n服务监控中心收到register和unregister事件后,从Key:/dubbo/com.foo.BarService/providers下获取提供者地址列表。\n服务监控中心收到subscribe和unsubsribe事件后,从Key:/dubbo/com.foo.BarService/consumers下获取消费者地址列表。\n\n选项:\n\n可通过 设置redis中key的前缀,缺省为dubbo。\n可通过 设置redis集群策略,缺省为failover。\nfailover: 只写入和读取任意一台,失败时重试另一台,需要服务器端自行配置数据同步。\nreplicate: 在客户端同时写入所有服务器,只读取单台,服务器端不需要同步,注册中心集群增大,性能压力也会更大。\n\n\n\n配置 redis registry\n\n\n或\n\n\n或\n\n\n或\n\n\n"},"reference-registry/simple.html":{"url":"reference-registry/simple.html","title":"7.4 Simple注册中心","keywords":"","body":"\nDogfooding注册中心本身就是一个普通的Dubbo服务,可以减少第三方依赖,使整体通讯方式一致。\n适用性说明此SimpleRegistryService只是简单实现,不支持集群,可作为自定义注册中心的参考,但不适合直接用于生产环境。\n\nExport simple registry service:\n\n\n\n \n \n\n \n \n\n \n \n \n \n \n\n \n \n\n\n\nReference the simple registry service:\n\n\nOr:\n\n\n\n\n"},"reference-telnet/telnet.html":{"url":"reference-telnet/telnet.html","title":"8 telnet命令参考手册","keywords":"","body":"\n Dubbo2.0.5以上版本服务提供端口支持telnet命令,\n\n使用如:\ntelnet localhost 20880\n\n或者:\necho status | nc -i 1 localhost 20880\n\ntelnet命令可以扩展,参见:扩展参考手册。\nstatus命令所检查的资源也可以扩展,参见:扩展参考手册。\nls\n(list services and methods)\n\nls: 显示服务列表。\nls -l: 显示服务详细信息列表。\nls XxxService: 显示服务的方法列表。\nls -l XxxService: 显示服务的方法详细信息列表。\n\nps\n(print server ports and connections)\n\nps: 显示服务端口列表。\nps -l: 显示服务地址列表。\nps 20880: 显示端口上的连接信息。\nps -l 20880: 显示端口上的连接详细信息。\n\ncd\n(change default service)\n\ncd XxxService: 改变缺省服务,当设置了缺省服务,凡是需要输入服务名作为参数的命令,都可以省略服务参数。\ncd /: 取消缺省服务。\n\npwd\n(print working default service)\n\npwd: 显示当前缺省服务。\n\ntrace\n\ntrace XxxService: 跟踪1次服务任意方法的调用情况。\ntrace XxxService 10: 跟踪10次服务任意方法的调用情况。\ntrace XxxService xxxMethod: 跟踪1次服务方法的调用情况\ntrace XxxService xxxMethod 10: 跟踪10次服务方法的调用情况。\n\ncount\n\ncount XxxService: 统计1次服务任意方法的调用情况。\ncount XxxService 10: 统计10次服务任意方法的调用情况。\ncount XxxService xxxMethod: 统计1次服务方法的调用情况。\ncount XxxService xxxMethod 10: 统计10次服务方法的调用情况。\n\ninvoke\n\ninvoke XxxService.xxxMethod({\"prop\": \"value\"}): 调用服务的方法。\ninvoke xxxMethod({\"prop\": \"value\"}): 调用服务的方法(自动查找包含此方法的服务)。\n\nstatus\n\nstatus: 显示汇总状态,该状态将汇总所有资源的状态,当全部OK时则显示OK,只要有一个ERROR则显示ERROR,只要有一个WARN则显示WARN。\nstatus -l: 显示状态列表。\n\nlog\n2.0.6以上版本支持\n\nlog debug: 修改dubbo logger的日志级别\nlog 100: 查看file logger的最后100字符的日志\n\nhelp\n\nhelp: 显示telnet命帮助信息。\nhelp xxx: 显示xxx命令的详细帮助信息。\n\nclear\n\nclear: 清除屏幕上的内容。\nclear 100: 清除屏幕上的指定行数的内容。\n\nexit\n\nexit: 退出当前telnet命令行。\n\n"},"reference-maven/maven.html":{"url":"reference-maven/maven.html","title":"9 maven插件参考手册","keywords":"","body":"mvn dubbo:registry\n以缺省的9090端口启动一个简易注册中心\n样例:以指定的9099端口启动一个简易注册中心\nmvn dubbo:registry -Dport=9099\n\nmvn dubbo:create\n(尚未发布)\n生成demo服务提供者应用\n样例:生成指定接口和版本的服务提供者应用\nmvn dubbo:create -Dapplication=xxx -Dpackage=com.alibaba.xxx -Dservice=XxxService,YyyService -Dversion=1.0.0\n\n"},"best-practice.html":{"url":"best-practice.html","title":"10 服务化最佳实践","keywords":"","body":"分包\n\n建议将服务接口,服务模型,服务异常等均放在API包中,因为服务模型及异常也是API的一部分,同时,这样做也符合分包原则:重用发布等价原则(REP),共同重用原则(CRP)\n如果需要,也可以考虑在API包中放置一份spring的引用配置,这样使用方,只需在Spring加载过程中引用此配置即可,配置建议放在模块的包目录下,以免冲突,如:com/alibaba/china/xxx/dubbo-reference.xml\n\n粒度\n\n服务接口尽可能大粒度,每个服务方法应代表一个功能,而不是某功能的一个步骤,否则将面临分布式事务问题,Dubbo暂未提供分布式事务支持。\n服务接口建议以业务场景为单位划分,并对相近业务做抽象,防止接口数量爆炸\n不建议使用过于抽象的通用接口,如:Map query(Map),这样的接口没有明确语义,会给后期维护带来不便。\n\n版本\n\n每个接口都应定义版本号,为后续不兼容升级提供可能,如: \n建议使用两位版本号,因为第三位版本号通常表示兼容升级,只有不兼容时才需要变更服务版本。\n当不兼容时,先升级一半提供者为新版本,再将消费者全部升为新版本,然后将剩下的一半提供者升为新版本。\n\n兼容性\n\n服务接口增加方法,或服务模型增加字段,可向后兼容,删除方法或删除字段,将不兼容,枚举类型新增字段也不兼容,需通过变更版本号升级。\n各协议的兼容性不同,参见: 服务协议\n\n枚举值\n\n如果是完备集,可以用Enum,比如:ENABLE, DISABLE。\n如果是业务种类,以后明显会有类型增加,不建议用Enum,可以用String代替。\n如果是在返回值中用了Enum,并新增了Enum值,建议先升级服务消费方,这样服务提供方不会返回新值。\n如果是在传入参数中用了Enum,并新增了Enum值,建议先升级服务提供方,这样服务消费方不会传入新值。\n\n序列化\n\n服务参数及返回值建议使用POJO对象,即通过set,get方法表示属性的对象。\n服务参数及返回值不建议使用接口,因为数据模型抽象的意义不大,并且序列化需要接口实现类的元信息,并不能起到隐藏实现的意图。\n服务参数及返回值都必需是byValue的,而不能是byRef的,消费方和提供方的参数或返回值引用并不是同一个,只是值相同,Dubbo不支持引用远程对象。\n\n异常\n\n建议使用异常汇报错误,而不是返回错误码,异常信息能携带更多信息,以及语义更友好,\n如果担心性能问题,在必要时,可以通过override掉异常类的fillInStackTrace()方法为空方法,使其不拷贝栈信息,\n查询方法不建议抛出checked异常,否则调用方在查询时将过多的try...catch,并且不能进行有效处理,\n服务提供方不应将DAO或SQL等异常抛给消费方,应在服务实现中对消费方不关心的异常进行包装,否则可能出现消费方无法反序列化相应异常。\n\n调用\n\n不要只是因为是Dubbo调用,而把调用Try-Catch起来。Try-Catch应该加上合适的回滚边界上。\n对于输入参数的校验逻辑在Provider端要有。如有性能上的考虑,服务实现者可以考虑在API包上加上服务Stub类来完成检验。\n\n"},"recommend.html":{"url":"recommend.html","title":"11 推荐用法","keywords":"","body":"在Provider上尽量多配置Consumer端属性\n原因如下:\n\n作服务的提供者,比服务使用方更清楚服务性能参数,如调用的超时时间,合理的重试次数,等等\n在Provider配置后,Consumer不配置则会使用Provider的配置值,即Provider配置可以作为Consumer的缺省值。否则,Consumer会使用Consumer端的全局设置,这对于Provider不可控的,并且往往是不合理的。\n\nPS: 配置的覆盖规则:1) 方法级配置别优于接口级别,即小Scope优先 2) Consumer端配置 优于 Provider 配置 优于全局配置,最后是Dubbo Hard Code的配置值(见Dubbo配置参考手册)\nProvider上尽量多配置Consumer端的属性,让Provider实现者一开始就思考Provider服务特点、服务质量的问题。\n示例:\n\n\n\n \n\n\n在Provider可以配置的Consumer端属性有:\n\ntimeout 方法调用超时\nretries 失败重试次数,缺省是2(表示加上第一次调用,会调用3次)\nloadbalance 负载均衡算法(有多个Provider时,如何挑选Provider调用),缺省是随机(random)。还可以有轮询(roundrobin)、最不活跃优先(leastactive,指从Consumer端并发调用最好的Provider,可以减少的反应慢的Provider的调用,因为反应更容易累积并发的调用)\nactives 消费者端,最大并发调用限制,即当Consumer对一个服务的并发调用到上限后,新调用会Wait直到超时。\n在方法上配置(dubbo:method )则并发限制针对方法,在接口上配置(dubbo:service),则并发限制针对服务。\n\n详细配置说明参见:Dubbo配置参考手册\nProvider上配置合理的Provider端属性\n\n\n\n \n\n\nProvider上可以配置的Provider端属性有:\n\nthreads 服务线程池大小\nexecutes 一个服务提供者并行执行请求上限,即当Provider对一个服务的并发调用到上限后,新调用会Wait(Consumer可能到超时)。在方法上配置(dubbo:method )则并发限制针对方法,在接口上配置(dubbo:service),则并发限制针对服务。\n\n配置上管理信息\n目前有负责人信息和组织信息(用于区分站点)。有问题时便于的找到服务的负责人,至少写两个人以便备份。负责人和组织的信息可以在注册中心的上看到。\n示例:\n应用配置负责人、组织\n\n\nservice配置负责人\n\n\nreference配置负责人\n\n\ndubbo:service、dubbo:reference没有配置负责人,则使用dubbo:application设置的负责人。\n配置上Dubbo缓存文件\n配置方法如下:\n提供者列表缓存文件\n\n\n注意:\n\n文件的路径,应用可以根据需要调整,保证这个文件不会在发布过程中被清除。\n如果有多个应用进程注意不要使用同一个文件,避免内容被覆盖。\n\n这个文件会缓存:\n\n注册中心的列表\n服务提供者列表\n\n有了这项配置后,当应用重启过程中,Dubbo注册中心不可用时则应用会从这个缓存文件读取服务提供者列表的信息,进一步保证应用可靠性。\n监控配置\n\n使用固定端口暴露服务,而不要使用随机端口\n 这样在注册中心推送有延迟的情况下,消费者通过缓存列表也能调用到原地址,保证调用成功。\n\n使用Dragoon的http监控项监控注册中心上服务提供方\n Dragoon监控服务在注册中心上的状态:http://dubbo-reg1.hst.xyi.cn.alidc.net:8080/status/com.alibaba.morgan.member.MemberService:1.0.5 确保注册中心上有该服务的存在。\n\n服务提供方,使用Dragoon的telnet或shell监控项\n 监控服务提供者端口状态:echo status | nc -i 1 20880 | grep OK | wc -l,其中的20880为服务端口\n\n服务消费方,通过将服务强制转型为EchoService,并调用$echo()测试该服务的提供者是可用\n 如 assertEqauls(“OK”, ((EchoService)memberService).$echo(“OK”));\n\n\n不要使用dubbo.properties文件配置,推荐使用对应XML配置\nDubbo2中所有的配置项都可以Spring配置中,并且可以针对单个服务配置。\n如完全不配置使用Dubbo缺省值,参见 Dubbo配置参考手册 中的说明。\n在Dubbo1中需要在dubbo.properties文件中的配置项,Dubbo2中配置示例如下:\n\n应用名 \n \n\n 对应dubbo.properties中的Key名dubbo.application.name\n\n注册中心地址\n \n\n 对应dubbo.properties中的Key名dubbo.registry.address\n\n调用超时\n 可以在多个配置项设置超时,由上至下覆盖(即上面的优先),示例如下:\n 其它的参数(retries、loadbalance、actives等)的覆盖策略也一样。\n 提供者端特定方法的配置\n \n \n \n\n 提供者端特定接口的配置\n \n\n timeout可以在多处设置,配置项及覆盖规则详见: Dubbo配置参考手册\n 全局配置项值,对应dubbo.properties中的Key名dubbo.service.invoke.timeout\n\n服务提供者协议、服务的监听端口\n\n\n 对应dubbo.properties中的Key名dubbo.service.protocol、dubbo.service.server.port\n\n服务线程池大小\n \n\n 对应 dubbo.properties 中的Key名dubbo.service.max.thread.threads.size\n\n消费者启动时,没有提供者是否抛异常Fast-Fail\n \n\n 对应 dubbo.properties 中的Key名alibaba.intl.commons.dubbo.service.allow.no.provider\n\n\n"},"capacity-plan.html":{"url":"capacity-plan.html","title":"12 容量规划","keywords":"","body":"以下数据供参考:\n使用Dubbo的会员服务项目\n\n每天接收4亿次远程调用\n使用12台网站标配机器提供服务(8核CPU,8G内存)\n平均负载在1以下(对于8核CPU负载很低)\n平均响应时间2.3到2.5毫秒,网络开销约占1.5到1.6毫秒(和数据包大小有关)\n\n使用Dubbo的产品授权服务项目\n\n每天接收3亿次远程调用\n使用8台网站标配机器提供服务(8核CPU,8G内存)\n平均负载在1以下(对于8核CPU负载很低)\n平均响应时间1.4到2.8毫秒,网络开销约占1.0到1.1毫秒(和数据包大小有关)\n\n"},"benchmark.html":{"url":"benchmark.html","title":"13 基准测试工具包","keywords":"","body":"基准测试工具包\n下载 benchmark压缩包,并解压 \n阅读ReadMe.txt(内容如下,请以压缩包内的为准)\n\n新建一个benchmark工程,如demo.benchmark\n导入自己服务的接口api包和dubbo.benchmark.jar(解压dubbo.benchmark.tar.gz,在lib目录下)\n新建一个类,实现AbstractClientRunnable\n\n实现父类的构造函数\n实现invoke方法,通过serviceFactory创建本地接口代理,并实现自己的业务逻辑,如下\n public Object invoke(ServiceFactory serviceFactory) {\n DemoService demoService = (DemoService) serviceFactory.get(DemoService.class);\n return demoService.sendRequest(\"hello\");\n }\n\n\n\n\n将自己的benchmark工程打成jar包,如demo.benchmark.jar\n将demo.benchmark.jar 和服务的api包放到dubbo.benchmark/lib目录下\n配置duubo.properties\n运行run.bat(windows)或run.sh(linux)\n\n如想测试dubbo的不同版本,直接替换lib下的dubbo的jar包即可。 \n"},"perf-test.html":{"url":"perf-test.html","title":"14 性能测试报告","keywords":"","body":"测试说明\n\n本次性能测试,测试了dubbo2.0所有支持的协议在不同大小和数据类型下的表现,并与dubbo1.0进行了对比。\n整体性能相比1.0有了提升,平均提升10%,使用dubbo2.0新增的dubbo序列化还能获得10%~50%的性能提升,详见下面的性能数据。\n稳定性测试中由于将底层通信框架从mina换成netty,old区对象的增长大大减少,50小时运行,增长不到200m,无fullgc。(可以确认为mina在高并发下的设计缺陷)\n存在的问题:在50k数据的时候2.0性能不如1.0,怀疑可能是缓冲区设置的问题,下版本会进一步确认。 \n\n测试环境\n硬件部署与参数调整\n\n\n\n机型\nCPU\n内存\n网络\n磁盘\n内核\n\n\n\n\nTecal BH620\nmodel name : Intel(R) Xeon(R) CPU E5520 @ 2.27GHz cache size : 8192 KB processor_count : 16\nTotal System Memory: 6G Hardware Memory Info: Size: 4096MB\neth0: Link is up at 1000 Mbps, full duplex. peth0: Link is up at 1000 Mbps, full duplex.\n/dev/sda: 597.9 GB\n2.6.18-128.el5xen x86_64\n\n\n\n软件架构\n\n\n\n软件名称及版本\n关键参数\n\n\n\n\njava version \"1.6.0_18\" Java(TM) SE Runtime Environment (build 1.6.0_18-b07) Java HotSpot(TM) 64-Bit Server VM (build 16.0-b13, mixed mode)\n-server -Xmx2g -Xms2g -Xmn256m -XX:PermSize=128m -Xss256k -XX:+DisableExplicitGC -XX:+UseConcMarkSweepGC -XX:+CMSParallelRemarkEnabled -XX:+UseCMSCompactAtFullCollection -XX:LargePageSizeInBytes=128m -XX:+UseFastAccessorMethods -XX:+UseCMSInitiatingOccupancyOnly -XX:CMSInitiatingOccupancyFraction=70\n\n\njboss-4.0.5.GA\n\n\n\nhttpd-2.0.61\nKeepAlive On MaxKeepAliveRequests 100000 KeepAliveTimeout 180 MaxRequestsPerChild 1000000 StartServers 5 MaxClients 1024 MinSpareThreads 25 MaxSpareThreads 75 ThreadsPerChild 64 ThreadLimit 128 ServerLimit 16 \n\n\n\n测试目的\n期望性能指标(量化)\n\n\n\n场景名称\n对应指标名称\n期望值范围\n实际值\n是否满足期望(是/否)\n\n\n\n\n1k数据\n响应时间\n0.9ms\n0.79ms\n是 \n\n\n1k数据\nTPS\n10000\n11994\n是\n\n\n\n期望运行状况(非量化,可选)\n\n2.0性能不低于1.0,2.0和1.0互调用的性能无明显下降。 除了50k string其余皆通过\nJVM内存运行稳定,无OOM,堆内存中无不合理的大对象的占用。通过\nCPU、内存、网络、磁盘、文件句柄占用平稳。通过\n无频繁线程锁,线程数平稳。通过\n业务线程负载均衡。通过\n\n测试脚本\n\n性能测试场景(10并发)\n\n传入1kString,不做任何处理,原样返回\n传入50kString,不做任何处理,原样返回\n传入200kString,不做任何处理,原样返回\n传入1k pojo(嵌套的复杂person对象),不做任何处理,原样返回\n上述场景在dubbo1.0\\dubbo2.0(hessian2序列化)\\dubbo2.0(dubbo序列化)\\rmi\\hessian3.2.0\\http(json序列化)进行10分钟的性能测试。 主要考察序列化和网络IO的性能,因此服务端无任何业务逻辑。取10并发是考虑到http协议在高并发下对CPU的使用率较高可能会先打到瓶颈。 \n\n\n\n并发场景(20并发)\n 传入1kString,在服务器段循环1w次,每次重新生成一个随机数然后进行拼装。考察业务线程是否能够分配到每个CPU上。 \n稳定性场景(20并发)\n 同时调用1个参数为String(5k)方法,1个参数为person对象的方法,1个参数为map(值为3个person)的方法,持续运行50小时。 \n高压力场景(20并发)\n 在稳定性场景的基础上,将提供者和消费者布置成均为2台(一台机器2个实例),且String的参数从20byte到200k,每隔10分钟随机变换。 \n\n测试结果\n场景名称:POJO 场景\n\n\n\n\nTPS成功平均值\n响应时间成功平均值(ms) \n\n\n\n\n dubbo1 (hessian2序列化+mina)\n10813.5\n0.9 \n\n\n dubbo2 (hessian2序列化+netty)\n11994\n0.79 \n\n\n dubbo2 (dubbo序列化+netty)\n13620\n0.67 \n\n\n rmi\n2461.79\n4 \n\n\n hessian\n2417.7\n4.1 \n\n\n http(json序列化)\n8179.08\n1.15 \n\n\n 2.0和1.0默认对比百分比\n10.92\n-12.22 \n\n\n dubbo序列化相比hessian2序列化百分比\n13.56\n-15.19 \n\n\n\nPOJO TPS\n\nPOJO Response\n\n场景名称:1k string 场景\n\n\n\n\nTPS成功平均值\n响应时间成功平均值(ms) \n\n\n\n\ndubbo1(hessian2序列化+mina)\n11940\n0.8 \n\n\ndubbo2 (hessian2序列化+netty)\n14402\n0.64 \n\n\ndubbo2 (dubbo序列化+netty)\n15096\n0.6 \n\n\nrmi\n11136.02\n0.81 \n\n\nhessian\n11426.83\n0.79 \n\n\nhttp(json序列化)\n8919.27\n1.04 \n\n\n2.0和1.0默认对比百分比\n20.62\n-20.00 \n\n\ndubbo序列化相比hessian2序列化百分比\n4.82\n-6.25 \n\n\n\n1k TPS\n\n1k Response\n\n场景名称:50k string场景\n\n\n\n\nTPS成功平均值\n响应时间成功平均值(ms) \n\n\n\n\n dubbo1(hessian2序列化+mina\n1962.7\n5.1 \n\n\n dubbo2 (hessian2序列化+netty)\n1293\n5.03 \n\n\n dubbo2 (dubbo序列化+netty)\n1966\n7.68 \n\n\n rmi\n3349.88\n2.9 \n\n\n hessian\n1925.33\n5.13 \n\n\n http(json序列化)\n3247.1\n3 \n\n\n 2.0和1.0默认对比百分比\n-34.12\n-1.37 \n\n\n dubbo序列化相比hessian2序列化百分比\n52.05\n52.68 \n\n\n\n50K TPS\n\n50K Response\n/user-guide/images/50kres.png\n场景名称:200k string 场景\n\n\n\n\nTPS成功平均值\n响应时间成功平均值(ms) \n\n\n\n\n dubbo1(hessian2序列化+mina)\n324.2\n30.8 \n\n\n dubbo2 (hessian2序列化+netty)\n362.92\n27.49 \n\n\n dubbo2 (dubbo序列化+netty)\n569.5\n17.51 \n\n\n rmi\n1031.28\n9.61\n\n\n hessian\n628.06\n15.83 \n\n\n http(json序列化)\n1011.97\n9.79 \n\n\n 2.0和1.0默认对比百分比\n11.94\n-10.75 \n\n\n dubbo序列化相比hessian2序列化百分比\n56.92\n-36.30 \n\n\n\n200K TPS\n\n200K Response\n\n测试分析\n性能分析评估\nDubbo2.0的性能测试结论为通过,从性能、内存占用和稳定性上都有了提高和改进。由其是内存管理由于将mina换成netty,大大减少了1.0版本在高并发大数据下的内存大锯齿。如下图:\n性能对比分析(新旧环境、不同数据量级等)\nDubbo2.0相比较Dubbo1.0(默认使用的都是hessian2序列化)性能均有提升(除了50k String),详见第五章的性能数据。\n出于兼容性考虑默认的序列化方式和1.0保持一致使用hessian2,如对性能有更高要求可以使用dubbo序列化,由其是在处理复杂对象时,在大数据量下能获得50%的提升(但此时已不建议使用Dubbo协议)。\nDubbo的设计目的是为了满足高并发小数据量的rpc调用,在大数据量下的性能表现并不好,建议使用rmi或http协议。\n测试局限性分析(可选)\n本次性能测试考察的是dubbo本身的性能,实际使用过程中的性能有待应用来验证。\n由于dubbo本身的性能占用都在毫秒级,占的基数很小,性能提升可能对应用整体的性能变化不大。\n由于邮件篇幅所限没有列出所有的监控图,如需获得可在大力神平台上查询。\n"},"coveragence.html":{"url":"coveragence.html","title":"15 测试覆盖率报告","keywords":"","body":"测试覆盖率报告\n统计于 2012-02-03 (2.0.12)\n\n\n\n\n\n\n\n\n\n\n"}}}