一、python程序操作Redis注意:1、首先连接上第三方库:redis,redis中所有命令在程序中都是方法函数2、所有未解码输出的都是 字节码(如: b'10')import redisdef main(): client = redis.Redis( host='', port= '' , password= '' ) client.set('username', 'hellokitty' , ex = 300) #ex 存活时间300s,过后这个键自动消
知识要点
2023-10-08
37 点赞
0 评论
56 浏览