3.0.3 • Published 4 years ago

simple-map-cache v3.0.3

Weekly downloads
17
License
MIT
Repository
github
Last release
4 years ago

Simple Map Cache

This module a very simple key/value storage for node, so you can cache any operation, function or call results. The cache map persist after the module is reloaded (the map is stored in a JSON file)

This used to be part of my module simple-fetch-cache, but I decided to extract it and publish it on its own. It doesn't have any external dependencies and it uses the native Map object to track the entries.

Install

You can install with npm:

$ npm install --save simple-map-cache

Usage

Please look at the index.test.js file to check how the module can be used, but in a nutshell these are the methods available:

set, get, del, clear

ParameterDescription
setAdd new entry to the cache. ie set('day', 'friday')
getRetrieves entry from the cache. get('day') // returns friday. undefined for the non existing values.
delRemoves entry from the cache
clearWipes out all the entries from the cache

Time to live (TTL)

All the requests cached in memory will persist there as long as the process in running. Nevertheless if you require the cache to expire after X miliseconds, you can pass it as a second parameter. ie:

// It will disappear after 100 msec.
> const cache = require('simple-map-cache')
> cache.set('testephimeral', 'shouldberemovedsoon', 100)

License

Copyright © 2019, Juan Convers. Released under the MIT License.

3.0.3

4 years ago

3.0.2

4 years ago

2.0.0

5 years ago

1.1.0

5 years ago

1.0.0

5 years ago