Redis data types - mmedrano9438/peripheral-brain GitHub Wiki
- Redis strings: are the most basic Redis data type, representing a sequence of bytes.
- Redis Lists: lists of strings sorted by insertion order.
- Redis Sets: unordered collections of unique strings that act like the sets from your favorite programming language
- Redis Hashes: record types modeled as collections of field-value pairs.