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 与 python 模块一起使用来保存字节序列(作为键)当我试图获取键时包含:“\x00??\x03”(?=任何ASCII字符)
例如:
str = "\x00\x01\x00\x03" (作为字节序列)
db.keys(模式=' '+str+' ')
给我所有的钥匙。
这是正常行为吗?