Eric Foster 35b96bc934 initial commit | пре 6 година | |
---|---|---|
.. | ||
test | пре 6 година | |
.jshintrc | пре 6 година | |
.npmignore | пре 6 година | |
.testem.json | пре 6 година | |
.travis.yml | пре 6 година | |
LICENCE | пре 6 година | |
README.md | пре 6 година | |
index.js | пре 6 година | |
package.json | пре 6 година |
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