We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d48c93 commit f648c5aCopy full SHA for f648c5a
src/object.c
@@ -385,10 +385,10 @@ robj *tryObjectEncoding(robj *o) {
385
if (o->refcount > 1) return o;
386
387
/* Check if we can represent this string as a long integer.
388
- * Note that we are sure that a string larger than 21 chars is not
+ * Note that we are sure that a string larger than 20 chars is not
389
* representable as a 32 nor 64 bit integer. */
390
len = sdslen(s);
391
- if (len <= 21 && string2l(s,len,&value)) {
+ if (len <= 20 && string2l(s,len,&value)) {
392
/* This object is encodable as a long. Try to use a shared object.
393
* Note that we avoid using shared integers when maxmemory is used
394
* because every object needs to have a private LRU field for the LRU
0 commit comments