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.
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 likesqlite
(in the RDBMS world). Is this correct ? Of course, one could wrapsniper
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.