dynamodb-lock-client-golang icon indicating copy to clipboard operation
dynamodb-lock-client-golang copied to clipboard

The DynamoDBLockClient is a general purpose distributed locking library built on top of DynamoDB. It supports both coarse-grained and fine-grained locking.

Results 3 dynamodb-lock-client-golang issues
Sort by recently updated
recently updated
newest added

So I noticed that there's a scan in `hasLock()` - is there a reason why this is not just a get? I see there's some timestamp comparison in here, but...

I've probably missed out on something, but it seems that dynamodb-lock-client-golang isn't using consistent reads. This changes introduces consistent reads. For reference, the original Java dynamodb-lock-client has used consistent reads...