Five Common Data Types of Redis and five major redis Data Types

Source: Internet
Author: User

Five Common Data Types of Redis and five major redis Data Types

1. String (String)

The string type is binary secure. It means that the redis string can contain any data. For example, JPG images or serialized objects.

The string type is the most basic data type of Redis. The string value in a redis instance can be 512 MB at most.

 

2. Hash)

Redis hash is a set of key-value pairs.
Redis hash is a string-type field-value ing table. hash is especially suitable for storing objects.


Similar to Map <String, Object> in Java

 

3. List)

The Redis list is a simple string list sorted by insertion order. You can add a header (left) or tail (right) of the element import list ).
Its bottom layer is actually a linked list

 

4. Set)

Redis's Set is a unordered Set of the string type. It is implemented through HashTable,

 

5. zset (sorted set: ordered set)

Redis zset and set are also set of string elements, and repeated members are not allowed.
The difference is that each element is associated with a score of the double type.
Redis uses scores to sort members in a set from small to large. Zset members are unique, but scores can be repeated.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.