Socket
Socket
Sign inDemoInstall

volos-cache-memory

Package Overview
Dependencies
5
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    volos-cache-memory

Basic in-memory caching library for the Volos system.


Version published
Weekly downloads
461
decreased by-10.83%
Maintainers
1
Install size
214 kB
Created
Weekly downloads
 

Readme

Source

volos-cache-memory

This is a memory-backed implementation of cache support for Volos.

Once initialized, the interface to the module is exactly what is in the "volos-cache-common" module. See that module for detailed docs.

Initialization

To get a cache, you call "create" on the exported module and pass a name and "options" hash. The options can contain the following parameters:

ttl: the default ttl (in ms) to use for cached values (optional, default: 300ms) encoding: the default string encoding to use for cached values (optional, default: none) maxEntries: the maximum number of entries maintained before dropping the least recent entries (optional, default: 1000)

Note: The cache name represents a namespace. A created cache will share values (but not necessary options) with other volos-cache-memory caches on this node you create using the same name.

Keywords

FAQs

Last updated on 24 Feb 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc