Eric Foster 35b96bc934 initial commit | hace 6 años | |
---|---|---|
.. | ||
test | hace 6 años | |
.jshintrc | hace 6 años | |
.npmignore | hace 6 años | |
.testem.json | hace 6 años | |
.travis.yml | hace 6 años | |
LICENCE | hace 6 años | |
README.md | hace 6 años | |
index.js | hace 6 años | |
package.json | hace 6 años |
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