Abstract
Abstract
batchExecute a batch of operations.
An array of operations to execute.
A promise that resolves to the results of the operations.
List and filter namespaces in the store.
Options for listing namespaces.
Optional
limit?: numberMaximum number of namespaces to return (default 100).
Optional
maxReturn namespaces up to this depth in the hierarchy.
Optional
offset?: numberNumber of namespaces to skip for pagination (default 0).
Optional
prefix?: string[]Filter namespaces that start with this path.
Optional
suffix?: string[]Filter namespaces that end with this path.
A promise that resolves to a list of namespace arrays that match the criteria.
Search for items within a namespace prefix.
Hierarchical path prefix to search within.
Optional
options: { Search options.
Optional
filter?: Record<string, any>Key-value pairs to filter results.
Optional
limit?: numberMaximum number of items to return (default: 10).
Optional
offset?: numberNumber of items to skip before returning results (default: 0).
A promise that resolves to a list of items matching the search criteria.
Abstract base class for key-value stores.