Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
adaptative-replacement-cache
Advanced tools
Implementation of the ARC algorithm for Node.js
Description of the algorithm can be found in: http://citeseer.ist.psu.edu/viewdoc/download?doi=10.1.1.13.5210&rep=rep1&type=pdf or https://www.ipvs.uni-stuttgart.de/export/sites/default/ipvs/abteilungen/as/lehre/lehrveranstaltungen/vorlesungen/WS1415/material/ARC.pdf
var cache = new ARC(3);
//creates a cache of size 3.
cache.on('eviction', function(key, val) {...});
//the cache emit an 'eviction' event when an element leaves the cache.
#API
cache.get(key)
returns undefined if the key is not in cache else returns its value; the cache internal state is updated if and only if the value is not null.
cache.peek(key)
silently retrieves the value associated to key if key is in cache, else returns undefined.
cache.update(key, val)
silently updates the value associated to a key that MUST be in the cache.
cache.del(key)
is the same as cache.update(key, null)
cache.set(key, val)
adds a new entry in the cache and update cache internal state. Key MUST NOT be in the cache.
FAQs
Implementation of the ARC algorithm for Node.js
The npm package adaptative-replacement-cache receives a total of 0 weekly downloads. As such, adaptative-replacement-cache popularity was classified as not popular.
We found that adaptative-replacement-cache demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.