cacheUtil.js 266 B

1234567891011121314
  1. /**
  2. * Created by Tony on 2016/12/28.
  3. */
  4. var cache = {};
  5. module.exports = {
  6. setCache: function(cacheKey, cacheValue) {
  7. cache[cacheKey] = cacheValue;
  8. return true;
  9. },
  10. getCache: function(cacheKey) {
  11. return cache[cacheKey];
  12. }
  13. }