Documentation
    Preparing search index...

    Class MemoryKvStore

    Implements

    Index

    Constructors

    Methods

    Constructors

    Methods

    • Retrieves the value associated with the given key.

      Parameters

      • key: string

        The key to retrieve the value for.

      Returns null | string

      The value associated with the key, or null if not found.

    • Removes the value associated with the given key.

      Parameters

      • key: string

        The key to remove the value for.

      Returns void

    • Sets the value for the given key.

      Parameters

      • key: string

        The key to set the value for.

      • value: string

        The value to set.

      Returns void