Redis *.rdb file is a binary representation of the in-memory store. This binary file is sufficient to completely restore Redis' state. The rdb file format is optimized for fast read and writes. Where possible LZF compression is used to reduce the file size. In general, objects are prefixed with their lengths, so before reading the object you know exactly how much memory to allocate. Optimizing for