unified-llm-client
Preparing search index...
RedisSessionStoreClient
Interface RedisSessionStoreClient
Minimal Redis client contract required by
RedisSessionStore
.
interface
RedisSessionStoreClient
{
del
(
key
:
string
)
:
Promise
<
number
>
;
get
(
key
:
string
)
:
Promise
<
string
|
null
>
;
keys
?
(
pattern
:
string
)
:
Promise
<
string
[]
>
;
scanIterator
?
(
options
?:
RedisScanIteratorOptions
)
:
AsyncIterable
<
string
>
;
set
(
key
:
string
,
value
:
string
,
options
?:
{
EX
?:
number
}
|
{
expiration
?:
{
type
:
"EX"
;
value
:
number
}
}
,
)
:
Promise
<
unknown
>
;
}
Index
Methods
del
get
keys?
scan
Iterator?
set
Methods
del
del
(
key
:
string
)
:
Promise
<
number
>
Parameters
key
:
string
Returns
Promise
<
number
>
get
get
(
key
:
string
)
:
Promise
<
string
|
null
>
Parameters
key
:
string
Returns
Promise
<
string
|
null
>
Optional
keys
keys
?
(
pattern
:
string
)
:
Promise
<
string
[]
>
Parameters
pattern
:
string
Returns
Promise
<
string
[]
>
Optional
scan
Iterator
scanIterator
?
(
options
?:
RedisScanIteratorOptions
)
:
AsyncIterable
<
string
>
Parameters
Optional
options
:
RedisScanIteratorOptions
Returns
AsyncIterable
<
string
>
set
set
(
key
:
string
,
value
:
string
,
options
?:
{
EX
?:
number
}
|
{
expiration
?:
{
type
:
"EX"
;
value
:
number
}
}
,
)
:
Promise
<
unknown
>
Parameters
key
:
string
value
:
string
Optional
options
:
{
EX
?:
number
}
|
{
expiration
?:
{
type
:
"EX"
;
value
:
number
}
}
Returns
Promise
<
unknown
>
Settings
Member Visibility
Inherited
External
Theme
OS
Light
Dark
On This Page
Methods
del
get
keys
scan
Iterator
set
unified-llm-client
Loading...
Minimal Redis client contract required by
RedisSessionStore.