Skip to content

Latest commit

 

History

History
54 lines (47 loc) · 1.53 KB

README.md

File metadata and controls

54 lines (47 loc) · 1.53 KB

Build Status Code Quality Grade Code Quality Score

CLODSS: Close* Data-Structures Store

clodss is a data-structures on-disk store with an API largly compatible with redis. The goal is to develop a store with the simplicity of the redis API which scales beyond memory capacity, allows harnessing multi-core processors, and does not burden accesses with network latency.

clodss is a product of Codoma.tech.


* "Close" as opposed to "Remote".

Roadmap:

Features will be implemented in the order of demand by the community. Please use The issues section to vote for the next functionality to be developed.

  • get
  • set
  • del
  • incr
  • incrby
  • decr
  • decrby
  • keys
  • scan
  • flushdb
  • expire
  • persist
  • lists
    • llen
    • lpop
    • lpush
    • rpop
    • rpush
    • lindex
    • lset
    • lrange
    • linsert
    • ltrim
    • lrem
  • hashmaps
    • hset
    • hget
    • hdel
    • hkeys
    • hvalues
    • hgetall
    • hmset
    • hmget