recoilme / sniper

A simple and efficient thread-safe key/value store for Go
MIT License
75 stars 12 forks source link

Clarification request - this is a single system KV store, not a distributed KV store, right ? #16

Closed bdutta closed 2 years ago

bdutta commented 3 years ago

Based on a quick look around, I get the impression that sniper is a local KV store and not a distributed, network accessible KV store (like Redis, CouchDB, MongoDB etc.), i.e. more like sqlite (in the RDBMS world). Is this correct ? Of course, one could wrap sniper with a REST API to turn it into a service, but then it'd be a single-point-of-failure i.e. no high-availability.

recoilme commented 3 years ago

Yes, you right, sniper is low level engine For server you may try something like this https://github.com/recoilme/b52