zoukankan      html  css  js  c++  java
  • Redis 通过 scan 找出不过期的 key

    # SCAN 命令是一个基于游标的迭代器(cursor based iterator):SCAN 命令每次被调用之后,都会向用户返回一个新的游标,用户在下次迭代时需要使用这个新游标作为 SCAN 命令的游标参数,以此来延续之前的迭代过程。
    # 注意:当 SCAN 命令的游标参数被设置为 0 时,服务器将开始一次新的迭代,而当服务器向用户返回值为 0 的游标时,表示迭代已结束!

    # vim redis_no_ttl_key.sh

    #!/bin/bash
    # Redis 通过 scan 找出不过期的 key
    # SCAN 命令是一个基于游标的迭代器(cursor based iterator):SCAN 命令每次被调用之后,都会向用户返回一个新的游标,用户在下次迭代时需要使用这个新游标作为 SCAN 命令的游标参数,以此来延续之前的迭代过程。
    # 注意:当 SCAN 命令的游标参数被设置为 0 时,服务器将开始一次新的迭代,而当服务器向用户返回值为 0 的游标时,表示迭代已结束!
    
    db_ip=10.100.41.148       # redis 连接IP
    db_port=6379              # redis 端口
    password='IootCdgN05srE'  # redis 密码
    cursor=0                  # 第一次游标
    cnt=100                   # 每次迭代的数量
    new_cursor=0              # 下一次游标
    
    redis-cli -c -h $db_ip -p $db_port -a $password scan $cursor count $cnt > scan_tmp_result
    new_cursor=`sed -n '1p' scan_tmp_result`     # 获取下一次游标
    sed -n '2,$p' scan_tmp_result > scan_result  # 获取 key
    cat scan_result |while read line             # 循环遍历所有 key
    do
        ttl_result=`redis-cli -c -h $db_ip -p $db_port -a $password ttl $line`  # 获取key过期时间
        if [[ $ttl_result == -1 ]];then
        #if [ $ttl_result -eq -1 ];then          # 判断过期时间,-1 是不过期
            echo $line >> no_ttl.log             # 追加到指定日志
        fi
    done
    
    while [ $cursor -ne $new_cursor ]            # 若游标不为0,则证明没有迭代完所有的key,继续执行,直至游标为0
    do
        redis-cli -c -h $db_ip -p $db_port -a $password scan $new_cursor count $cnt > scan_tmp_result
        new_cursor=`sed -n '1p' scan_tmp_result`
        sed -n '2,$p' scan_tmp_result > scan_result
        cat scan_result |while read line
        do
            ttl_result=`redis-cli -c -h $db_ip -p $db_port -a $password ttl $line`
            if [[ $ttl_result == -1 ]];then
            #if [ $ttl_result -eq -1 ];then
                echo $line >> no_ttl.log
            fi
        done
    done
    rm -rf scan_tmp_result
    rm -rf scan_result
  • 相关阅读:
    Linux的inode的理解
    linux中ctrl+z和ctrl+c的区别
    linux后台运行和关闭、查看后台任务
    解决Could not get lock /var/cache/apt/archives/lock
    Spring Boot 2.1.5 正式发布,1.5.x 即将结束使命!
    【免费】某平台16980元编程课程资料下载,仅此1次
    秒杀系统架构分析与实战,一文带你搞懂秒杀架构!
    阿里数据库大牛的 MySQL 学习指南!
    Intellij IDEA 撸码最头大的问题。。
    Java 中的 SPI 机制是什么鬼?高级 Java 必须掌握!
  • 原文地址:https://www.cnblogs.com/hankyoon/p/15156848.html
Copyright © 2011-2022 走看看