New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

simple-map-cache

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple-map-cache

Simple npm module offering caching functionality using the native map object.

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7
increased by40%
Maintainers
1
Weekly downloads
 
Created
Source

Simple Map Cache

This module a very simple key/value storage for node, so you can cache any operation, function or call results.

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.

Keywords

FAQs

Package last updated on 15 Jan 2019

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc