-
Notifications
You must be signed in to change notification settings - Fork 30
Open
Description
cacheManage -> multi_caching.js
line 284:
if (multi) {
if (typeof cache.store.mset !== 'function') {
/**
* Silently fail for store that don't support mset()
*/
return next();
}
keysValues.push(cacheOptions);
keysValues.push(next);
cache.store.mset.apply(cache.store, keysValues);
} else {
cache.store.set(keysValues[0], keysValues[1], cacheOptions, next);
}you miss mset
you should add:
self.mset = self.set;Metadata
Metadata
Assignees
Labels
No labels