摘要: 安装 pip install "redis[hiredis]" 检查是否启用hiredis import redisimport redis.connectionfrom redis.connection import ConnectionPoolfrom redis.utils import HI 阅读全文
posted @ 2025-03-12 16:23 CJTARRR 阅读(64) 评论(0) 推荐(0)
摘要: import re options = "i" regex_pattern = re.escape(字符串) query = {"$regex": regex_pattern, "$options": options} 结果 = 集合.find(query) # 这里用re.escape套一下字符串 阅读全文
posted @ 2025-03-12 09:33 CJTARRR 阅读(44) 评论(0) 推荐(0)