Redis中查询多个对象的方法一般有以下几种:
MGET key1 key2 key3 ...
pipeline = redis.pipeline()
pipeline.get(key1)
pipeline.get(key2)
pipeline.get(key3)
result = pipeline.execute()
EVAL "return {redis.call('GET', KEYS[1]), redis.call('GET', KEYS[2])}" 2 key1 key2
SCAN cursor [MATCH pattern] [COUNT count]
以上是一些常用的方法,你可以根据实际情况选择适合的方法来查询多个对象。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: springboot怎么批量修改redis