cache-entanglement
v1.2.2
Published
Manage caches that are dependent on each other efficiently.
Downloads
263
Readme
cache-entanglement
Manage caches that are dependent on each other efficiently.
import { CacheEntanglementSync } from 'cache-entanglement'
const name = new CacheEntanglementSync((key, state, value: string) => {
return value
})
const age = new CacheEntanglementSync((key, state, value: number) => {
return value
})
const user = new CacheEntanglementSync((key, state) => {
const { name, age } = state
return {
name: name.raw,
age: age.raw,
}
}, {
name,
age,
})
name.cache('john', 'John')
age.cache('john', 20)
user.cache('john/user')
user.get('john/user').raw // { name: "John", age: 20 }
age.update('john', 21)
user.get('john/user').raw // { name: "John", age: 21 }
Why do you use cache-entanglement?
Managing caches is not an easy task in complex applications. And caches often have dependencies where one cache references another cache. In this case, the logic to update all caches referencing a cache when that cache is updated is more complex than you might think.
The cache-entanglement library is designed to solve this problem.
Installation
Node.js
npm i cache-entanglement
const {
CacheEntanglementSync,
CacheEntanglementAsync
} = require('cache-entanglement')
// or
import {
CacheEntanglementSync,
CacheEntanglementAsync
} from 'cache-entanglement'
Browser (esm)
import {
CacheEntanglementSync,
CacheEntanglementAsync
} 'https://cdn.jsdelivr.net/npm/[email protected]/+esm'
Conceptualization
The cache-entanglement library is quite different from the usage of other cache libraries. It is designed to solve dependency problems between caches.
I will explain some of the features of this library in detail.
Cache key naming convention
If the cache is dependent on another cache, the naming convention of the key must be followed to ensure correct operation.
For example, let's say you have caches that contain company and employee information, respectively. Employee depends on the cache information of the company they belong to.
const company = new CacheEntanglementSync((key, state, companyName: string) => {
return companyName
})
const employee = new CacheEntanglementSync((key, { company }, name: string) => {
...
const companyName = company.raw
return {
name,
companyName,
}
}, {
company
})
If the company name is github, the employee's name should have the structure github/your-name. Here's an example:
company.cache('github', 'Github')
employee.cache('github/john', 'john')
employee.cache('github/lee', 'lee')
employee.get('github/lee') // { name: "lee", companyName: "Github" }
Why name it like this?
This is the process of letting the library know that the github/lee cache from the employee variable depends on the github cache from the company variable.
By creating it this way, when the github cache of the company instance is updated, all employee cache values that belong to github/* are updated.
If there is another cache instance that depends on the employee, append / after it.
const card = new CacheEntanglementSync((key, { employee }, tel: string) => {
return {
...employee.clone(),
tel,
}
}, {
employee
})
const johnCard = card.cache('github/john/card', 'xxx-xxxx-xxxx')
Cache creation function
Most general cache libraries directly assign cache values to instances. However, this library does not directly enter values, but uses a cache creation function to generate cache values. It can be used as follows:
class FileManager {
constructor() {
this.content = new CacheEntanglementAsync(async (key, state, path: string) => {
return await fs.readFile(path)
}, {})
}
async getContent(path: string): Promise<string> {
return await this.content.cache(`key:${path}`, path)
}
}
When used this way, the first time the getContent method is called, the cache instance checks if there is a cache corresponding to the key and calls the creation function to cache the value if it does not exist.
After that, when the getContent method is called again, the value is already there, so it does not call the function again and returns the stored value.
Dependency
Often, caches have dependencies on other caches that refer to them. When a cache that has a dependency on another cache is updated, the cache that refers to it should also be updated. In this library, the dependency of a cache can be expressed as follows:
const articleComments = new CacheEntanglementSync((key, state, comments: string[]) => {
return comments
}, {})
const articleContent = new CacheEntanglementSync((key, state, content: string) => {
return content
}, {})
const article = new CacheEntanglementSync((key, {
articleComments,
articleContent,
}) => {
return {
articleComments: articleComments.raw,
articleContent: articleContent.raw,
}
}, {
articleComments,
articleContent,
})
function postArticle(content: string) {
const id = uuid()
// Caches with dependencies should be updated first.
articleComments.cache(id, [])
articleContent.cache(id, content)
article.cache(id)
}
function addComment(id: string, comment: string) {
if (!articleComments.exists(id)) {
throw new Error(`article '${id}' is not existing.`)
}
const comments = articleComments.get(id).clone('array-shallow-copy')
comments.push(comment)
articleComments.update(id, comments)
}
Using beforeUpdateHook
This can be used in the constructor function, and it is called when the cache is created or updated. For example, when the following code is executed, the console output will appear in the following order.
const myCache = new CacheEntanglementSync((key, state, myArg) => {
console.log('created!')
}, {}, (key, dependencyKey, myArg) => {
console.log('key', key)
console.log('dependency key', dependencyKey)
console.log('my argument', myArg)
})
myCache.cache('my/test', 123)
log: "key" "my/test"
log: "dependency key" "my"
log: "my argument" 123
log: "created!"
Such update hooks can be used to "safely assign" dependent caches in a bottom-up reverse order. See the following example.
const name = new CacheEntanglementSync((key, state, name: string) => {
return name
})
const age = new CacheEntanglementSync((key, state, age: number) => {
return age
})
const user = new CacheEntanglementSync((key, state, _name: string, _age: number) => {
const name = state.name.clone()
const age = state.age.clone()
return {
name,
age,
}
}, {
name,
age,
}, (key, dependencyKey, _name, _age) => {
name.cache(key, _name)
age.cache(key, _age)
})
user.cache('john', 'john', 20)
This example demonstrates how to create the user cache without first generating the dependent caches, name and age. The beforeUpdateHook function attempts to create the dependent caches first, and if they already exist, they won't be created again.
Note: Do not use the cache's update method inside the beforeUpdateHook function, as it may cause recursion and break your application.
With TypeScript
import { CacheEntanglementSync } from 'cache-entanglement'
class MyClass {
private readonly _myCache: ReturnType<MyClass['_createMyCache']>
constructor() {
this._myCache = this._createMyCache()
}
private _createMyCache() {
return new CacheEntanglementSync((key, state) => {
...
})
}
}
License
MIT LICENSE