python简单操作redis

Posted

tags:

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

1.安装redis

命令:sudo pip install redis

2.连接redis

import redis
redis_client = redis.Redis("192.168.86.127", port=6379, db=10)

3.在indexs对应的list中添加10条数据

for i in range(10):
    redis_client.rpush("indexs",i)

4.查看indexs键中长度

llen = redis_client.llen("indexs")
print llen:,llen

5.从redis某一键中移除一条数据

job = redis_client.lpop("indexs")
print job:,job

6.获取indexs键中所有数据

jobs = redis_client.lrange(indexs,0,-1)

7.redis设置值

redis_client.hmset("hot_keys",{"singers":"hot_singer"})
redis_client.hmset("hot_keys",{"songs":"hot_song"})

8.redis获取值

arraykey=["singers","songs"]
for key in arraykey:
    for line in  redis_client.hmget("hot_keys",key):
        print key,line

9.redis获取某一db下所有keys

 print redis_client.keys()

10.redis删除某一key

redis_client.delete(indexs)

 

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

python 用于在终端中运行的sublime text 3的简单代码片段制作工具

基于Python项目的Redis缓存消耗内存数据简单分析(附详细操作步骤)

基于Python项目的Redis缓存消耗内存数据简单分析(附详细操作步骤)

基于Python项目的Redis缓存消耗内存数据简单分析(附详细操作步骤)

redis简单使用

python+redis简单实现发红包程序