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
I'm using this client in a lambda function on Amazon AWS.
I have an ElastiCache Memcached cluster of 2 nodes.
I'm passing these nodes to the connection. (I'm not using the auto discover feature).
The connection, set, get, delete funcionality are working fine.
However the flush functionality is not flushing the data.
memcachePlus = new MemcachePlus( { hosts: memcacheHosts } ); memcachePlus.flush().then(onFlushComplete);
No errors are thrown, but data is still there.
Scenario:
Set a key-value item.
Get by key to make sure it's inserted.
Flush data.
Get by key again which should return null, but instead returns the data.
The text was updated successfully, but these errors were encountered:
Hi,
I'm using this client in a lambda function on Amazon AWS.
I have an ElastiCache Memcached cluster of 2 nodes.
I'm passing these nodes to the connection. (I'm not using the auto discover feature).
The connection, set, get, delete funcionality are working fine.
However the flush functionality is not flushing the data.
memcachePlus = new MemcachePlus( { hosts: memcacheHosts } ); memcachePlus.flush().then(onFlushComplete);
No errors are thrown, but data is still there.
Scenario:
Set a key-value item.
Get by key to make sure it's inserted.
Flush data.
Get by key again which should return null, but instead returns the data.
The text was updated successfully, but these errors were encountered: