python中redis的安装和使用
程序员文章站
2024-02-17 08:35:58
python下redis安装
用python操作redis数据库,先下载redis-py模块下载地址https://github.com/andymccurdy/redi...
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() #数据库中多少个条数
推荐阅读
-
python中redis的安装和使用
-
Ubuntu11.04停Memcached和php5-memcache的安装与基本使用
-
Dubbo在Spring和Spring Boot中的使用详解
-
Android使用selector修改TextView中字体颜色和背景色的方法
-
Ubuntu11.04停Memcached和php5-memcache的安装与基本使用
-
python 安装virtualenv和virtualenvwrapper的方法
-
详解springboot中redis的使用和分布式session共享问题
-
redis在java中的使用(实例讲解)
-
Python Paramiko模块的安装与使用详解
-
Python中的sort()方法使用基础教程