JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1932996
  • Score
    100M100P100Q198978F
  • License ISC

Fastest memoization lib that supports N arguments

Package Exports

  • fast-memoize

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (fast-memoize) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

fast-memoize

Travis CI David DM js-standard-style

In computing, memoization is an optimization technique used primarily to speed up computer programs by storing the results of expensive function calls and returning the cached result when the same inputs occur again. — Wikipedia

This library is an attempt to make the fastest possible memoization library in JavaScript that supports N arguments.

There are already very popular solutions for this problem, but they are not very fast enough or accept only one argument.

Installation

To use the library, install it through npm

npm install fast-memoize

To port it to Browser or any other (non CJS) environment, use your favorite CJS bundler. No favorite yet? Try: Browserify, Webmake or Webpack

Usage

const memoize = require('fast-memoize')

const fn = function (one, two, three) { /* ... */ }

const memoized = memoize(fn)

memoized('foo', 3, 'bar')
memoized('foo', 3, 'bar') // Cache hit

Benchmark

There is already plenty of libraries that does memoization on JS world. underscore and lodash provides it, but they don't accept more than one argument. memoizee is a very well written library that supports N arguments, but is not even close on performance to lodash.

Below you can see a performance benchmark between some of the most popular libraries for memoization.

fast-memoize is faster than any other library but lodash. The reason why is that lodash does not support N arguments and is very optimized to that unique use case. But even though, fast-memoize is the library that supports N that comes closer to it.

To run the benchmark, clone the repo, install the dependencies and run npm run benchmark.

git clone git@github.com:caiogondim/fast-memoize.git
cd fast-memoize
npm install
npm run benchmark

Support

Desktop browsers

Chrome IE Firefox Safari Opera Edge Brave
Latest 8+ Latest Latest Latest Latest Latest

Mobile browsers

| Chrome | Safari | Android Browser | IE | Firefox | Opera | UC | | --- | --- | --- | --- | --- | --- | --- | --- | --- | | Latest | 6+ | 4.0+ | 8+ | Latest | Latest | Latest |

Server

0.10+ ✔

Reference

Credits