We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement functional object with following properties methods and events:
memoized.clear()
memoized.add(key, value)
memoized.del(key)
memoized.get(key)
memoized.timeout: Number
memoized.maxSize: Number
memoized.maxCount: Number
memoized.on('add', Function)
memoized.on('del', Function)
memoized.on('clear', Function)
The text was updated successfully, but these errors were encountered:
Async memoize first implementation
a49b1d0
Refs: #268
6ee5370
Refs: #268 PR-URL: #271
tshemsedinov
No branches or pull requests
Implement functional object with following properties methods and events:
memoized.clear()
- clear cachememoized.add(key, value)
- add value to cachmemoized.del(key)
- remove value from cachmemoized.get(key)
- returns saved valuememoized.timeout: Number
- cache timoutmemoized.maxSize: Number
- maximum cache size in bytesmemoized.maxCount: Number
- maximum cache size in item countmemoized.on('add', Function)
memoized.on('del', Function)
memoized.on('clear', Function)
The text was updated successfully, but these errors were encountered: