KO
|
EN
gitlite โ search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
jedis-lock
โ 206
Open GitHub โ
Jedis distributed lock support
Download README (.md)
Explore Similar Repositories
angularfire2-offline
:
๐ A simple wrapper for AngularFire2 to read and write to Firebase while offline, even after a complete refresh.
ndkale
:
Kale is a python task worker library that supports priority queues on Amazon SQS
jwks-rsa-java
:
No description available.
botkit-middleware
:
A middleware to connect Watson Conversation Service to different chat channels using Botkit
gunicorn_thrift
:
Thrift app and worker for gunicorn!
// repository documentation
Was this content helpful?
โ 0
(0 ratings)
Select Rating:
โ
โ
โ
โ
โ
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
jedis-lock
?
Download (.md)
# Jedis-lock Jedis-lock is easy to use and simple implementation of distributed lock using Redis database and Jedis driver. ## How do I use it? You can download the latests build at: http://github.com/abelaska/jedis-lock/downloads Or use it as a maven dependency: <dependency> <groupId>com.github.jedis-lock</groupId> <artifactId>jedis-lock</artifactId> <version>1.0.0</version> <type>jar</type> <scope>compile</scope> </dependency> To use it just: Jedis jedis = new Jedis("localhost"); JedisLock lock = new JedisLock(jedis, "lockname", 10000, 30000); lock.acquire(); try { // do some stuff } finally { lock.release(); } That's it. ## License The Apache Software License, Version 2.0