
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
distributed-locks-redis
Advanced tools
At the start of the connection a lua script is loaded into the redis instance
local key = redis.call('GET', KEYS[1])
if (not key)
then
redis.call('SET',KEYS[1], ARGV[1], 'NX', 'EX', ARGV[2])
return 'OK'
else
return nil
end
it takes the key (represents the critical section) and two arguments the value (represents the lock that is trying to get hold of a critical section) and the expiration time in seconds (ttl)
Since redis is single threaded and lua scripts are atomic we don't expect race conditions in this script. Steps:
Same as acquiring a lock a script is loaded for releasing a lock
local key = redis.call('GET', KEYS[1])
if (key == ARGV[1])
then
redis.call('DEL', KEYS[1])
end
return 'OK'
Again single threaded no race conditions and the script is atomic. Steps:
FAQs
The redis package for the storage layer for distributed locks
We found that distributed-locks-redis demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.