Re-enable server cache
All checks were successful
Deploy API / docker (17, 3.8.5) (push) Successful in 1m45s
All checks were successful
Deploy API / docker (17, 3.8.5) (push) Successful in 1m45s
This commit is contained in:
parent
1a4929d8b5
commit
5c32804114
@ -431,11 +431,11 @@ public final class MojangService {
|
||||
}
|
||||
|
||||
// Check the cache for the server
|
||||
// Optional<CachedMinecraftServer> cached = minecraftServerCache.findById("%s-%s".formatted(platform.name(), lookupHostname));
|
||||
// if (cached.isPresent()) { // Respond with the cache if present
|
||||
// log.info("Found server in cache: {}", hostname);
|
||||
// return cached.get();
|
||||
// }
|
||||
Optional<CachedMinecraftServer> cached = minecraftServerCache.findById("%s-%s".formatted(platform.name(), lookupHostname));
|
||||
if (cached.isPresent()) { // Respond with the cache if present
|
||||
log.info("Found server in cache: {}", hostname);
|
||||
return cached.get();
|
||||
}
|
||||
List<DNSRecord> records = new ArrayList<>(); // The resolved DNS records for the server
|
||||
|
||||
SRVRecord srvRecord = platform == MinecraftServer.Platform.JAVA ? DNSUtils.resolveSRV(hostname) : null; // Resolve the SRV record
|
||||
@ -467,7 +467,7 @@ public final class MojangService {
|
||||
((JavaMinecraftServer) minecraftServer.getValue()).setMojangBanned(isServerBlocked(hostname));
|
||||
}
|
||||
|
||||
// minecraftServerCache.save(minecraftServer);
|
||||
minecraftServerCache.save(minecraftServer);
|
||||
log.info("Cached server: {}", hostname);
|
||||
minecraftServer.setCached(-1L); // Set to -1 to indicate it's not cached in the response
|
||||
return minecraftServer;
|
||||
|
Loading…
Reference in New Issue
Block a user