ashwanthkumar / suuchi

सूचि - Toolkit to build Distributed Data Systems
https://ashwanthkumar.github.io/suuchi/
53 stars 12 forks source link

Implement in-memory store #5

Closed brewkode closed 7 years ago

brewkode commented 7 years ago
trait Store {
  def get(key: Array[Byte]) : Array[Byte]
  def put(key: Array[Byte], data: Array[Byte]) : Unit 
}