Socket
Socket
Sign inDemoInstall

kitten-cache

Package Overview
Dependencies
0
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    kitten-cache

Highly performant LRU cache.


Version published
Weekly downloads
462
decreased by-36.63%
Maintainers
2
Install size
16.5 kB
Created
Weekly downloads
 

Readme

Source

Kitten-cache

Highly performant LRU cache.

Install

  1. Install
  npm i kitten-cache
  1. Require the dependence
  const Cache = require('kitten-cache');
  1. Declare new instance
  let cache = new Cache();

API

Instance

  new Cache(options)

  /*
    options : {
      size     : default 50,
      onRemove : function to call when a key/value is removed from the cache
    }
  */

Cache.set(key, value)

  let cache = new Cache();

  cache.set('a', 1);

Cache.get(key)

  let cache = new Cache();

  cache.set('a', 1);
  cache.get('a'); // -> 1

Cache.has(key)

  let cache = new Cache();

  cache.set('a', 1);
  cache.has('a'); // -> true
  cache.has('b'); // -> false

Cache.delete(key)

  let cache = new Cache();

  cache.set('a', 1);

  cache.delete('a'); // -> true
  cache.delete('b'); // -> false

FAQs

Last updated on 13 Jan 2020

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