You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
710 B

- 0.1.2 2013-10-13
Wrapping synchronous memory cache callbacks in process.nextTick() for the purists.
- 0.1.1 2013-10-13
Travis and Coveralls integration testing.
- 0.1.0 2013-10-13
Removing built-in Redis store to emphasize that you should plug in your own
cache store.
- 0.0.5 2013-10-13
Removing hiredis requirement.
11 years ago
- 0.0.4 2013-08-01
Better error checking in multi_cache.wrap();
11 years ago
- 0.0.3 2013-07-10
Better error checking in cache.wrap();
12 years ago
11 years ago
- 0.0.2 2013-04-08
12 years ago
Added ability to pass in a store module that isn't already instantiated.
E.g.,
```javascript
var store = require('/path/to/my_memory_store');
12 years ago
cache = caching({store: store});
```
11 years ago
- 0.0.1 2013-04-08
Initial release.