Improve atomicity in DefaultRedisCacheWriter.doLock().
Closes #1686 Original pull request: #2879
This commit is contained in:
@@ -57,6 +57,7 @@ import org.springframework.util.ObjectUtils;
|
||||
* @author Mark Paluch
|
||||
* @author André Prata
|
||||
* @author John Blum
|
||||
* @author ChanYoung Joung
|
||||
* @since 2.0
|
||||
*/
|
||||
class DefaultRedisCacheWriter implements RedisCacheWriter {
|
||||
@@ -319,12 +320,15 @@ class DefaultRedisCacheWriter implements RedisCacheWriter {
|
||||
}
|
||||
|
||||
@Nullable
|
||||
private Boolean doLock(String name, Object contextualKey, @Nullable Object contextualValue,
|
||||
RedisConnection connection) {
|
||||
protected Boolean doLock(String name, Object contextualKey, @Nullable Object contextualValue,
|
||||
RedisConnection connection) {
|
||||
|
||||
Expiration expiration = Expiration.from(this.lockTtl.getTimeToLive(contextualKey, contextualValue));
|
||||
|
||||
return connection.stringCommands().set(createCacheLockKey(name), new byte[0], expiration, SetOption.SET_IF_ABSENT);
|
||||
while (!ObjectUtils.nullSafeEquals(connection.stringCommands().set(createCacheLockKey(name), new byte[0], expiration, SetOption.SET_IF_ABSENT),true)) {
|
||||
checkAndPotentiallyWaitUntilUnlocked(name, connection);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -38,12 +38,14 @@ import org.springframework.data.redis.test.condition.EnabledOnRedisDriver.Driver
|
||||
import org.springframework.data.redis.test.condition.RedisDriver;
|
||||
import org.springframework.data.redis.test.extension.parametrized.MethodSource;
|
||||
import org.springframework.data.redis.test.extension.parametrized.ParameterizedRedisTest;
|
||||
import org.springframework.lang.Nullable;
|
||||
|
||||
/**
|
||||
* Integration tests for {@link DefaultRedisCacheWriter}.
|
||||
*
|
||||
* @author Christoph Strobl
|
||||
* @author Mark Paluch
|
||||
* @author ChanYoung Joung
|
||||
*/
|
||||
@MethodSource("testParams")
|
||||
public class DefaultRedisCacheWriterTests {
|
||||
@@ -419,6 +421,45 @@ public class DefaultRedisCacheWriterTests {
|
||||
assertThat(stats.getPuts()).isZero();
|
||||
}
|
||||
|
||||
@ParameterizedRedisTest
|
||||
void doLockShouldGetLock() throws InterruptedException {
|
||||
|
||||
int threadCount = 3;
|
||||
CountDownLatch beforeWrite = new CountDownLatch(threadCount);
|
||||
CountDownLatch afterWrite = new CountDownLatch(threadCount);
|
||||
|
||||
DefaultRedisCacheWriter cw = new DefaultRedisCacheWriter(connectionFactory, Duration.ofMillis(50),
|
||||
BatchStrategies.keys()){
|
||||
@Nullable
|
||||
protected Boolean doLock(String name, Object contextualKey, @Nullable Object contextualValue,
|
||||
RedisConnection connection) {
|
||||
Boolean doLock = super.doLock(name, contextualKey, contextualValue, connection);
|
||||
assertThat(doLock).isTrue();
|
||||
return doLock;
|
||||
}
|
||||
};
|
||||
|
||||
cw.lock(CACHE_NAME);
|
||||
|
||||
for (int i = 0; i < threadCount; i++) {
|
||||
Thread th = new Thread(() -> {
|
||||
beforeWrite.countDown();
|
||||
cw.putIfAbsent(CACHE_NAME, binaryCacheKey, binaryCacheValue, Duration.ZERO);
|
||||
afterWrite.countDown();
|
||||
});
|
||||
|
||||
th.start();
|
||||
}
|
||||
|
||||
beforeWrite.await();
|
||||
|
||||
Thread.sleep(200);
|
||||
|
||||
cw.unlock(CACHE_NAME);
|
||||
afterWrite.await();
|
||||
|
||||
}
|
||||
|
||||
private void doWithConnection(Consumer<RedisConnection> callback) {
|
||||
|
||||
try (RedisConnection connection = connectionFactory.getConnection()) {
|
||||
|
||||
Reference in New Issue
Block a user