They were using the compact ziplist/zipmap representation by setting
the max zipmap/ziplist entries and size options. By setting those to
large numbers, then you can use the compact representation for larger
sets/hashes/zsets, but the larger they get, the slower the operations
(operations are typically O(n) for the compact representation).
If your set/hash/zset gets bigger than your configured ziplist limit,
then it will switch to the native structure, which will then follow
the expected performance characteristics for that structure (O(1)
inserts, updates, deletes on sets/hashes, O(logn) inserts, updates,
and deletes on zsets).
Regards,
- Josiah
> --
> You received this message because you are subscribed to the Google Groups
> "Redis DB" group.
> To view this discussion on the web visit
>
https://groups.google.com/d/msg/redis-db/-/I1xSXSrhImUJ.
>
> To post to this group, send email to
redi...@googlegroups.com.
> To unsubscribe from this group, send email to
>
redis-db+u...@googlegroups.com.
> For more options, visit this group at
>
http://groups.google.com/group/redis-db?hl=en.