github EventStore/EventStore dotnet-client-v3.9.5
Event Store Client 3.9.5

latest releases: v24.4.0-rc.2, v24.4.0-rc.1, v24.4.0-alpha.2...
7 years ago

Event Store Server

No changes. This is a client release only

.NET Client

  • (#1230) - The client can now be configured to randomly select a node in the cluster instead of preferring master. This can help spread the load, specifically around reads for clients connecting to a cluster.

e.g.

var clusterSettings = ClusterSettings.Create()
.DiscoverClusterViaGossipSeeds()
.SetGossipSeedEndPoints(
	new GossipSeed(new IPEndPoint(IPAddress.Parse("127.0.0.1"), 1113)), 
	new GossipSeed(new IPEndPoint(IPAddress.Parse("127.0.0.1"), 2113)))
.PreferRandomNode();

.NET Embedded Client

  • (#1266) - Fix acking for persistent subscriptions

Don't miss a new EventStore release

NewReleases is sending notifications on new releases.