摘要:
# __author__ = 'STEVEN' import redis,time # 方式1,直接链接操作 # r = redis.Redis(host='192.168.43.22',port=6379) # r.set('name','lisi') # print(r.get('name').decode()) # 方式2,创建进程池 poll = redis.ConnectionPoo... 阅读全文
摘要:
# __author__ = 'STEVEN' import redis,time #连接池 polls = redis.ConnectionPool(host='192.168.43.22',port='6379') # 从连接池中选择连接 r = redis.Redis(connection_pool=polls) # #hset()操作,一次设置一个key-value值,如果key存在,... 阅读全文
摘要:
http://www.lanceyan.com/tech/arch/mongodb_shard1.html 阅读全文
摘要:
代码: 友情链接: redis官方文档(http://www.runoob.com/redis/connection-select.html) 阅读全文