-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hprose3.0有熔断降级插件,限流插件的使用说明或者相关示例吗 #58
Comments
熔断降级通常用于客户端或者代理服务器(也是客户端): var cb = new CircuitBreaker(5, default, myMockService);
client.Use(cb.IOHandler)
.Use(cb.InvokeHandler); 第一个参数是失败尝试次数(不是自动重试,自动重试有单独的插件),比如设置为 5,那么如果失败小于5次的时候,抛出的是服务本身的异常。如果超过5次,就会抛出熔断异常(当没有设置
|
上面提到的自动重试插件是在集群插件中。 比如: client.Use(new Cluster(FailtryConfig.Instance).Handler); 就可以启用自动重试插件了。自动重试插件的默认重试次数是10次。另外 除了 |
另外,3.0版本支持数据加密吗 |
没有内置加密插件,可以自己实现加密插件。另外,https,tls 本身也是加密传输的,看需求自己选吧。 |
好的,多谢 |
请问小马哥现在有hprose for dotnet用户手册吗,官网上找不到,熔断降级有demo吗,刚开始接触有点懵 |
@linjianshu 上面的回答里面已经给出例子了 |
好滴那我再琢磨琢磨~ |
能提供熔断降级插件,限流插件的使用说明或者相关示例吗
The text was updated successfully, but these errors were encountered: