We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
when i start a client use redis clustering, i can't got cluster , because no key [ServiceId/ClusterId] found in redis.
e.g.
Service 1
hostBuilder.UseOrleans((context, builder) => { builder.Configure<ClusterOptions>(opt=>{ opt.ClusterId = "dev"; opt.ServiceId = "service1"; }); });
Service 2
hostBuilder.UseOrleans((context, builder) => { builder.Configure<ClusterOptions>(opt=>{ opt.ClusterId = "dev"; opt.ServiceId = "service2"; }); });
Client
new ClientBuilder() .Configure<ClusterOptions>(opt=>{ opt.ClusterId = "dev"; opt.ServiceId = "client1"; }) .UseRedisClustering(...) .Build() .Connect(...)
other cluster implements just use ClusterId AdoNet
ClusterId
Consul
ZooKeeper
The text was updated successfully, but these errors were encountered:
No branches or pull requests
when i start a client use redis clustering, i can't got cluster , because no key [ServiceId/ClusterId] found in redis.
e.g.
other cluster implements just use
ClusterId
AdoNet
Consul
ZooKeeper
The text was updated successfully, but these errors were encountered: