Optional
ttlMs: TtlMsInspired by: https://docs.keydb.dev/docs/commands/#hincrby
Hash function: Deletes a field of the map object.
The key of the item.
More informations about key
.
The name of the field.
undefined
if the key does not exist.true
if the field existed and was deleted.false
if the field did not exist.Inspired by: https://docs.keydb.dev/docs/commands/#hdel
Hash (Map Object) - Read Value
Do not use it with several very large amounts of data or blobs. This is because the entire data record with all fields is always read and written.
Inspired by: https://docs.keydb.dev/docs/commands/#hget
Hash (Map Object) - Count Fields
Inspired by: https://docs.keydb.dev/docs/commands/#hlen
Hash (Map Object) - Get All Field Names
Inspired by: https://docs.keydb.dev/docs/commands/#hkeys
Returns the values contained in the hash stored at key
.
Use hmGet()
to read field names and values.
Do not use the hash functions with several very large amounts of data or blobs.
This is because the entire data record with all fields is always read and written.
It is better to use setValues()
and getValues()
for large amounts of data.
If the data record (marked with key
) does not exist, undefined
is returned.
Inspired by: https://docs.keydb.dev/docs/commands/#hvals
Hash (Map Object) - Has Field
Returns if field
is an existing field in the hash stored at key
.
Do not use it with several very large amounts of data or blobs. This is because the entire data record with all fields is always read.
Inspired by: https://docs.keydb.dev/docs/commands/#hexists
Optional
ttlMs: TtlMsInspired by: https://docs.keydb.dev/docs/commands/#hincrby
Hash (Map Object) - Read Multiple Values
Do not use it with several very large amounts of data or blobs. This is because the entire data record with all fields is always read and written.
Optional
fields: string[]Inspired by: https://docs.keydb.dev/docs/commands/#hmget
Hash (Map Object) - Write Multiple Values
Do not use it with several very large amounts of data or blobs. This is because the entire data record with all fields is always read and written.
Inspired by: https://docs.keydb.dev/docs/commands/#hmset
Hash (Map Object) - Write Value
Do not use it with several very large amounts of data or blobs. This is because the entire data record with all fields is always read and written.
Inspired by: https://docs.keydb.dev/docs/commands/#hset
Returns the element at index
in the list stored at key
.
The index is zero-based, so 0 means the first element, 1 the second element and so on. Negative indices can be used to designate elements starting at the tail of the list. Here, -1 means the last element, -2 means the penultimate and so forth.
When the value at key is not a list, an error is returned.
Inspired by: https://docs.keydb.dev/docs/commands/#lindex
Returns the length of the list stored at key
.
If key
does not exist, it is interpreted as an empty list and 0 is returned.
An error is returned when the value stored at key
is not an array.
The length of the list at key
.
Inspired by: https://www.dragonflydb.io/docs/command-reference/lists/llen
Removes and returns the first element of the list stored at key.
If count
is specified, returns count
number of elements.
Optional
count: numberIf count
is undefined
, it returns the first element of the list stored at key
.
If count
is a positive number, it returns the first count
elements of the list stored at key.
Returns undefined
if key
was not found or the array is empty.
Inspired by: https://docs.keydb.dev/docs/commands/#lpop
Array - Left Push - Adds elements at the begin of the array.
Rest
...values: T[]New length of the list.
Inspired by: https://docs.keydb.dev/docs/commands/#lpush
Updates the list element at index
to value
.
For more information on the index argument, see lIndex()
.
An error is returned if the key does not exist.
An error is returned when the value stored at key
is not an array.
An error is returned for out of range indexes.
true
if the key
exists and the value has been set.
Inspired by: https://www.dragonflydb.io/docs/command-reference/lists/lset
Removes and returns the last element of the list stored at key
.
If count
is specified, returns count
number of elements.
Optional
count: numberIf count
is undefined
, it returns the last element of the list stored at key
.
If count
is a positive number, it returns the last count
elements of the list stored at key.
Returns undefined
if key
was not found or the array is empty.
Inspired by: https://docs.keydb.dev/docs/commands/#rpop
Array - Right Push - Adds elements at the end of the array.
Rest
...values: T[]New length of the list.
Inspired by: https://docs.keydb.dev/docs/commands/#rpush
Opens and creates the SQLite database either in memory or on the file system.
Optional
filename: stringThe full path to the SQLite database to open.
Or pass an empty string (""
), ":memory:"
or undefined
for an in-memory database.
Optional
options: OptionsDatabase options
Deletes one or multiple items.
Optional
keyOrKeys: string | string[]Inspired by: https://docs.keydb.dev/docs/commands/#del
A super fast key-value store with SQLite that uses bun:sqlite and v8 as a fast JSON replacement.