class Kemal::Session::RedisEngine::StorageInstance
- Kemal::Session::RedisEngine::StorageInstance
- Reference
- Object
Included Modules
- JSON::Serializable
Defined in:
kemal-session-redis.crConstructors
Instance Method Summary
- #bigint(k : String, v : Int64)
- #bigint(k : String) : Int64
- #bigint?(k : String) : Int64 | Nil
- #bigints : Hash(String, Int64)
- #bool(k : String, v : Bool)
- #bool(k : String) : Bool
- #bool?(k : String) : Bool | Nil
- #bools : Hash(String, Bool)
- #float(k : String, v : Float64)
- #float(k : String) : Float64
- #float?(k : String) : Float64 | Nil
- #floats : Hash(String, Float64)
- #int(k : String, v : Int32)
- #int(k : String) : Int32
- #int?(k : String) : Int32 | Nil
- #ints : Hash(String, Int32)
- #object(k : String, v : Kemal::Session::StorableObject::StorableObjectContainer)
- #object(k : String) : Kemal::Session::StorableObject::StorableObjectContainer
- #object?(k : String) : Kemal::Session::StorableObject::StorableObjectContainer | Nil
- #objects : Hash(String, Kemal::Session::StorableObject::StorableObjectContainer)
- #string(k : String, v : String)
- #string(k : String) : String
- #string?(k : String) : String | Nil
- #strings : Hash(String, String)
Macro Summary
Constructor Detail
Instance Method Detail
def object?(k : String) : Kemal::Session::StorableObject::StorableObjectContainer | Nil
#