Documentation
LeanRedis
.
Pipeline
.
Connection
Search
return to top
source
Imports
Init
LeanRedis.Pipeline.Basic
Imported by
LeanRedis
.
Pipeline
.
ping
LeanRedis
.
Pipeline
.
auth
LeanRedis
.
Pipeline
.
select
source
def
LeanRedis
.
Pipeline
.
ping
{
α
:
List
Type
}
(
pipeline
:
Pipeline
α
)
(
message?
:
Option
String
:=
none
)
:
Pipeline
(
α
++
[
Option
String
]
)
Equations
pipeline
.
ping
message?
=
pipeline
.
hAppend
(
LeanRedis.Pipeline.fromCommand
(
LeanRedis.Command.ping
message?
)
)
Instances For
source
def
LeanRedis
.
Pipeline
.
auth
{
α
:
List
Type
}
(
pipeline
:
Pipeline
α
)
(
auth
:
AuthConfig
)
:
Pipeline
(
α
++
[
Unit
]
)
Equations
pipeline
.
auth
auth
=
pipeline
.
hAppend
(
LeanRedis.Pipeline.fromCommand
(
LeanRedis.Command.auth
auth
)
)
Instances For
source
def
LeanRedis
.
Pipeline
.
select
{
α
:
List
Type
}
(
pipeline
:
Pipeline
α
)
(
index
:
UInt32
)
:
Pipeline
(
α
++
[
Unit
]
)
Equations
pipeline
.
select
index
=
pipeline
.
hAppend
(
LeanRedis.Pipeline.fromCommand
(
LeanRedis.Command.select
index
)
)
Instances For