ECMAScript Stage-1 Proposal. 2022.
Champions: Hemanth HM; J. S. Choi; Shu-yu Guo.
There are only two hard things in computer science: cache invalidation and naming things.
Developers often use mapping data structures as caches, and they often wish to limit the memory consumption of said caches. Cache-replacement policies are common, useful, repetitive, and annoying to reimplement.
For example, the proposed memo function (for function memoization) would use Map-like objects to store recent function calls’ arguments and results, giving the developer the power to decide on what cache-replacement policy and limit they wish:
const cache = new LIFOMap(256);
const fnMemo = expensiveFn.memo(cache);
console.log([ fnMemo(0) ]);
// Only the first fnMemo(0) calls expensiveFn; the second fnMemo(0) looks up
// the result of the first call in the cache.
Another use case might be memory management for large applications, as an alternative to using WeakRefs or exposing garbage-collection hooks. (See issue #4.)
However, without built-in Map-like classes with cache policies, it would be difficult, annoying, and unergonomic to assign a policy to the memo function from a userland library or hand-written data structure.
We therefore propose exploring the addition of mapping data structures to the JavaScript language that support various basic, simple cache replacement policies, e.g., LRU (least recently used), LFU (least frequently used), FIFO (first in, first out) and LIFO (last in, first out).
If this proposal is approved for Stage 1, then we would explore various directions for the design of these data structures, and we will decide on which policies would be most appropriate to add. We would also assemble as many real-world use cases as possible and shape our design to fulfill them.
In addition, if both proposal-function-memo and this proposal are approved for Stage 1, then we would explore how memoized functions could use these data structures to control their caches’ memory usage.
The proposal would add several built-in classes to the global object. Each of these have either a mutable Map-like interface or a mutable Set-like interface (although neither are actual subclasses of Map or Set; see issue #1).
For the Map-like classes, these include:
m.size
: The number of entries in m
.
m.has(key)
: Returns a boolean of whether m
has an entry with the given
key
.
m.get(key)
: Returns the value of the entry in m
with the given key
, if
any such entry exists; otherwise returns undefined
.
m.set(key, value)
: Adds an entry to m
with the given key
mapped to the
given value
. Returns m
itself.
m.delete(key)
: Deletes the entry in m
with the given key
, if any. Returns
a boolean of whether m
did have an entry with the key
before it was
deleted.
m.clear()
: Removes all entries from m
. Returns undefined
.
m[Symbol.iterator]()
: Uncertain if we should implement. See issue #3.
m.entries()
: Uncertain if we should implement. See issue #3.
m.keys()
: Uncertain if we should implement. See issue #3.
m.values()
: Uncertain if we should implement. See issue #3.
m.forEach()
: Uncertain if we should implement. See issue #3.
For the Set-like classes, these include:
s.size
: The number of values in s
.
s.has(value)
: Returns a boolean of whether s
has the given value
.
s.add(value)
: Adds the given value
to s
. Returns s
itself.
s.delete(key)
: Deletes the given value
from s
, if s
has value
.
Returns a boolean of whether s
did have value
before value
was deleted.
s.clear()
: Removes all values from s
. Returns undefined
.
m[Symbol.iterator]()
: Uncertain if we should implement. See issue #3.
s.values()
: Uncertain if we should implement. See issue #3.
s.forEach()
: Uncertain if we should implement. See issue #3.
new FIFOMap(maxNumOfEntries, entries = [])
new FIFOSet(maxNumOfValues, values = [])
The constructors throw TypeErrors if they are given non-integer max numbers of entries/values, or if the initial entries/values are not iterable.
Their instances evict entries/values in the order they were added, as if they were FIFO queues.
new LIFOMap(maxNumOfEntries, entries = [])
new LIFOSet(maxNumOfValues, values = [])
These constructors throw TypeErrors if they are given non-integer max numbers of entries/values, or if the initial entries/values are not iterable.
Their instances evict entries/values in the order they were added, as if they were LIFO stacks.
new LIFOMap(maxNumOfEntries, entries = [])
new LIFOSet(maxNumOfValues, values = [])
These constructors throw TypeErrors if they are given non-integer max numbers of entries/values, or if the initial entries/values are not iterable.
Their instances first evict the entries/values that were least recently
accessed with .get
(for LRUMap) or .has
(for LRUSet).
new LIFOMap(maxNumOfEntries, entries = [])
new LIFOSet(maxNumOfValues, values = [])
These constructors throw TypeErrors if they are given non-integer max numbers of entries/values, or if the initial entries/values are not iterable.
Their instances first evict the entries/values that were least frequently
accessed with .get
(for LRUMap) or .has
(for LRUSet).
Alternatively, we could add optional arguments to the existing Map and Set constructors:
const cache = new Map(initialEntries, 256, policyType);
- collections.js
- Google Guava caches
- Python functools.lru_cache
- rsms/js-lru API includes iterators, newest, & oldest