class Tasko::MemoryEngine::KVStoreProtocol
- Tasko::MemoryEngine::KVStoreProtocol
- Tasko::KVStore::Protocol
- Reference
- Object
Defined in:
tasko/memory_engine.crConstructors
Instance Method Summary
- #get(key : String) : String
- #llen(key : String) : Int64
- #lrange(key : String, from : Int32, to : Int32) : Array(String)
- #lrem(key : String, count : Int32, value : String) : Int64
- #rpoplpush(source : String, destination : String) : String | Nil
- #rpush(key : String, value : String) : Int64
- #sadd(key : String, value : String) : Int64
- #scard(key : String) : Int64
- #set(key : String, value : String) : Nil
- #sismember(key : String, value : String) : Bool
- #smembers(key : String) : Array(String)
- #srem(key : String, value : String) : Int64