mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-17 00:10:58 -05:00
Remove cache hit & miss logs
This commit is contained in:
parent
22edab7ce1
commit
8216e4adfb
@ -26,13 +26,8 @@ export default class CacheServer {
|
||||
}
|
||||
static async get(key:any) {
|
||||
const cachedResult = await RedisClient.get(key);
|
||||
if (cachedResult) {
|
||||
Logger.forwardToConsole('log', Prefix, `Cache hit for ${key}`);
|
||||
return JSON.parse(cachedResult);
|
||||
} else {
|
||||
Logger.forwardToConsole('log', Prefix, `Cache miss for ${key}`);
|
||||
return null
|
||||
}
|
||||
if (cachedResult) return JSON.parse(cachedResult);
|
||||
else return null
|
||||
}
|
||||
static async set(key:any, value:any) {
|
||||
Logger.forwardToConsole('log', Prefix, `Building cache for ${key}`);
|
||||
|
Loading…
Reference in New Issue
Block a user