def
LeanRedis.Pipeline.sMIsMember
{α : List Type}
(pipeline : Pipeline α)
(key : String)
(members : Array String)
:
Equations
- pipeline.sMIsMember key members = pipeline.hAppend (LeanRedis.Pipeline.fromCommand (LeanRedis.Command.sMIsMember key members))
Instances For
Equations
- pipeline.sRandMember key = pipeline.hAppend (LeanRedis.Pipeline.fromCommand (LeanRedis.Command.sRandMember key))
Instances For
def
LeanRedis.Pipeline.sRandMembers
{α : List Type}
(pipeline : Pipeline α)
(key : String)
(count : Int)
:
Equations
- pipeline.sRandMembers key count = pipeline.hAppend (LeanRedis.Pipeline.fromCommand (LeanRedis.Command.sRandMembers key count))
Instances For
def
LeanRedis.Pipeline.sMove
{α : List Type}
(pipeline : Pipeline α)
(source destination member : String)
:
Equations
- pipeline.sMove source destination member = pipeline.hAppend (LeanRedis.Pipeline.fromCommand (LeanRedis.Command.sMove source destination member))
Instances For
def
LeanRedis.Pipeline.sDiffStore
{α : List Type}
(pipeline : Pipeline α)
(destination : String)
(keys : Array String)
:
Equations
- pipeline.sDiffStore destination keys = pipeline.hAppend (LeanRedis.Pipeline.fromCommand (LeanRedis.Command.sDiffStore destination keys))
Instances For
Equations
- pipeline.sInterCard keys = pipeline.hAppend (LeanRedis.Pipeline.fromCommand (LeanRedis.Command.sInterCard keys))
Instances For
def
LeanRedis.Pipeline.sInterStore
{α : List Type}
(pipeline : Pipeline α)
(destination : String)
(keys : Array String)
:
Equations
- pipeline.sInterStore destination keys = pipeline.hAppend (LeanRedis.Pipeline.fromCommand (LeanRedis.Command.sInterStore destination keys))
Instances For
def
LeanRedis.Pipeline.sUnionStore
{α : List Type}
(pipeline : Pipeline α)
(destination : String)
(keys : Array String)
:
Equations
- pipeline.sUnionStore destination keys = pipeline.hAppend (LeanRedis.Pipeline.fromCommand (LeanRedis.Command.sUnionStore destination keys))
Instances For
def
LeanRedis.Pipeline.sScan
{α : List Type}
(pipeline : Pipeline α)
(key : String)
(cursor : UInt64)
(options : SScanOptions := { })
:
Equations
- pipeline.sScan key cursor options = pipeline.hAppend (LeanRedis.Pipeline.fromCommand (LeanRedis.Command.sScan key cursor options))