coding: utf-8class Cache:def __init__(self client):self.client = clientdef put(self name content):self.client.set(name content)def get(self name):return self.client.get(name) 使用 SETEX 实现def expire_pu
encoding: utf-8from datetime import datetime timedeltadef today_remaind_seconds():? ? now = datetime.now()? ? tomorrow = now timedelta(days=1) - timedelta(hours=now.hour minutes=now.minuteseconds=no
coding: utf-8class Cache:? ? def __init__(self client):? ? ? ? self.client = client? ? def put(self name content):? ? ? ? self.client.set(name content)? ? def get(self name):? ? ? ? return self.clien
encoding: utf-8class Lottery:? ? def __init__(self key client):? ? ? ? self.key = key? ? ? ? self.client = client? ? def add_player(self users):? ? ? ? self.client.sadd(self.key users)? ? def get_all
encoding: utf-8from redis import WatchErrorclass FixedFIFO:def __init__(self key max_length client):self.key = keyself.max_length = max_lengthself.client = clientdef enqueue(selfitem): 在推入元素之前进行检查确保长
encoding: utf-8 为了方便起见这个实现会将所有缓存都放到一个预设的散列键里面 如果有需要的话我们也可以给 Cache.__init__() 添加一个 key 参数 让用户自己指定放置缓存的散列键CACHE_KEY = hash::cacheclass Cache:def __init__(self client):self.key = CACHE_KEYself.client =
encoding: utf-8from redis import WatchErrordef make_up_vote_key(name):? ? return name ::up::votedef make_down_vote_key(name):? ? return name ::down::voteclass UpDownVote:? ? def __init__(self name
encoding: utf-8要将 Timeline 实现从左端推入改为右端推入要解决的问题是:1. Redis 只有从左向右获取项的命令 LRANGE 而没有 RRANGE 为了解决这个问题我写了 rrange 函数来从右向左获取列表的项2. 将正数索引转换为相应的负数索引比如对于从左边推入项的 Timeline 实现来说要获取最新的 5 个元素我们只需要调用 fetch_recent(5)
encoding: utf-8 为了方便起见 这个实现会将所有生成器都放到一个预设的散列键里面 如果有需要的话 我们也可以给 IdGenerator.__init__() 添加一个 key 参数 让用户自己指定放置生成器的散列键GENERATOR_KEY = hash::id::generatorclass IdGenerator:def __init__(self field client):
encoding: utf-8class Paging:? ? def __init__(self key client):? ? ? ? ? ? ? ? 设置储存分页数据的键? ? ? ? ? ? ? ? self.key = key? ? ? ? self.client = client? ? def add_item(self item post_time):? ? ? ? ? ? ? ?
违法有害信息,请在下方选择原因提交举报