当前位置: 首页 > 工具软件 > RedisX > 使用案例 >

Redisx学习笔记-数据类型

糜俊彦
2023-12-01

新建键值

SET hash_one "hash_one_value"

GET hash_one

最大512mb

数据类型

String

redis 的 string 可以包含任何数据。比如jpg图片或者序列化的对象。最大能存储512mb

HASH

新建hash

HMSET hash_one field_one "field_one_value" field_two "field_two_value" 

取出

HGET hash_one field_one

LIST

从头部压入列表

lpush hash_one hash_one_value

取出列表

lrange hash_one 0 10

Set

新建

sadd hash_one hash_one_value

取出

smembers hash_one

ZSET

在集合的基础上每个元素绑定一个数字,数字可以重复,元素不可以重复

zadd zset_one score value 

ZRANGEBYSCORE zset_one 0 1000

 类似资料: