- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在使用 ServicePartitionResolver 获取集群中另一个应用程序的 http 端点。
var resolver = ServicePartitionResolver.GetDefault();
var partition = await resolver.ResolveAsync(serviceUri, partitionKey ?? ServicePartitionKey.Singleton, CancellationToken.None);
var endpoints = JObject.Parse(partition.GetEndpoint().Address)["Endpoints"];
return endpoints[endpointName].ToString().TrimEnd('/');
这按预期工作,但是如果我重新部署我的目标应用程序并且它在我的本地开发箱上的端口发生变化,源应用程序仍然返回旧端点(现在无效)。我可以清除某个地方的缓存吗?或者这是一个错误?
最佳答案
是的,它们被缓存了。如果您知道该分区不再有效,或者如果您收到错误,您可以调用 resolver.ResolveAsync()
,它具有一个采用早期 ResolvedServicePartition
的重载previousRsp
,触发刷新。
This api-overload is used in cases where the client knows that the resolved service partition that it has is no longer valid.
查看此 article也是。
关于azure-service-fabric - Service Fabric ServicePartitionResolver ResolveAsync,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39831877/
我目前正在使用 ServicePartitionResolver 获取集群中另一个应用程序的 http 端点。 var resolver = ServicePartitionResolver.GetD
我目前正在使用 ServicePartitionResolver 获取集群中另一个应用程序的 http 端点。 var resolver = ServicePartitionResolver.GetD
我是一名优秀的程序员,十分优秀!