Eric Foster 35b96bc934 initial commit | před 6 roky | |
---|---|---|
.. | ||
test | před 6 roky | |
.jshintrc | před 6 roky | |
.npmignore | před 6 roky | |
.testem.json | před 6 roky | |
.travis.yml | před 6 roky | |
LICENCE | před 6 roky | |
README.md | před 6 roky | |
index.js | před 6 roky | |
package.json | před 6 roky |
Cache a continuable
var cache = require("continuable-cache")
var fs = require("fs")
var readFile = function (uri) { return function (cb) {
fs.readFile(uri, cb)
} }
var continuableFile = readFile("./package.json")
var cached = cache(continuableFile)
// will only do one file read operation
cached(function (err, file) {
/* calls out to fs.readFile */
})
cached(function (err, file) {
/* get's either err or file from cache in cached */
})
npm install continuable-cache