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
@electic, try using lifetime: "0". The number 0 evaluates to false when creating the msg to send to memcached, thus rendering in using the default lifetime of 60 seconds... Other lifetimes works as expected 🤷♂️
Setting the lifetime in the connection settings as so:
this.memcacheClient = new memcacheClient({ server: { server: connectStr, maxConnections: 150 }, lifetime: 0 })
or
this.memcacheClient.set(key, digest, { lifetime: 0, noreply: true });
seems to have no effect.
The text was updated successfully, but these errors were encountered: