Type Alias CacheConfiguration

CacheConfiguration: {
    appGrants: CacheConfigurationEntry;
    gameLabsActions: CacheConfigurationEntry;
    gameLabsEntityEvents: CacheConfigurationEntry;
    gameLabsEntityVehicles: CacheConfigurationEntry;
    gameServerDetails: CacheConfigurationEntry;
    leaderboard: CacheConfigurationEntry;
    listBans: CacheConfigurationEntry;
    playerList: CacheConfigurationEntry;
    playerStats: CacheConfigurationEntry;
    priorityQueue: CacheConfigurationEntry;
    serverInfo: CacheConfigurationEntry;
    serverStatistics: CacheConfigurationEntry;
    userLookup: CacheConfigurationEntry;
    whitelist: CacheConfigurationEntry;
}

CacheConfiguration is an object that represents the cache configuration for all cache keys in the client. Caching is only performed for GET requests, and the cache configuration is used to determine the TTL and maximum size of the cache for each key.