Skip to content

Tag: Internals

  • Redis Data Structures and Underlying Implementation

    In Redis

    RedisData StructureInternals

    Redis exposes five common types to users, but underneath there are multiple encodings (encoding). Automatically switching encodings based on data size is the key to balancing memory and performance. Core Underlying Structures SDS (Simple Dynamic …

    Redis exposes five common types to users, but underneath there are multiple encodings (encoding). Automatically switching encodings based on data size is the key to balancing memory and performance. Core Underlying Structures SDS (Simple Dynamic …