Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How many data types are there in redis

2025-04-13 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

This article will explain in detail how many data types there are in redis. The editor thinks it is very practical, so I share it for you as a reference. I hope you can get something after reading this article.

1. 5 data types of redis:

String string (can be integer, floating-point, and string, collectively referred to as elements)

List list (implementation queue, non-unique elements, first-in, first-out principle)

Set collection (different elements)

Hash value (key for hash must be unique)

Sort set ordered set

Common commands of the 2.string type:

Self-added: incr

Self-subtracting: decr

Add: incrby

Minus: decrby

Common commands supported by the 3.list type:

Lpush: push in from the left

Lpop: pop up from the right

Rpush: push from the right

Rpop: pop up from the right

Llen: view the length of a list data type

Common commands supported by the 4.set type:

Sadd: adding data

Scard: view the number of elements that exist in set data

Sismember: determines whether an element exists in set data

Srem: delete an element from an set data

Common commands supported by the 5.hash data type:

Hset: adding hash data

Hget: getting hash data

Hmget: get multiple hash data

6.sort set is very similar to hash and is also storage in the form of mapping:

Zadd: addin

Zcard: query

Zrange: data sorting

5 data types of 1.redis:

String string (can be integer, floating-point, and string, collectively referred to as elements)

List list (implementation queue, non-unique elements, first-in, first-out principle)

Set collection (different elements)

Hash value (key for hash must be unique)

Sort set ordered set

Common commands of the 2.string type:

Self-added: incr

Self-subtracting: decr

Add: incrby

Minus: decrby

Common commands supported by the 3.list type:

Lpush: push in from the left

Lpop: pop up from the right

Rpush: push from the right

Rpop: pop up from the right

Llen: view the length of a list data type

Common commands supported by the 4.set type:

Sadd: adding data

Scard: view the number of elements that exist in set data

Sismember: determines whether an element exists in set data

Srem: delete an element from an set data

Common commands supported by the 5.hash data type:

Hset: adding hash data

Hget: getting hash data

Hmget: get multiple hash data

6.sort set is very similar to hash and is also storage in the form of mapping:

Zadd: addin

Zcard: query

Zrange: data sorting

This is the end of the article on "how many data types are there in redis". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, please share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report