Populate cached models immediately upon startup
This commit is contained in:
parent
a4d00ca5b0
commit
d8b66742de
@ -36,6 +36,7 @@ import lombok.extern.slf4j.Slf4j;
|
|||||||
import net.frozenorb.apiv3.handler.ActorAttributeHandler;
|
import net.frozenorb.apiv3.handler.ActorAttributeHandler;
|
||||||
import net.frozenorb.apiv3.handler.AuthorizationHandler;
|
import net.frozenorb.apiv3.handler.AuthorizationHandler;
|
||||||
import net.frozenorb.apiv3.handler.MetricsHandler;
|
import net.frozenorb.apiv3.handler.MetricsHandler;
|
||||||
|
import net.frozenorb.apiv3.model.*;
|
||||||
import net.frozenorb.apiv3.route.GETDumpsType;
|
import net.frozenorb.apiv3.route.GETDumpsType;
|
||||||
import net.frozenorb.apiv3.route.GETWhoAmI;
|
import net.frozenorb.apiv3.route.GETWhoAmI;
|
||||||
import net.frozenorb.apiv3.route.auditLog.GETAuditLog;
|
import net.frozenorb.apiv3.route.auditLog.GETAuditLog;
|
||||||
@ -197,6 +198,12 @@ public final class APIv3 extends AbstractVerticle {
|
|||||||
database.getCollection("userMeta").createIndexes(ImmutableList.of(
|
database.getCollection("userMeta").createIndexes(ImmutableList.of(
|
||||||
new IndexModel(new Document("user", 1).append("serverGroup", 1))
|
new IndexModel(new Document("user", 1).append("serverGroup", 1))
|
||||||
), (a, b) -> {});
|
), (a, b) -> {});
|
||||||
|
|
||||||
|
BannedAsn.updateCache();
|
||||||
|
BannedCellCarrier.updateCache();
|
||||||
|
Rank.updateCache();
|
||||||
|
Server.updateCache();
|
||||||
|
ServerGroup.updateCache();
|
||||||
}
|
}
|
||||||
|
|
||||||
private ObjectMapper createMongoJacksonMapper() {
|
private ObjectMapper createMongoJacksonMapper() {
|
||||||
|
@ -42,11 +42,10 @@ public final class BannedAsn {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static {
|
static {
|
||||||
updateCache();
|
|
||||||
APIv3.getVertxInstance().setPeriodic(TimeUnit.MINUTES.toMillis(1), (id) -> updateCache());
|
APIv3.getVertxInstance().setPeriodic(TimeUnit.MINUTES.toMillis(1), (id) -> updateCache());
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void updateCache() {
|
public static void updateCache() {
|
||||||
bannedAsnsCollection.find().into(new LinkedList<>(), (bannedAsns, error) -> {
|
bannedAsnsCollection.find().into(new LinkedList<>(), (bannedAsns, error) -> {
|
||||||
if (error != null) {
|
if (error != null) {
|
||||||
error.printStackTrace();
|
error.printStackTrace();
|
||||||
|
@ -43,11 +43,10 @@ public final class BannedCellCarrier {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static {
|
static {
|
||||||
updateCache();
|
|
||||||
APIv3.getVertxInstance().setPeriodic(TimeUnit.MINUTES.toMillis(1), (id) -> updateCache());
|
APIv3.getVertxInstance().setPeriodic(TimeUnit.MINUTES.toMillis(1), (id) -> updateCache());
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void updateCache() {
|
public static void updateCache() {
|
||||||
bannedCellCarriersCollection.find().into(new LinkedList<>(), (bannedCellCarriers, error) -> {
|
bannedCellCarriersCollection.find().into(new LinkedList<>(), (bannedCellCarriers, error) -> {
|
||||||
if (error != null) {
|
if (error != null) {
|
||||||
error.printStackTrace();
|
error.printStackTrace();
|
||||||
|
@ -42,11 +42,10 @@ public final class Rank {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static {
|
static {
|
||||||
updateCache();
|
|
||||||
APIv3.getVertxInstance().setPeriodic(TimeUnit.MINUTES.toMillis(1), (id) -> updateCache());
|
APIv3.getVertxInstance().setPeriodic(TimeUnit.MINUTES.toMillis(1), (id) -> updateCache());
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void updateCache() {
|
public static void updateCache() {
|
||||||
ranksCollection.find().into(new LinkedList<>(), (ranks, error) -> {
|
ranksCollection.find().into(new LinkedList<>(), (ranks, error) -> {
|
||||||
if (error != null) {
|
if (error != null) {
|
||||||
error.printStackTrace();
|
error.printStackTrace();
|
||||||
|
@ -45,12 +45,11 @@ public final class Server {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static {
|
static {
|
||||||
updateCache();
|
|
||||||
APIv3.getVertxInstance().setPeriodic(TimeUnit.MINUTES.toMillis(1), (id) -> updateCache());
|
APIv3.getVertxInstance().setPeriodic(TimeUnit.MINUTES.toMillis(1), (id) -> updateCache());
|
||||||
APIv3.getVertxInstance().setPeriodic(TimeUnit.MINUTES.toMillis(1), (id) -> updateTimedOutServers());
|
APIv3.getVertxInstance().setPeriodic(TimeUnit.MINUTES.toMillis(1), (id) -> updateTimedOutServers());
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void updateCache() {
|
public static void updateCache() {
|
||||||
serversCollection.find().into(new LinkedList<>(), (servers, error) -> {
|
serversCollection.find().into(new LinkedList<>(), (servers, error) -> {
|
||||||
if (error != null) {
|
if (error != null) {
|
||||||
error.printStackTrace();
|
error.printStackTrace();
|
||||||
|
@ -40,11 +40,10 @@ public final class ServerGroup {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static {
|
static {
|
||||||
updateCache();
|
|
||||||
APIv3.getVertxInstance().setPeriodic(TimeUnit.MINUTES.toMillis(1), (id) -> updateCache());
|
APIv3.getVertxInstance().setPeriodic(TimeUnit.MINUTES.toMillis(1), (id) -> updateCache());
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void updateCache() {
|
public static void updateCache() {
|
||||||
serverGroupsCollection.find().into(new LinkedList<>(), (serverGroups, error) -> {
|
serverGroupsCollection.find().into(new LinkedList<>(), (serverGroups, error) -> {
|
||||||
if (error != null) {
|
if (error != null) {
|
||||||
error.printStackTrace();
|
error.printStackTrace();
|
||||||
|
Loading…
Reference in New Issue
Block a user