Releases: tristanls/dynamodb-lock-client
Releases · tristanls/dynamodb-lock-client
v0.5.1
v0.5.0
v0.4.3
v0.4.2
v0.4.1
DynamoDB Reserved Words can now be used as config.partitionKey
.
v0.4.0
FailOpen
lock now accepts trustLocalTime
boolean value in its configuration (default: false
) that when set to true
allows the client to reduce the time it has to wait to acquire a lock. Instead of waiting a full leaseDurationMs
on every lock acquisition, the client will calculate Math.max(0, leaseDurationMs - (localTimeMs - lockAcquiredTimeMs))
to determine the wait time.