seyfert
Preparing search index...
Adapter
Interface Adapter
interface
Adapter
{
isAsync
:
boolean
;
addToRelationship
(
to
:
string
,
keys
:
string
|
string
[]
)
:
Awaitable
<
void
>
;
bulkAddToRelationShip
(
data
:
Record
<
string
,
string
[]
>
)
:
Awaitable
<
void
>
;
bulkGet
(
keys
:
string
[]
)
:
Awaitable
<
any
[]
>
;
bulkPatch
(
keyValue
:
[
string
,
any
]
[]
)
:
Awaitable
<
void
>
;
bulkRemove
(
keys
:
string
[]
)
:
Awaitable
<
void
>
;
bulkSet
(
keyValue
:
[
string
,
any
]
[]
)
:
Awaitable
<
void
>
;
contains
(
to
:
string
,
keys
:
string
)
:
Awaitable
<
boolean
>
;
count
(
to
:
string
)
:
Awaitable
<
number
>
;
flush
()
:
Awaitable
<
void
>
;
get
(
keys
:
string
)
:
any
;
getToRelationship
(
to
:
string
)
:
Awaitable
<
string
[]
>
;
keys
(
to
:
string
)
:
Awaitable
<
string
[]
>
;
patch
(
id
:
string
,
data
:
any
)
:
Awaitable
<
void
>
;
remove
(
keys
:
string
)
:
Awaitable
<
void
>
;
removeRelationship
(
to
:
string
|
string
[]
)
:
Awaitable
<
void
>
;
removeToRelationship
(
to
:
string
,
keys
:
string
|
string
[]
)
:
Awaitable
<
void
>
;
scan
(
query
:
string
,
keys
?:
false
)
:
Awaitable
<
any
[]
>
;
scan
(
query
:
string
,
keys
:
true
)
:
Awaitable
<
string
[]
>
;
scan
(
query
:
string
,
keys
?:
boolean
)
:
Awaitable
<
any
[]
>
;
set
(
id
:
string
,
data
:
any
)
:
Awaitable
<
void
>
;
start
()
:
Awaitable
<
void
>
;
values
(
to
:
string
)
:
Awaitable
<
any
[]
>
;
}
Implemented by
LimitedMemoryAdapter
MemoryAdapter
WorkerAdapter
Index
Properties
is
Async
Methods
add
To
Relationship
bulk
Add
To
Relation
Ship
bulk
Get
bulk
Patch
bulk
Remove
bulk
Set
contains
count
flush
get
get
To
Relationship
keys
patch
remove
remove
Relationship
remove
To
Relationship
scan
set
start
values
Properties
is
Async
isAsync
:
boolean
Methods
add
To
Relationship
addToRelationship
(
to
:
string
,
keys
:
string
|
string
[]
)
:
Awaitable
<
void
>
Parameters
to
:
string
keys
:
string
|
string
[]
Returns
Awaitable
<
void
>
bulk
Add
To
Relation
Ship
bulkAddToRelationShip
(
data
:
Record
<
string
,
string
[]
>
)
:
Awaitable
<
void
>
Parameters
data
:
Record
<
string
,
string
[]
>
Returns
Awaitable
<
void
>
bulk
Get
bulkGet
(
keys
:
string
[]
)
:
Awaitable
<
any
[]
>
Parameters
keys
:
string
[]
Returns
Awaitable
<
any
[]
>
bulk
Patch
bulkPatch
(
keyValue
:
[
string
,
any
]
[]
)
:
Awaitable
<
void
>
Parameters
keyValue
:
[
string
,
any
]
[]
Returns
Awaitable
<
void
>
bulk
Remove
bulkRemove
(
keys
:
string
[]
)
:
Awaitable
<
void
>
Parameters
keys
:
string
[]
Returns
Awaitable
<
void
>
bulk
Set
bulkSet
(
keyValue
:
[
string
,
any
]
[]
)
:
Awaitable
<
void
>
Parameters
keyValue
:
[
string
,
any
]
[]
Returns
Awaitable
<
void
>
contains
contains
(
to
:
string
,
keys
:
string
)
:
Awaitable
<
boolean
>
Parameters
to
:
string
keys
:
string
Returns
Awaitable
<
boolean
>
count
count
(
to
:
string
)
:
Awaitable
<
number
>
Parameters
to
:
string
Returns
Awaitable
<
number
>
flush
flush
()
:
Awaitable
<
void
>
Returns
Awaitable
<
void
>
get
get
(
keys
:
string
)
:
any
Parameters
keys
:
string
Returns
any
get
To
Relationship
getToRelationship
(
to
:
string
)
:
Awaitable
<
string
[]
>
Parameters
to
:
string
Returns
Awaitable
<
string
[]
>
keys
keys
(
to
:
string
)
:
Awaitable
<
string
[]
>
Parameters
to
:
string
Returns
Awaitable
<
string
[]
>
patch
patch
(
id
:
string
,
data
:
any
)
:
Awaitable
<
void
>
Parameters
id
:
string
data
:
any
Returns
Awaitable
<
void
>
remove
remove
(
keys
:
string
)
:
Awaitable
<
void
>
Parameters
keys
:
string
Returns
Awaitable
<
void
>
remove
Relationship
removeRelationship
(
to
:
string
|
string
[]
)
:
Awaitable
<
void
>
Parameters
to
:
string
|
string
[]
Returns
Awaitable
<
void
>
remove
To
Relationship
removeToRelationship
(
to
:
string
,
keys
:
string
|
string
[]
)
:
Awaitable
<
void
>
Parameters
to
:
string
keys
:
string
|
string
[]
Returns
Awaitable
<
void
>
scan
scan
(
query
:
string
,
keys
?:
false
)
:
Awaitable
<
any
[]
>
Parameters
query
:
string
Optional
keys
:
false
Returns
Awaitable
<
any
[]
>
scan
(
query
:
string
,
keys
:
true
)
:
Awaitable
<
string
[]
>
Parameters
query
:
string
keys
:
true
Returns
Awaitable
<
string
[]
>
scan
(
query
:
string
,
keys
?:
boolean
)
:
Awaitable
<
any
[]
>
Parameters
query
:
string
Optional
keys
:
boolean
Returns
Awaitable
<
any
[]
>
set
set
(
id
:
string
,
data
:
any
)
:
Awaitable
<
void
>
Parameters
id
:
string
data
:
any
Returns
Awaitable
<
void
>
start
start
()
:
Awaitable
<
void
>
Returns
Awaitable
<
void
>
values
values
(
to
:
string
)
:
Awaitable
<
any
[]
>
Parameters
to
:
string
Returns
Awaitable
<
any
[]
>
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
On This Page
Properties
is
Async
Methods
add
To
Relationship
bulk
Add
To
Relation
Ship
bulk
Get
bulk
Patch
bulk
Remove
bulk
Set
contains
count
flush
get
get
To
Relationship
keys
patch
remove
remove
Relationship
remove
To
Relationship
scan
set
start
values
seyfert
Loading...