class PostgresKvStore
implements KvStore
A key-value store that uses PostgreSQL as the underlying storage.
new
PostgresKvStore(sql: Sql<{ }>,options?: PostgresKvStoreOptions,)
Creates a new PostgreSQL key-value store.
Drops the table used by the key-value store. Does nothing if the table does not exist.
initialize(): Promise<void>
Creates the table used by the key-value store if it does not already exist. Does nothing if the table already exists.