OBJECT subcommand [arguments [arguments …]]

    Time complexity: O(1) for all the currently implemented subcommands.

    The OBJECT command allows to inspect the internals of Redis Objects associated with keys. It is useful for debugging or to understand if your keys are using the specially encoded data types to save space. Your application may also use the information reported by the command to implement application level key eviction policies when using Redis as a Cache.

    • returns the number of references of the value associated with the specified key. This command is mainly useful for debugging.
    • OBJECT ENCODING <key> returns the kind of internal representation used in order to store the value associated with a key.
    • OBJECT IDLETIME <key> returns the number of seconds since the object stored at the specified key is idle (not requested by read or write operations). While the value is returned in seconds the actual resolution of this timer is 10 seconds, but may vary in future implementations. This subcommand is available when maxmemory-policy is set to an LRU policy or noeviction.
    • OBJECT FREQ <key> returns the logarithmic access frequency counter of the object stored at the specified key. This subcommand is available when maxmemory-policy is set to an LFU policy.
    • OBJECT HELP returns a succinct help text.

    Objects can be encoded in different ways:

    • Lists can be encoded as ziplist or linkedlist. The is the special representation that is used to save space for small lists.
    • Sets can be encoded as intset or hashtable. The intset is a special encoding used for small sets composed solely of integers.
    • Hashes can be encoded as ziplist or hashtable. The ziplist is a special encoding used for small hashes.
    • Sorted Sets can be encoded as ziplist or skiplist format. As for the List type small sorted sets can be specially encoded using ziplist, while the skiplist encoding is the one that works with sorted sets of any size.

    All the specially encoded types are automatically converted to the general type once you perform an operation that makes it impossible for Redis to retain the space saving encoding.

    • Subcommands refcount and return integers.
    • Subcommand encoding returns a bulk reply.

    If the object you try to inspect is missing, a null bulk reply is returned.

    *Examples

    In the following example you can see how the encoding changes once Redis is no longer able to use the space saving encoding.

    1. redis> set foo 1000
    2. redis> object encoding foo
    3. "int"
    4. redis> append foo bar
    5. (integer) 7
    6. redis> get foo
    7. "1000bar"
    8. redis> object encoding foo