Live data from Hacker News

Show HN: A simple distributed key-value store built on Raft

github.com

1–4 of 4 posts

Re: Show HN: A simple distributed key-value store built on Raft

#2
If you're going to build a Raft demo, perhaps it should show strong consistency? Memcache supports compare-and-swap, so a distributed KV store speaking the memcache text protocol, and implementing a distributed CAS sounds like a great place to start!

To my knowledge, a very simple distributed CAS doesn't exist, and there are plenty of memcache clients, so I also think this might maximize the odds people use hraftd in their production environments at some point.

Re: Show HN: A simple distributed key-value store built on Raft

#4

If you're going to build a Raft demo, perhaps it should show strong consistency? Memcache supports compare-and-swap, so a distributed KV store speaking the memcache text protocol, and implementing a distributed CAS sounds like a great place to start! To my knowledge, a very simple distributed CAS doesn't exist, and there are plenty of memcache clients, so I also think this might maximize the odds people use hraftd in…

Arakoon supports this: https://github.com/openvstorage/arakoon/