06-25 python操作Redis+Redis数据存储(rdb+aof)
一、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,过后这个键自动消