-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcache.js
71 lines (61 loc) · 1.93 KB
/
cache.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/**
* The cache module wraps some file operations and makes it easy to save documents and key=values to disk. This is
* used to save data that is needed when the application is restarted.
*/
(function(){
'use strict';
var path = require('path'),
fs = require('fs'),
config = require('../config').cache,
cache = {};
/**
* Get method will accept key and return the data or a null if it doesn't exist.
* @param key String value of the cache key
* @param cb callback that will either return the value or a null.
*/
cache.get = function(key, cb){
fs.readFile(path.join(config.path, key), 'utf8', function (err,data) {
if (err) {
cb(err);
}
else {
cb(null, data);
}
});
};
/**
* Add method will save the value passed in to the file system. NOTE: This should only be sent strings.
* @param key String value for the cache key
* @param value String value to be cached
* @param cb Callback to be called when operation is complete.
*/
cache.add = function(key, value, cb){
fs.writeFile(path.join(config.path, key), value, function (err) {
if (err) {
cb(err);
}
else {
cb(null, true);
}
});
};
/**
* Remove method will get rid of the cache key on the file system.
* @param key String value for the cache key
* @param cb Callback that gets called with the cached object is deleted.
*/
cache.remove = function(key, cb){
fs.unlink(path.join(config.path, key), function (err) {
if (err) {
cb(err, false);
}
else {
cb(null, true);
}
});
};
// Node.js
if (typeof module !== 'undefined' && module.exports) {
module.exports = cache;
}
})();