To utilize the RedisLockAdapter, you must install the "ioredis" package.
RedisLockAdapter
"ioredis"
Note in order to use RedisLockAdapter correctly, ensure you use a single, consistent database across all server instances.
IMPORT_PATH: "@daiso-tech/core/lock/adapters"
"@daiso-tech/core/lock/adapters"
import { RedisLockAdapter } from "@daiso-tech/core/lock/adapters";import Redis from "ioredis";const database = new Redis("YOUR_REDIS_CONNECTION_STRING");const lockAdapter = new RedisLockAdapter(database); Copy
import { RedisLockAdapter } from "@daiso-tech/core/lock/adapters";import Redis from "ioredis";const database = new Redis("YOUR_REDIS_CONNECTION_STRING");const lockAdapter = new RedisLockAdapter(database);
The acquire method acquires a lock only if the lock is not already acquired. Returns true if not already acquired othewise false is returned.
acquire
The forceRelease method releases a lock regardless of the owner.
forceRelease
The refresh method will upadte ttl of lock if it matches the given key and matches the given owner. Returns true if the update occured otherwise false is returned.
refresh
key
owner
The release method releases a lock if the owner matches. Returns true if released otherwise false is returned.
release
To utilize the
RedisLockAdapter
, you must install the"ioredis"
package.Note in order to use
RedisLockAdapter
correctly, ensure you use a single, consistent database across all server instances.IMPORT_PATH:
"@daiso-tech/core/lock/adapters"