best-effort-concurrent-cache
v3.0.2
Published
Make a best effort to offer a simple filesystem-based cache for concurrent access from multiple processes.
Downloads
2
Maintainers
Readme
best-effort-concurrent-cache
Sometimes you want to cache things using the filesystem due to an expensive process, especially when developing build tools or other utilities. A perfect example is caching transpiled code. Another might simply be making no changes to the file contents, but instead using the cache to know if a file has changed between runs of a process.
NOTE: This package is not meant as a high-performance, bullet-proof caching utility. It is meant as a "best effort" to provide failsafe caching. In the best case, caching will happen. In the worst case, caching will not happen but your program won't fail.
Why?
Babel's require hook, for example, caches transpiled code, but does so as a monolithic JSON file. Another example is browserify-incremental. These monolithic JSON caches work well, but break down if multiple independent processes attempt to access the same cache. The cache is easily clobbered, corrupted, or made irrelevant by concurrent processes all reading an empty cache at startup, and writing multiple copies of the cache at process end.
When would you have multiple processes transpiling code? Perhaps when trying to speed up mocha unit tests by running them in parallel via separate processes. Or building multiple JS bundles from the same shared local libraries but different entry points.
Usage
var fs = require('fs');
var path = require('path');
var Becc = require('best-effort-concurrent-cache');
var becc = Becc(fs); // requires a file system implementation
// Ensure cache folder exists
var cachePath = path.join(process.cwd(), '.cache');
try {
fs.mkdirSync(cachePath);
} catch (e) {}
var babel = require('babel-core');
var f = path.join(process.cwd(), './myfile.es6');
// Get a cached version
// This checks the file's mtime compared to the cached hash.
var retrieved = becc.retrieve(cachePath, f);
if (!retrieved) {
// We didn't find a cached version, or the cached version has expired due
// to a differing mtime.
// Perform the expensive work and cache it!
retrieved = babel.transform(fs.readFileSync(f, 'utf8'), { presets: ['es2015'] }).code;
becc.cache(cachePath, f, retrieved);
}
// Do something with retrieved
API
Becc(fs, opt_statExtractor)
fs
is an implementation of a node-compatible file system module. This is to facilitate testing and allow for in-memory or in-browser caching if needed. Generally the result of calling require('fs')
will do.
opt_statExtractor
is an optional function that is used to determine what properties of a file's fs.Stats
object are used to cache the file. By default, only mtime
is used. If one wanted to create a cache that also used file size:
var fs = require('fs');
var Becc = require('becc');
var becc = Becc(fs, function (stat) {
return stat.mtime + stat.size;
});
Note: the filename is always used within the cache key.
Examples
A shared Babel code cache can be used to speed up parallel (or subsequent) mocha runs. See examples/:
$ rm -rf .cache
$ time node examples/mocha-test.js
...
real 0m2.402s
user 0m4.797s
sys 0m0.354s
# second run...
$ time node examples/mocha-test.js
...
real 0m0.628s
user 0m0.970s
sys 0m0.161s
License
Apache 2.0