godcrampy / fireflydb

FireflyDB is a fast, thread-safe, JVM-based key-value storage engine with microsecond latency.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FFDB-009: Implement start, get, set and stop operations without compaction

godcrampy opened this issue · comments

Implement the following basic operations:

  1. DB.start()
  2. DB.get(key)
  3. DB.set(key, value)
  4. DB.stop(key, value)

Make sure these are thread safe.