python对redis的基本操作

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python对redis的基本操作相关的知识,希望对你有一定的参考价值。

#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的基本操作的主要内容,如果未能解决你的问题,请参考以下文章

python连接Redis---Redis基本操作

Python操作Redis

Python操作Redis数据库—redis库(可直接使用的模板通用操作)

Python操作Redis数据库—redis库(可直接使用的模板通用操作)

Python操作Redis数据库—redis库(可直接使用的模板通用操作)

python操作redis list