Snow 1d0b9c5323 增加了node环境 | il y a 1 mois | |
---|---|---|
.. | ||
test | il y a 1 mois | |
.jshintrc | il y a 1 mois | |
.npmignore | il y a 1 mois | |
.testem.json | il y a 1 mois | |
.travis.yml | il y a 1 mois | |
LICENCE | il y a 1 mois | |
README.md | il y a 1 mois | |
index.js | il y a 1 mois | |
package.json | il y a 1 mois |
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