English 中文(简体)
ZooKeeper alternative for .net
原标题:

Is there any alternative of ZooKeeper in .net? Other than database which we all use for similar stuff.

We need it for leader selection and to make sure one item is getting processed only once and various distributed status sharing.

最佳回答

Why do you want a .NET version of ZooKeeper? As long as you don t intend to hack ZooKeeper itself you could just install it and use it. If you re searching for a .NET client for ZooKeeper, this may help you: http://erichauser.net/2010/04/23/zookeeper-net-client/ There s also an improved REST interface for ZooKeeper underway: http://issues.apache.org/jira/browse/ZOOKEEPER-809

问题回答

https://www.nuget.org/packages/ZooKeeperNetEx/

A .NET async Client fully compliant with ZooKeeper, supporting all features. Fully Task-based Asynchronous (async/await).





相关问题
ZooKeeper alternative for .net

Is there any alternative of ZooKeeper in .net? Other than database which we all use for similar stuff. We need it for leader selection and to make sure one item is getting processed only once and ...

Can I recursively create a path in Zookeeper?

I m pulling ZooKeeper into a project for some concurrency management, and the first thing I tried was something that, to me, was quite obvious (using the zkpython binding): zh = zookeeper.init( ...

Distributed sequence number generation?

I ve generally implemented sequence number generation using database sequences in the past. e.g. Using Postgres SERIAL type http://www.neilconway.org/docs/sequences/ I m curious though as how to ...

zookeeper - locking one-of-many

I have a set of resources each of which has a unique identifier, and each resource element must be locked before it is used, and unlocked afterwards. The logic of the application is: lock any one ...

Zookeeper/Chubby -vs- MySql NDB

I have been reading the Paxos paper, the FLP theorem etc. recently and evaluating Apache Zookeeper for a project. I have also been going thru Chubby (Google s distributed locking service) and the ...

热门标签