首页 > 编程语言 > 详细

python对redis的基本操作

时间:2018-08-06 00:30:47      阅读:260      评论:0      收藏:0      [点我收藏+]
#coding:utf8
from redis import StrictRedis
"""定义一个处理redis的类"""
class OprRedis:
def init(self,host,port):
self._redis = StrictRedis(host,port)
def set(self,key,value):
try:
self._redis.set(key,value)
except Exception,e:
print e
def get(self,key):
try:
return self._redis.get(key)
except Exception,e:
print e
def pipeline(self):
try:
return self._redis.pipeline(transaction=False)
except Exception,e:
print e

def main():
oprRedis = OprRedis("localhost","6379")
oprRedis.set("wf","wangfei")
print oprRedis.get("xjb")
pipline = oprRedis.pipeline()
try:
pipline.set("xxf","xiaoxiaofang")
pipline.set("ldh","liudehua")
pipline.execute()
except Exception,e:
print e
main()

python对redis的基本操作

原文:http://blog.51cto.com/xujingbo/2155038

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!