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
Cache is the central cache implementation module for several modules.
9
-
It contains three caching engines. The decision of which caching engine to use is governed while creating the cache object.
10
-
The caching engines implemented are:
11
-
12
-
*[Memcached](https://memcached.org/)
13
-
*[Redis](https://redis.io/docs/)
14
-
* In-memory (use with single threaded process in development mode only)
8
+
Cache NPM implements wrapper over multiple caching engines - [Memcached](https://memcached.org/), [Redis](https://redis.io/docs/) and In-memory (use with single threaded process in development mode only).
9
+
The decision of which caching engine to use is governed while creating the Cache NPM object.
15
10
16
11
## Why Cache?
17
12
Core packages of different caching systems do not have a common interface, i.e. they have the same functionality implemented with different method signatures.
0 commit comments