Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在redis中,是否可以对多个数据库进行MGET?
就像是:
select 1 set a hello select 2 set b world mget db1:a db2:b
Redis 不提供将名称与不同数据库相关联的方法,因此您必须自己跟踪哪些数据去了哪里。看这里
所以,你想做的事情是不可能的。
因为, SELECT 命令选择数据库,即数据库的索引,我们不能选择两个数据库,只有在 SELECTing indices 之后,我们才能运行命令。