Skip to content

Commit b579f8a

Browse files
committed
Stores can override isCacheableValue + tests
This is usefull ie for redis cache where null is returned when cache data does not exists In other stores, null can still be stored and undefined used when data does not exist Each store can implement its own custom method
1 parent 127b83f commit b579f8a

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

examples/redis_example/redis_store.js

+4
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,10 @@ function redisStore(args) {
110110
});
111111
};
112112

113+
self.isCacheableValue = function(value) {
114+
return value !== null && value !== undefined;
115+
};
116+
113117
return self;
114118
}
115119

lib/caching.js

+2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ var caching = function(args) {
3434

3535
if (typeof args.isCacheableValue === 'function') {
3636
self._isCacheableValue = args.isCacheableValue;
37+
} else if (typeof self.store.isCacheableValue === 'function') {
38+
self._isCacheableValue = self.store.isCacheableValue;
3739
} else {
3840
self._isCacheableValue = function(value) {
3941
return value !== undefined;

test/caching.unit.js

+21
Original file line numberDiff line numberDiff line change
@@ -707,4 +707,25 @@ describe("caching", function() {
707707
});
708708
});
709709
});
710+
711+
describe("overloading with custom store", function() {
712+
it("allows us to override isCacheableValue", function(done) {
713+
var store = memoryStore.create({ttl: defaultTtl});
714+
var onlyOne = true;
715+
store.isCacheableValue = function(result) {
716+
if (onlyOne) {
717+
onlyOne = false;
718+
done();
719+
}
720+
return result !== undefined;
721+
};
722+
cache = caching({store: store});
723+
cache.wrap(key, function(cb) {
724+
methods.getWidget(name, cb);
725+
}, function(err, widget) {
726+
checkErr(err);
727+
assert.deepEqual(widget, {name: name});
728+
});
729+
});
730+
});
710731
});

0 commit comments

Comments
 (0)