import { LibsqlLockAdapter } from "@daiso-tech/core/lock/adapters";
import { createClient } from "@libsql/client";
const database = createClient({ url: "file:local.db" });
const lockAdapter = new LibsqlLockAdapter({
database,
});
// You need initialize the adapter once before using it.
await lockAdapter.init();
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
LibsqlLockAdapter
, you must install the"@libsql/client"
package.Note in order to use
LibsqlLockAdapter
correctly, ensure you use a single, consistent database across all server instances. This means you can't use libsql embedded replicas.IMPORT_PATH:
"@daiso-tech/core/lock/adapters"