Overview
Valkey currently supports the following data types:
-
String
It stores a sequence of bytes up to 512MB.
-
List
It stores list of strings by insertion order.
-
Set
It stores unordered collections of unique strings.
-
Sorted Set
It stores ordered collections of unique strings.
-
Hash
It stores collections of field-value pairs.
-
HyperLogLog
It stores the cardinality of a set.
-
Bitmap
It performs set of bitwise operations on strings.
-
Geospatial
It stores geographic coordinates and search for them.
-
Stream
It stores the data in the append-only log fashion.
-
Pub/Sub
It stores the data in publish-subscribe messaging pattern.