Lý do cho ngoại lệ có thể là do việc triển khai mẫu Spring không sử dụng lại cùng một kết nối cho .multi()
và .exec()
. Bạn có thể thử sử dụng execute()
qua một cuộc gọi lại:
private RedisTemplate template = ...;
template.execute(
new RedisCallback() {
@Override
public Object doInRedis(RedisConnection connection)
throws DataAccessException {
connection.multi();
//do whatever you need, like deleting and repopulating some keys
connection.expire(CHANNEL_KEY.getBytes(), EXPIRE_SECS);
connection.exec();
return null;
}
}
);