Redis的ZRANGEBYSCORE
命令用于返回有序集合中指定分数范围内的所有成员
import redis # 连接到Redis服务器 r = redis.Redis(host='localhost', port=6379, db=0) # 设置有序集合的键和分数范围 key = 'my_sorted_set' min_score = 100 max_score = 200 # 使用默认值查询有序集合 default_value = 'https://www.yisu.com/ask/No matching elements' result = r.zrangebyscore(key, min_score, max_score, withscores=False, default=default_value) # 输出结果 print(result)
在这个示例中,我们使用withscores=False
参数来仅返回成员,而不返回分数。default
参数设置为'No matching elements'
,当没有匹配的元素时,将返回这个默认值。