ptarjan / node-cache

A simple in-memory cache for nodejs
BSD 2-Clause "Simplified" License
1.59k stars 214 forks source link

[Feature Addition]Hits Cache #112

Open LRagji opened 4 years ago

LRagji commented 4 years ago

Added a new dimension for cache content expiry which evicts content based on number of hits. Simply put every fetch call adds time to the expiry of the content, cause of which that content stays longer time in the cache compared to other.

Thanks Laukik