Increased the max messages in the cache to 100k.

This commit is contained in:
Matteo Collina 2014-10-25 12:24:16 +01:00
parent 4fb64d2ed7
commit ce8b7289c1

View file

@ -20,7 +20,7 @@ function MQEmitterRedis(opts) {
this._topics = {}
this._cache = LRU({
max: 1000
max: 100000
, maxAge: 60 * 1000 // one minute
})