python redis

2022/4/24 19:13:14

本文主要是介绍python redis,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

from random import random
import redis
import time

from sqlalchemy import true

def t1():
    url1=""
    pool=redis.ConnectionPool(host=url1,port=6379,password="")
    recon1=redis.Redis(connection_pool=pool)
    print(
        recon1.exists("s1")
    )

def save_sfz_hold(sfz):
    
    url1="r-bp1c0ynvdx3s7h64k4pd.redis.rds.aliyuncs.com"
    pool=redis.ConnectionPool(host=url1,port=6379,password="lsz:Qazokm741")
    rc1=redis.Redis(connection_pool=pool)
    t1=int(time.time()+60)
    re1=rc1.hset("sfz_hold",sfz,t1)
    return re1


def get_sfz_hold():
    url1="r-bp1c0ynvdx3s7h64k4pd.redis.rds.aliyuncs.com"
    pool=redis.ConnectionPool(host=url1,port=6379,password="lsz:Qazokm741")
    rc1=redis.Redis(connection_pool=pool)
    re1=rc1.hgetall("sfz_hold")
    ar1=[]
    for q in re1:
        sfz=str(q,encoding="utf-8")
        t1=str(re1[q],encoding="utf-8")
        t1=int(t1)
        if t1>int(time.time()):
            sfz=str(q,encoding="utf-8")
            ar1.append(sfz)
        else:
            rc1.hdel("sfz_hold",sfz)
    return ar1

  



这篇关于python redis的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程