Add model cache for video

When fetching only immutable attributes
This commit is contained in:
Chocobozzz
2020-02-04 15:00:47 +01:00
parent e436baf0b0
commit 7eba5e1fa8
8 changed files with 106 additions and 21 deletions

View File

@@ -6,6 +6,10 @@ type ModelCacheType =
'local-account-name'
| 'local-actor-name'
| 'local-actor-url'
| 'video-immutable'
type DeleteKey =
'video'
class ModelCache {
@@ -14,7 +18,14 @@ class ModelCache {
private readonly localCache: { [id in ModelCacheType]: Map<string, any> } = {
'local-account-name': new Map(),
'local-actor-name': new Map(),
'local-actor-url': new Map()
'local-actor-url': new Map(),
'video-immutable': new Map()
}
private readonly deleteIds: {
[deleteKey in DeleteKey]: Map<number, { cacheType: ModelCacheType, key: string }[]>
} = {
video: new Map()
}
private constructor () {
@@ -29,8 +40,9 @@ class ModelCache {
key: string
fun: () => Bluebird<T>
whitelist?: () => boolean
deleteKey?: DeleteKey
}) {
const { cacheType, key, fun, whitelist } = options
const { cacheType, key, fun, whitelist, deleteKey } = options
if (whitelist && whitelist() !== true) return fun()
@@ -42,11 +54,34 @@ class ModelCache {
}
return fun().then(m => {
if (!m) return m
if (!whitelist || whitelist()) cache.set(key, m)
if (deleteKey) {
const map = this.deleteIds[deleteKey]
if (!map.has(m.id)) map.set(m.id, [])
const a = map.get(m.id)
a.push({ cacheType, key })
}
return m
})
}
invalidateCache (deleteKey: DeleteKey, modelId: number) {
const map = this.deleteIds[deleteKey]
if (!map.has(modelId)) return
for (const toDelete of map.get(modelId)) {
logger.debug('Removing %s -> %d of model cache %s -> %s.', deleteKey, modelId, toDelete.cacheType, toDelete.key)
this.localCache[toDelete.cacheType].delete(toDelete.key)
}
map.delete(modelId)
}
}
export {