🐢 First-In-First-Out (FIFO) Cache
🐝 Random Replacement (RR) Cache
Tip
Code is ready for copy-paste. Use plain TS files or JS + type annotations, whatever you need.
Yet another cache implementations. But why? Yeah, there are a few reasons for that.
Major reasons:
- Research.
- Education.
- Fun.
Minor reasons:
- To produce ready-to-use library well enough to just copy-paste into real project.
There are also several let's say acceptance criteria and non-functional requirements which I follow here:
- Simplicity in implementation means better maintainability.
If in general it's usually true, this is very subjective if applied to implementations in this repository. Despite the fact that I try to maintain the lowest complexity level as it's possible and reasonable (without damage to performance in the first place), some specific decisions could probably be simplified.
-
Simplicity in interface means better learnability (see "ISO/IEC 9126 Software engineering — Product quality").
-
Zero dependencies to achieve better predictability, safety, reduces overall application size and CI/CD duration.
When the cache becomes full, a cache block or record/entry must be evicted to make room for a new block. The replacement policy determines which block to evict.
Various cache implementations can have slightly different public APIs, however most of them are very consistent in their core capabilities. In the list below there are typical extra features which can be found in known cache realisations (as part of their public API):
Member | Type | Description |
---|---|---|
size |
property | Number of entries/items/records actually stored in cache ( |
from |
static | Instantiate cache with data (usually key-value structure). |
setpop |
method | Sets a value for the given key, but besides that returns evicted object or old value. |
peek |
method | Retrieves the value associated with the given key, doesn't update access information. |
forEach |
method | Convenient helper methods implementing the ability to iterate on cache data. |
keys |
method | |
values |
method | |
entries |
method |