You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(multi){if(typeofcache.store.mset!=='function'){/** * Silently fail for store that don't support mset() */returnnext();}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;
The text was updated successfully, but these errors were encountered:
cacheManage ->
multi_caching.js
line 284:
you miss
mset
you should add:
The text was updated successfully, but these errors were encountered: