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

@cababunga/lru

v0.5.1

Published

In process cache with least-recently-used eviction logic, O(1) complexity for all operations and optional compression.

Downloads

9

Readme

In-process cache

In process cache with least-recently-used eviction logic, O(1) complexity for all operations and optional compression.

Install

npm i @cababunga/lru

Use

const lru = require("@cababunga/lru");
const expensiveCall = async (a, b) => 
    new Promise(resolve => setTimeout(() => resolve(a * b), 1000));
const cache = new lru({log: console.log});
const cachedCall = cache.cachify(expensiveCall);
await cachedCall(2, 2);
await cachedCall(2, 2);
await cachedCall(2, 2);

Constructor Options:

  • exp - caching duration in seconds [30*60]
  • max - maximum memory to use for cache [1MiB]
  • log - function to use for debug logging [()=>{}]
  • codec - object with optional functions
  • codec.encode - takes an object and returns its serialized representation as a buffer
  • codec.decode - takes a buffer created by .encode and decodes it into an object
  • codec.serialize - data serializer [JSON.stringify()]
  • codec.parse - cache entry parser [JSON.parse()]
  • codec.compress - compress cache entry before storage [no compression]
  • codec.decompress - decompress cache entry after retrieval [no decompression]
  • codec.makeKey - takes an array (of function arguments) and produces sufficiently unique digest suitable to be used as a cache key [hex(md5(JSON.stringify()))]
  • codec.log - function that can be used for logging some cache serialization/compression timing [opt.log]

Compression

To avoid unnecessary dependencies, compression is not part of the package, but you can provide compressor and decompressor functions in the constructor options. Here is an example of how it could be done.

const lz4 = require("lz4");
const lru = require("@cababunga/lru");
const compress = buf => {
    if (buf.length < 128)
        return Buffer.concat([Buffer.from("\x00"), buf]);

    return Buffer.concat([Buffer.from("\x01"), lz4.encode(buf)]);
}
const decompress = buf => {
    const compression = buf[0];
    buf = buf.slice(1);
    if (compression == 0)
        return buf;

    if (compression == 1)
        return lz4.decode(buf);

    throw new Error("Unknown compression type: " + JSON.stringify(compression));
}
const cache = new lru({codec: {compress, decompress}});