npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

two-buckets-memcache

v1.0.0

Published

Memcache that trades a simplified expiry strategy for a super low resource consumption

Downloads

123

Readme

Two Buckets Memcache

Memcache that trades a simplified expiry strategy for a super low resource consumption

Build Status Coverage Status Dependency Status

Installation

NPM Stats

This is a module for node.js and is installed via npm:

npm install two-buckets-memcache --save

What is special about this memory cache?

Schematic

The milliseconds you pass to the constructor define how soon the cache moves to a new bucket. The newest bucket is always the one in which new entries are stored. After the given milliseconds this bucket gets retired and is only used to get old cache entries. The second time the given milliseconds elapse, the retired bucket gets purged and the old cache entries it contains expire with it. As a result a stored cache entry expires after 1x to 2x the given milliseconds, i.e. 10-20 seconds.

This design allows a super low resource consumption:

  • Just a single timer is used, instead of one timer for each cache entry like many other memcaches do.
  • The asymptotic runtime for .has(...), .get(...), .set(...), and .remove(...) is still O(1) like you would expect.

Usage

var TwoBucketsMemcache = require('two-buckets-memcache');

var cache = new TwoBucketsMemcache(10000); // Entries expire in 10-20 seconds.

cache.set('some key', { any: 'value' });

cache.has('some key'); // -> true

cache.get('some key'); // -> { any: 'value' }

cache.remove('some key');

cache.get('some key'); // -> throws an Error

cache.destroy(); // if cache is not needed anymore

Changing the Expiration Speed

var TwoBucketsMemcache = require('two-buckets-memcache');

var cache = new TwoBucketsMemcache(10000); // Entries expire in 10-20 seconds.

// ...work with the cache.

cache.changeExpireAfter(5000); // Entries now expire in 5-10 seconds.

When passing a smaller milliseconds amount (= speeding up) then the change applies right away. That means that already the existing buckets will retire / be purged earlier than previously configured.

When passing a smaller milliseconds amount (= speeding down) then the change applies after the next bucket switch. That means that the existing buckets will retire / be purged according to the old milliseconds amount. Afterwards, the then retired bucket and a newly created bucket will retire / be purged according to the new milliseconds amount.

Listening to Buckets about to be Purged

var TwoBucketsMemcache = require('two-buckets-memcache');

var cache = new TwoBucketsMemcache(10000); // Entries expire in 10-20 seconds.

var listenerId = cache.listenPurge(function (bucket) {
    console.log(JSON.stringify(bucket));
});

// Add entries to the active bucket:
cache.set('some key', { any: 'value' });
cache.set('some other key', { any: 'other value' });

// ...wait 10 seconds and the active bucket retires.
// ...wait another 10 seconds and the now retired bucket is about to be purged.
// Callback above gets called and writes to the console: [['some key', { any: 'value' }], ['some other key', { any: 'other value' }]]

// You may stop listening:
cache.unlistenPurge(listenerId);

It is possible to access the cache within the callback:

var listenerId = cache.listenPurge(function (bucket) {
    
    cache.get(...); // Retrieves entries from bucket that is about to be purged as well.
    
    cache.set(...); // Adds the entry to the active bucket that will retire along with the about to be purged bucket.
    
});

Contributing

To set up your development environment for two-buckets-memcache:

  1. Clone this repo to your desktop,
  2. in the shell cd to the main folder,
  3. hit npm install,
  4. hit npm install gulp -g if you haven't installed gulp globally yet, and
  5. run gulp dev. (Or run node ./node_modules/.bin/gulp dev if you don't want to install gulp globally.)

gulp dev watches all source files and if you save some changes it will lint the code and execute all tests. The test coverage report can be viewed from ./coverage/lcov-report/index.html.

If you want to debug a test you should use gulp test-without-coverage to run all tests without obscuring the code by the test coverage instrumentation.

Change History

  • v1.0.0 (2019-02-09)
    • Breaking Change: Only EcmaScript v5.1 environments and node.js v4 or higher supported
    • Feat: Changing the expiration speed with .changeExpireAfter(...)
    • Feat: Listening to buckets about to be purged with .listenPurge(...) and .unlistenPurge(...)
  • v0.4.0 (2018-04-11)
    • Introduced .has(key) function
  • v0.3.1 (2018-04-11)
    • Fix: Allow reserved object property names to be used as keys
  • v0.3.0 (2016-04-03)
    • Optimized timer usage to use no timer when cache is empty (Thanks to @blai for his tip in issue #1)
    • Fix: .set(...) now throws an Error when called after .destroy()
    • Added error messages
    • Added node v5 to CI build
  • v0.2.0 (2015-10-17)
    • Added cache.remove(key)
  • v0.1.0 (2015-10-16)
    • Initial version

License (ISC)

In case you never heard about the ISC license it is functionally equivalent to the MIT license.

See the LICENSE file for details.