nanokv
    Preparing search index...

    Type Alias KvEntry<K, V>

    KvEntry: KvPair<K, V> & { versionstamp: bigint }

    A versioned pair of key and value in a NanoKV.

    The versionstamp is a string that represents the current version of the key-value pair. It can be used to perform atomic operations on the KV store by passing it to the check method of a AtomicOperation.

    Type Parameters