To utilize the SqliteLockAdapter, you must install the "better-sqlite3" and "@types/better-sqlite3" packages.
Note the SqliteLockAdapter is limited to single server usage and cannot be shared across multiple servers but it can be shared between different processes.
To use it correctly, ensure all process instances access the same consistent, persisted database.
constdatabase = newSqlite("local.db"); constlockAdapter = newSqliteLockAdapter({ database, }); // You need initialize the adapter once before using it. awaitlockAdapter.init();
Methods
deInit
deInit():Promise<void>
Removes the table where the lock keys are stored and removes the table indexes.
Note all lock data will be removed.
The refresh method will upadte expiration of lock if it matches the given key and matches the given owner.
Returns number of updated rows or documents.
The update method will update a lock if it has expired, matches the given key and matches the given owner.
Returns number of updated rows or documents.
To utilize the
SqliteLockAdapter
, you must install the"better-sqlite3"
and"@types/better-sqlite3"
packages.Note the
SqliteLockAdapter
is limited to single server usage and cannot be shared across multiple servers but it can be shared between different processes. To use it correctly, ensure all process instances access the same consistent, persisted database.IMPORT_PATH:
"@daiso-tech/core/lock/adapters"