def
LeanRedis.Pipeline.set
{α : List Type}
(pipeline : Pipeline α)
(key value : String)
(options : SetOptions := { })
:
Equations
- pipeline.set key value options = pipeline.hAppend (LeanRedis.Pipeline.fromCommand (LeanRedis.Command.set key value options))
Instances For
def
LeanRedis.Pipeline.setRange
{α : List Type}
(pipeline : Pipeline α)
(key : String)
(offset : UInt64)
(value : String)
:
Equations
- pipeline.setRange key offset value = pipeline.hAppend (LeanRedis.Pipeline.fromCommand (LeanRedis.Command.setRange key offset value))
Instances For
Equations
- pipeline.incrByFloat key amount = pipeline.hAppend (LeanRedis.Pipeline.fromCommand (LeanRedis.Command.incrByFloat key amount))
Instances For
def
LeanRedis.Pipeline.pSetEx
{α : List Type}
(pipeline : Pipeline α)
(key : String)
(milliseconds : UInt64)
(value : String)
:
Equations
- pipeline.pSetEx key milliseconds value = pipeline.hAppend (LeanRedis.Pipeline.fromCommand (LeanRedis.Command.pSetEx key milliseconds value))