45fan.com - 路饭网

搜索: 您的位置主页 > 网络频道 > 阅读资讯:安装和使用python中redis的步骤

安装和使用python中redis的步骤

2016-12-13 18:54:20 来源:www.45fan.com 【

安装和使用python中redis的步骤

python下redis安装

用python操作redis数据库,先下载redis-py模块下载地址https://github.com/andymccurdy/redis-py

shell# wget https://github.com/andymccurdy/redis-py

然后解压

在解压目录运行 python setup.py install安装模块即可

安装完成

使用:

import redis
 
r = redis.Redis(host=’localhost’, port=6379, db=0)
 
r['test'] = ‘test’ #或者可以r.set(‘test’, ‘test’) 设置key
 
r.get(‘test’) #获取test的值
 
r.delete(‘test’) #删除这个key
 
r.flushdb() #清空数据库
 
r.keys() #列出所有key
 
r.exists(‘test’) #检测这个key是否存在
 
r.dbsize() #数据库中多少个条数

本文地址:http://www.45fan.com/a/question/86041.html
Tags: 安装 python Redis
编辑:路饭网
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部