python redis使用

Posted

tags:

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

#python下redis使用

安装python redis插件:
apt-get install python-redis
编辑python连接redis脚本
vi redis_conn.py
#!/usr/bin/env python
import redis
r=redis.Redis(host=‘localhost‘,port=6379,db=0)
#r[‘yourkey‘]=‘yourvalue‘
def get_redis(host_ip=‘localhost‘,port=6379,db=0):
        return redis.Redis(host=host_ip,port=port,db=db)
        
进入python命令下执行:
>>>import tab 
>>>import redis_conn
>>>redis_conn.r.set(‘key1‘,‘value1‘)
>>>redis_conn.r[‘key1‘]=‘value1‘
>>>redis_conn.r.keys()    #查看所有的key
>>>redis_conn.r.delete(‘key1‘)    #删除一个key
>>>redis_conn.r.[‘key1‘]     #获取key1的value
>>>redis_conn.r.get(‘key1‘)


本文出自 “小东哥” 博客,谢绝转载!

以上是关于python redis使用的主要内容,如果未能解决你的问题,请参考以下文章

Python 向 Postman 请求代码片段

python使用上下文对代码片段进行计时,非装饰器

python常用代码片段总结

13 个非常有用的 Python 代码片段

在 Python 多处理进程中运行较慢的 OpenCV 代码片段

python 有用的Python代码片段