def
LeanRedis.Pipeline.hIncrByFloat
{α : List Type}
(pipeline : Pipeline α)
(key field amount : String)
:
Equations
- pipeline.hIncrByFloat key field amount = pipeline.hAppend (LeanRedis.Pipeline.fromCommand (LeanRedis.Command.hIncrByFloat key field amount))
Instances For
Equations
- pipeline.hRandField key = pipeline.hAppend (LeanRedis.Pipeline.fromCommand (LeanRedis.Command.hRandField key))
Instances For
def
LeanRedis.Pipeline.hRandFields
{α : List Type}
(pipeline : Pipeline α)
(key : String)
(count : Int)
:
Equations
- pipeline.hRandFields key count = pipeline.hAppend (LeanRedis.Pipeline.fromCommand (LeanRedis.Command.hRandFields key count))
Instances For
def
LeanRedis.Pipeline.hRandFieldsWithValues
{α : List Type}
(pipeline : Pipeline α)
(key : String)
(count : Int)
:
Equations
- pipeline.hRandFieldsWithValues key count = pipeline.hAppend (LeanRedis.Pipeline.fromCommand (LeanRedis.Command.hRandFieldsWithValues key count))
Instances For
def
LeanRedis.Pipeline.hScan
{α : List Type}
(pipeline : Pipeline α)
(key : String)
(cursor : UInt64)
(options : HScanOptions := { })
:
Equations
- pipeline.hScan key cursor options = pipeline.hAppend (LeanRedis.Pipeline.fromCommand (LeanRedis.Command.hScan key cursor options))