distributed-lock icon indicating copy to clipboard operation
distributed-lock copied to clipboard

Distributed locking with Spring

Results 7 distributed-lock issues
Sort by recently updated
recently updated
newest added

Spring creates its own TaskScheduler bean if `@EnableScheduler` is used. This library overrides Spring's TaskSchduler because it uses the same name/type and therefore Spring's bean is not used. This is...

Is there a way to set the Lock to not retry ?

Hi, the recent changes to the SQL query for MySql is causing PSQL syntax errors. ``` public static final String ACQUIRE_FORMATTED_QUERY = "INSERT INTO `%s` (lock_key, token, expireAt) VALUES (?,...

Closes #41 Changes: - added throwing option to all `Locked` annotations - documented how to use `throwing` in README - started new release changelog in README

Hi, We have a use case where we run a cron on a Spring service spawned in multiple instances and we need to run it only on one instance. For...

I was about to start using this library for a project at the company I work for. But the first link on Google points to [an issue in the Gradle...

I was wondering why line 65 in the code block below is returning null instead of returning the result of the invocation.proceed() call. https://github.com/alturkovic/distributed-lock/blob/06efe84229b5349c77fd553e3e263014bb5f8765/distributed-lock-core/src/main/java/com/github/alturkovic/lock/advice/LockMethodInterceptor.java#L62-L68 I assumed that the `throwing` option...