美文网首页
redis 去除list的所有数据

redis 去除list的所有数据

作者: 不能没有音乐 | 来源:发表于2021-04-07 09:36 被阅读0次

    ltrim(name, start, end)
    在name对应的列表中移除没有在start-end索引之间的值
    参数:
    name,redis的name
    start,索引的起始位置
    end,索引结束位置

    conn.ltrim(self.key_name, 0, -len(data)-1)

    相关文章

      网友评论

          本文标题:redis 去除list的所有数据

          本文链接:https://www.haomeiwen.com/subject/syjekltx.html