]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/models/model-cache.ts
Use a singleton for model cache
[github/Chocobozzz/PeerTube.git] / server / models / model-cache.ts
CommitLineData
0ffd6d32
C
1import { Model } from 'sequelize-typescript'
2import * as Bluebird from 'bluebird'
3import { logger } from '@server/helpers/logger'
4
5type ModelCacheType =
6 'local-account-name'
7 | 'local-actor-name'
8 | 'local-actor-url'
9
10class ModelCache {
11
12 private static instance: ModelCache
13
14 private readonly localCache: { [id in ModelCacheType]: Map<string, any> } = {
15 'local-account-name': new Map(),
16 'local-actor-name': new Map(),
17 'local-actor-url': new Map()
18 }
19
20 private constructor () {
21 }
22
23 static get Instance () {
24 return this.instance || (this.instance = new this())
25 }
26
27 doCache<T extends Model> (options: {
28 cacheType: ModelCacheType
29 key: string
30 fun: () => Bluebird<T>
31 whitelist?: () => boolean
32 }) {
33 const { cacheType, key, fun, whitelist } = options
34
35 if (whitelist && whitelist() !== true) return fun()
36
37 const cache = this.localCache[cacheType]
38
39 if (cache.has(key)) {
40 logger.debug('Model cache hit for %s -> %s.', cacheType, key)
41 return Bluebird.resolve<T>(cache.get(key))
42 }
43
44 return fun().then(m => {
45 if (!whitelist || whitelist()) cache.set(key, m)
46
47 return m
48 })
49 }
50}
51
52export {
53 ModelCache
54}