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
If I get the key value using the native 'get' method, I get the full value.
If I use 'redisRStream', then the output is limited to ~ 13.6 kilobytes.
constredis=require('redis');constclient=redis.createClient();constfs=require('fs');client.get('mykey',(err,string)=>{fs.writeFileSync('./file3.txt',string);});// file3.txt size ~ 22.2 KiB (it is full size of the value)
If I get the key value using the native 'get' method, I get the full value.
If I use 'redisRStream', then the output is limited to ~ 13.6 kilobytes.
Thus, the value is limited to approximately 13.6 kilobytes if I get it from the
redisRStream
.The text was updated successfully, but these errors were encountered: