大桔灯文库logo

下载提示:1. 本站不保证资源下载的准确性、安全性和完整性,同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
2. 本文档由用户上传,版权归属用户,大桔灯负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。

相关文档

  • 77(1):cache.py.doc

    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

  • 78《(2):.doc

    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

  • 8cache.py.doc

    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

  • 52《集合(1):lottery.py.doc

    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

  • 50《列表(1):.doc

    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): 在推入元素之前进行检查确保长

  • 48《散列(1):.doc

    encoding: utf-8 为了方便起见这个实现会将所有缓存都放到一个预设的散列键里面 如果有需要的话我们也可以给 Cache.__init__() 添加一个 key 参数 让用户自己指定放置缓存的散列键CACHE_KEY = hash::cacheclass Cache:def __init__(self client):self.key = CACHE_KEYself.client =

  • 53《集合(2):.doc

    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

  • 51《列表(2):.doc

    encoding: utf-8要将 Timeline 实现从左端推入改为右端推入要解决的问题是:1. Redis 只有从左向右获取项的命令 LRANGE 而没有 RRANGE 为了解决这个问题我写了 rrange 函数来从右向左获取列表的项2. 将正数索引转换为相应的负数索引比如对于从左边推入项的 Timeline 实现来说要获取最新的 5 个元素我们只需要调用 fetch_recent(5)

  • 49《散列(2):.doc

    encoding: utf-8 为了方便起见 这个实现会将所有生成器都放到一个预设的散列键里面 如果有需要的话 我们也可以给 IdGenerator.__init__() 添加一个 key 参数 让用户自己指定放置生成器的散列键GENERATOR_KEY = hash::id::generatorclass IdGenerator:def __init__(self field client):

  • 54《有序集合》(1):paging.py.doc

    encoding: utf-8class Paging:? ? def __init__(self key client):? ? ? ? ? ? ? ? 设置储存分页数据的键? ? ? ? ? ? ? ? self.key = key? ? ? ? self.client = client? ? def add_item(self item post_time):? ? ? ? ? ? ? ?

违规举报

违法有害信息,请在下方选择原因提交举报


客服

顶部