File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11## Cache v1.0.0
22- Cache is cache implementation of three caching engines Memcached, Redis and In-memory.
3+
4+ ## Cache v1.0.1
5+ - First time cache set intermittent issue fixed for memcached.
Original file line number Diff line number Diff line change 1- 1.0.0
1+ 1.0.1
Original file line number Diff line number Diff line change @@ -105,6 +105,9 @@ class MemcachedCacheImplementer {
105105 oThis . defaultLifetime = Number ( cacheConfig . DEFAULT_TTL ) ;
106106
107107 oThis . _isConsistentBehaviour = isConsistentBehaviour ;
108+
109+ // First time cache set was intermittently failing for memcached, thus setting test key here.
110+ oThis . set ( 'plgInit' , 1 ) ;
108111 }
109112
110113 /**
Original file line number Diff line number Diff line change 11{
22 "name" : " @plgworks/cache" ,
3- "version" : " 1.0.0 " ,
3+ "version" : " 1.0.1 " ,
44 "description" : " Cache is the central cache implementation for several modules." ,
55 "main" : " index.js" ,
66 "scripts" : {
You can’t perform that action at this time.
0 commit comments