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

lru-cachify

v1.0.6

Published

Wrap functions in lru-cache

Downloads

18

Readme

lru-cachify

Purpose: easily wrap a function to provide caching. Inspired by memoizee, but simpler in some ways and with some extra / different functionality. Uses lru-cache for the caching functionality itself.

Usage

var cachify = require('lru-cachify');
var getThings = cachify(function () {
    return { };
});

getThings('foo') === getThings('foo');
getThings('foo') !== getThings('bar');

Options

You can pass lru-cache options as an optional first argument

var getThings = cachify({
    max: 1        
}, function () {
    return { };
});

var foo = getThings('foo'),
	bar = getThings('bar');

getThings('bar') === bar;
getThings('foo') !== foo;

In addition to this, lru-cachify provides three options of its own:

  • normalize: a function to normalize the options before constructing the cache key
  • length: the number of arguments to use in constructing the cache key
  • key: a function that returns the cache key, given the normalized (and possibly truncated) arguments

Example:

var getThings = cachify({
    normalize: function (a, b, c) {
        // allow passing of an array or separate arguments
        if (Array.isArray(a)) { return a; }
        return [a, b, c];
    },
    key: function (a, b) {
        return a + b;
    },
    length: 2
}, function (a, b, c) {
    return a * b + c;         
});

getThings(2, 3, 4) === 10;
getThings([2, 3, 4]) === 10; // array normalized to arguments
getThings(3, 2, 4) === 10;   // 3 + 2 === 2 + 3, so the key is the same
getThings(2, 3, 5) === 10;   // length is 2, so the third argument is ignored when constructing the key

LRU Methods

Public methods of LRU instances are assigned to the returned function, so you can do things like peek or reset the cache:

var count = 0;
var getCount = cachify(function () { return ++count; });

getCount() === 1;
getCount() === 1;
getCount.reset();
getCount() === 2;     

Promises

The promise itself is cached, but deleted if it rejects. Because of this, multiple equivalent synchronous calls will be combined into a single promise, reducing database or api overhead:

var getThings = cachify(function (id) {
    return db.queryAsync('SELECT name FROM people WHERE id = $1', [ id ]);
});

var foo = getThings(1),
    bar = getThings(1);

foo === bar;
foo.then(function (val) {
    val === 'Bob'; // assuming people has a record with {id: 1, name: 'Bob'}
});

Rejections will be batched in the same manner as a result of this behavior:

var rejections = 0;
var getThings = cachify(function (id) {
    return Promise.reject(++rejections);
});

var foo = getThings(1),
    bar = getThings(1);

foo === bar;

foo.then(null, function (err) {
    err === 1;
});
bar.then(null, function (err) {
    err === 2;
});

The difference is shown here:

var succeed = cachify(function () {
    return Promise.resolve('yes');
});
var fail = cachify(function () {
    return Promise.reject('no');
});

var foo = succeed();
foo.then(function () {
    succeed() === foo;
});

var bar = fail();
bar.then(function () {
    fail() !== bar;
});

There is currently no similar handling for callback APIs.