9
0
mirror of https://github.com/WiIIiam278/HuskSync.git synced 2025-12-25 09:39:18 +00:00

refactor/redis: use scan instead of keys

This commit is contained in:
William
2024-02-12 17:19:05 +00:00
parent c7e100a78a
commit 28afffe95e

View File

@@ -19,6 +19,7 @@
package net.william278.husksync.redis;
import com.google.common.collect.Sets;
import net.william278.husksync.HuskSync;
import net.william278.husksync.config.Settings;
import net.william278.husksync.data.DataSnapshot;
@@ -27,6 +28,8 @@ import org.jetbrains.annotations.Blocking;
import org.jetbrains.annotations.NotNull;
import redis.clients.jedis.*;
import redis.clients.jedis.exceptions.JedisException;
import redis.clients.jedis.params.ScanParams;
import redis.clients.jedis.resps.ScanResult;
import redis.clients.jedis.util.Pool;
import java.nio.charset.StandardCharsets;
@@ -296,16 +299,20 @@ public class RedisManager extends JedisPubSub {
public void clearUsersCheckedOutOnServer() {
final String keyFormat = String.format("%s*", RedisKeyType.DATA_CHECKOUT.getKeyPrefix(clusterId));
try (Jedis jedis = jedisPool.getResource()) {
final Set<String> keys = jedis.keys(keyFormat);
if (keys == null) {
plugin.log(Level.WARNING, "Checkout key returned null from Redis during clearing");
return;
}
for (String key : keys) {
if (jedis.get(key).equals(plugin.getServerName())) {
jedis.del(key);
}
}
final Set<String> keys = Sets.newHashSet();
// Scan for keys
String nextCursor;
do {
final ScanResult<String> scanResult = jedis.scan(keyFormat, new ScanParams().match(keyFormat));
keys.addAll(scanResult.getResult());
nextCursor = scanResult.getCursor();
} while (!nextCursor.equals("0"));
// Delete matched keys
jedis.del(keys.stream()
.filter(k -> jedis.get(k).equals(plugin.getServerName()))
.toArray(String[]::new));
} catch (Throwable e) {
plugin.log(Level.SEVERE, "An exception occurred clearing this server's checkout keys on Redis", e);
}