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
When attempting to retrieve items larger than 64 KB from the cache, the client fails with a timeout error. The set and insert operations work without issues, but the problem occurs specifically with the get and gat methods. This issue persists regardless of whether streaming is enabled or not.
Repro:
const value = Buffer.alloc(2 * 1024 * 1024, 'A'.charCodeAt(0));
await cache.set('key1', value);
const result = await cache.get('key1');
assert.deepStrictEqual(result, value);
The text was updated successfully, but these errors were encountered:
When attempting to retrieve items larger than 64 KB from the cache, the client fails with a timeout error. The set and insert operations work without issues, but the problem occurs specifically with the get and gat methods. This issue persists regardless of whether streaming is enabled or not.
Repro:
The text was updated successfully, but these errors were encountered: