We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Created _Footer (markdown)
Initial Home page
Created Redis RDB Dump File Format.html (markdown)
Added one more implementation in Rust language.
Fix typo.
Looking here in redis server code you can see that the version is treated as an ascii string using atoi() to parse it https://github.com/antirez/redis/blob/06d490342f51cff316588a7a45124cc410b7d050/src/rdb.c#L2000. Parsing code in this package https://github.com/sripathikrishnan/redis-rdb-tools/blob/543a73e84702e911ddcd31325ecfde77d7fd230b/rdbtools/parser.py#L960 appears to do the same. It is not stored as a binary 32 bit integer.
Updated Redis RDB Dump File Format (markdown)
use markdown instead of textile
Updated Python3 support.
update rdb version number to match the explanation
Fixed some very minor typos
Add a detail
Correct storage of numbers up to 2^32 - take 5 bytes (not 4 bytes) because there's the first byte which starts with "10" bits
typos fix
it actually uses crc64
Totenham -> Tottenham
typo fix
Links to Python 2.5 and 3.x support
Add go package
Supported version bumped to 6
Updated Redis Memory Optimization (markdown)
Completed the section on strings
Updated ziplist encoding for RDB version 6
Explains how to use csv file to optimize configuration parameters
Updated FAQs (markdown)