mirror of
https://gitee.com/san-bing/JChargePointProtocol
synced 2026-05-06 02:49:57 +08:00
48 lines
1.2 KiB
Java
48 lines
1.2 KiB
Java
/**
|
||
* 开源代码,仅供学习和交流研究使用,商用请联系三丙
|
||
* 微信:mohan_88888
|
||
* 抖音:程序员三丙
|
||
* 付费课程知识星球:https://t.zsxq.com/aKtXo
|
||
*/
|
||
package sanbing.jcpp.infrastructure.cache;
|
||
|
||
import lombok.RequiredArgsConstructor;
|
||
import lombok.extern.slf4j.Slf4j;
|
||
import org.springframework.data.redis.connection.RedisConnection;
|
||
|
||
import java.io.Serializable;
|
||
import java.util.Objects;
|
||
|
||
@Slf4j
|
||
@RequiredArgsConstructor
|
||
public class RedisCacheTransaction<K extends Serializable, V extends Serializable> implements CacheTransaction<K, V> {
|
||
|
||
private final RedisTransactionalCache<K, V> cache;
|
||
private final RedisConnection connection;
|
||
|
||
@Override
|
||
public void put(K key, V value) {
|
||
cache.put(key, value, connection);
|
||
}
|
||
|
||
@Override
|
||
public boolean commit() {
|
||
try {
|
||
var execResult = connection.exec();
|
||
return execResult.stream().anyMatch(Objects::nonNull);
|
||
} finally {
|
||
connection.close();
|
||
}
|
||
}
|
||
|
||
@Override
|
||
public void rollback() {
|
||
try {
|
||
connection.discard();
|
||
} finally {
|
||
connection.close();
|
||
}
|
||
}
|
||
|
||
}
|