github kurrent-io/KurrentDB dotnet-client-v3.9.5
Event Store Client 3.9.5

latest releases: v24.10.7, v24.10.7-rc.1, v24.10.7-preview.1...
8 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 KurrentDB release

NewReleases is sending notifications on new releases.