2020-11-02 06:58:23 +00:00
|
|
|
import { Client } from '../models/client.ts'
|
2020-11-01 11:22:09 +00:00
|
|
|
|
2020-12-03 04:06:41 +00:00
|
|
|
/**
|
|
|
|
* Cache Manager used for Caching values related to Gateway connection
|
|
|
|
*
|
|
|
|
* In case of Redis, this will persistently cache session ID and seq for fast resumes.
|
|
|
|
*/
|
2020-11-01 11:22:09 +00:00
|
|
|
export class GatewayCache {
|
2020-11-02 06:58:23 +00:00
|
|
|
client: Client
|
|
|
|
cacheName: string = 'discord_gateway_cache'
|
2020-11-01 11:22:09 +00:00
|
|
|
|
2020-12-02 12:29:52 +00:00
|
|
|
constructor(client: Client, cacheName?: string) {
|
2020-11-02 06:58:23 +00:00
|
|
|
this.client = client
|
|
|
|
if (cacheName !== undefined) this.cacheName = cacheName
|
|
|
|
}
|
2020-11-01 11:22:09 +00:00
|
|
|
|
2020-12-02 12:29:52 +00:00
|
|
|
async get(key: string): Promise<undefined | any> {
|
2020-11-02 06:58:23 +00:00
|
|
|
const result = await this.client.cache.get(this.cacheName, key)
|
|
|
|
return result
|
|
|
|
}
|
2020-11-01 11:22:09 +00:00
|
|
|
|
2020-12-02 12:29:52 +00:00
|
|
|
async set(key: string, value: any): Promise<any> {
|
2020-11-02 06:58:23 +00:00
|
|
|
const result = await this.client.cache.set(this.cacheName, key, value)
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2020-12-02 12:29:52 +00:00
|
|
|
async delete(key: string): Promise<boolean> {
|
2020-11-02 06:58:23 +00:00
|
|
|
const result = await this.client.cache.delete(this.cacheName, key)
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
}
|