A super fast key-value store with SQLite that uses bun:sqlite and v8 as a fast JSON replacement.

Hash (Map Object)

  • Hash function: Deletes a field of the map object.

    Parameters

    Returns undefined | boolean

    • undefined if the key does not exist.
    • true if the field existed and was deleted.
    • false if the field did not exist.
  • 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.

    Type Parameters

    • T = any

    Parameters

    Returns undefined | T

  • 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.

    Type Parameters

    • T = any

    Parameters

    Returns undefined | T[]

    If the data record (marked with key) does not exist, undefined is returned.

    import { BunSqliteKeyValue } from "bun-sqlite-key-value"

    const store = new BunSqliteKeyValue()

    store.hmSet("key-1", {
    "field-1": "value-1",
    "field-2": "value-2"
    })
    store.hGetValues("key-1") // --> ["value-1", "value-2"]
  • 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.

    Parameters

    Returns undefined | boolean

  • 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.

    Type Parameters

    • T = any

    Parameters

    Returns undefined | {
        [field: Field]: T | undefined;
    }

List (Array Object)

  • 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.

    Type Parameters

    • T = any

    Parameters

    Returns undefined | T

    When the value at key is not a list, an error is returned.

  • Removes and returns the first element of the list stored at key. If count is specified, returns count number of elements.

    Type Parameters

    • T = any

    Parameters

    Returns undefined | T | T[]

    If 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.

  • Removes and returns the last element of the list stored at key. If count is specified, returns count number of elements.

    Type Parameters

    • T = any

    Parameters

    Returns undefined | T | T[]

    If 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.

Other

  • Opens and creates the SQLite database either in memory or on the file system.

    Parameters

    • Optionalfilename: string

      The full path to the SQLite database to open. Or pass an empty string (""), ":memory:" or undefined for an in-memory database.

    • Optionaloptions: Options

      Database options

    Returns BunSqliteKeyValue

  • Deletes all items

    Returns void

  • Close database

    Removes .sqlite-shm and .sqlite-wal files

    Returns void

  • Deletes all expired records.

    Returns void

  • Reads a value from the database.

    Type Parameters

    • T = any

    Parameters

    Returns undefined | T

    import { BunSqliteKeyValue } from "bun-sqlite-key-value"
    const store = new BunSqliteKeyValue()
    store.set("myKey", "my-value")
    store.get("myKey") // --> "my-value"
    store.data.myKey // --> "my-value"
    store.data["myKey"] // --> "my-value"
  • Returns the number of all items in the database, including those that have already expired.

    Use getCountValid() if you want to get the number of items that have not yet expired.

    Returns number

  • Returns the number of all valid (non-expired) items in the database.

    Use getCount() if you want the fastet possible method.

    Parameters

    • OptionaldeleteExpired: boolean

    Returns number

  • Writes a value into the database and returns the key.

    Type Parameters

    • T = any

    Parameters

    Returns string

    Returns the key.

    import { BunSqliteKeyValue } from "bun-sqlite-key-value"
    const store = new BunSqliteKeyValue()
    // Stays in database
    store.set("myKey1", "my-value")
    store.data.myKey2 = "my-value"
    store.data["myKey3"] = "my-value"
    // Becomes invalid after 30 seconds
    store.set("myKey6", "item-with-ttl", 30000)
  • Adds a large number of entries to the database and takes only a small fraction of the time that set() would take individually.

    Type Parameters

    • T = any

    Parameters

    • items: {
          key: undefined | string;
          ttlMs?: TtlMs;
          value: T;
      }[]

    Returns void

Tags (Labels)

  • Adds a tag to an item.

    Raises an error if the item key does not exist.

    Parameters

    Returns boolean

    Returns true if the tag has been added. Returns false if the tag already exists.

  • Deletes a tag of an item.

    Parameters

    Returns boolean

    Returns true if the tag has been deleted. Returns false if the tag or the item does not exist.

  • Deletes tagged items.

    Parameters

    • tag: string

    Returns void

  • Deletes multiple tags or all tags of the item.

    Parameters

    • key: string
    • Optionaltags: string[]

      Deletes all tags within the array. If undefined, all tags of the item are deleted.

    Returns void

  • Returns tagged items.

    Type Parameters

    • T

    Parameters

    • tag: string

    Returns undefined | Item<T>[]

  • Returns tagged keys.

    Parameters

    • tag: string

    Returns undefined | string[]

  • Returns tagged values.

    Type Parameters

    • T = any

    Parameters

    • tag: string

    Returns undefined | (undefined | T)[]