Overview

Valkey currently supports the following data types:

  • String


    It stores a sequence of bytes up to 512MB.

    Learn

  • List


    It stores list of strings by insertion order.

    Learn

  • Set


    It stores unordered collections of unique strings.

    Learn

  • Sorted Set


    It stores ordered collections of unique strings.

    Learn

  • Hash


    It stores collections of field-value pairs.

    Learn

  • HyperLogLog


    It stores the cardinality of a set.

    Learn

  • Bitmap


    It performs set of bitwise operations on strings.

    Learn

  • Geospatial


    It stores geographic coordinates and search for them.

    Learn

  • Stream


    It stores the data in the append-only log fashion.

    Learn

  • Pub/Sub


    It stores the data in publish-subscribe messaging pattern.

    Learn