【Redis】 redis-cluster删除指定的key

需要从redis-cluster中删除指定的key


循环每个主节点的版本:

  1. [root@ip-172-31-39-42 ~]# more delkey-single.py
  2. # encoding: utf-8

  3. import redis
  4. import random
  5. import string
  6. import rediscluster
  7. import time
  8. all_nodes=['172.31.39.42','172.31.36.10','172.31.47.157','172.31.36.49','172.31.40.169','172.31.32.234']


  9. def del_keys_without_pipe(newhost):
  10.     pool = redis.ConnectionPool(host=newhost, port=6379, db=0,password='inH7HkD7iXoxKZCi')
  11.     r = redis.StrictRedis(connection_pool=pool)
  12.     start_time = time.time()
  13.     result_length = 0
  14.     for key in r.scan_iter(match='user:*:type:*:news:msg', count=100):
  15.         if r.ttl(key) == -1:     如果未设置过期时间
  16.            print key
  17.    # r.delete(key)
  18.         result_length += 1
  19.     print "normal ways end at:", time.time() - start_time
  20.     print newhost,"normal ways delete numbers:", result_length
  21. for i in all_nodes:
  22.         del_keys_without_pipe(i)




注意:循环链接只能去链接主节点,如果链接从节点会报以下的错误:
>>> for key in r.scan_iter(count=10):
...     if r.ttl(key) == -1:
...        print key
... 
Traceback (most recent call last):
  File "", line 2, in
  File "/usr/lib/python2.7/site-packages/redis/client.py", line 1231, in ttl
    return self.execute_command('TTL', name)
  File "/usr/lib/python2.7/site-packages/redis/client.py", line 668, in execute_command
    return self.parse_response(connection, command_name, **options)
  File "/usr/lib/python2.7/site-packages/redis/client.py", line 680, in parse_response
    response = connection.read_response()
  File "/usr/lib/python2.7/site-packages/redis/connection.py", line 629, in read_response
    raise response
redis.exceptions.ResponseError: MOVED 12752 172.31.32.234:6379





链接集群版本

  1. [root@ip-172-31-39-42 ~]# more delkey-cluster.py
  2. # encoding: utf-8

  3. import redis
  4. import random
  5. import string
  6. import rediscluster
  7. import time


  8. def del_keys_without_pipe():
  9.     startup_nodes = [{"host": "172.31.39.42", "port": 6379,"db":0}]
  10.     r = rediscluster.StrictRedisCluster(startup_nodes=startup_nodes, password='inH7HkD7iXoxKZCi')
  11.     start_time = time.time()
  12.     result_length = 0
  13.     for key in r.scan_iter(match='user:*:type:*:news:msg', count=100):
  14.     # r.delete(key)
  15.         result_length += 1
  16.     print "normal ways end at:", time.time() - start_time
  17.     print "normal ways delete numbers:", result_length

  18. del_keys_without_pipe()

综合以上两种方式,还是使用链接cluster的方式吧,使用的模块也不一样!

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/29096438/viewspace-2153950/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/29096438/viewspace-2153950/

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值