mirror of
https://github.com/fluencelabs/redis
synced 2025-06-21 21:11:33 +00:00
64 bit instances are no longer limited to have at max 2^32-1 elements in lists.
This commit is contained in:
@ -823,7 +823,7 @@ void listTypeTryConversion(robj *subject, robj *value);
|
||||
void listTypePush(robj *subject, robj *value, int where);
|
||||
robj *listTypePop(robj *subject, int where);
|
||||
unsigned long listTypeLength(robj *subject);
|
||||
listTypeIterator *listTypeInitIterator(robj *subject, int index, unsigned char direction);
|
||||
listTypeIterator *listTypeInitIterator(robj *subject, long index, unsigned char direction);
|
||||
void listTypeReleaseIterator(listTypeIterator *li);
|
||||
int listTypeNext(listTypeIterator *li, listTypeEntry *entry);
|
||||
robj *listTypeGet(listTypeEntry *entry);
|
||||
|
Reference in New Issue
Block a user