在 resque 中从 Redis 队列中删除重复条目

发布于 2025-01-04 01:35:01 字数 86 浏览 1 评论 0原文

我正在使用 Resque 并且有一个 Redis 队列。它有某些重复的条目。我需要删除重复的整体。如何删除这些重复的条目?我正在将某个对象的 id 排入队列。

I am using Resque and I have a Redis queue.It has certain duplicate entries. I need to remove the duplicate entires.How do I remove those duplicate entries? I am enqueuing the id of a certain object.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酸甜透明夹心 2025-01-11 01:35:01

查看 resque-loner gem。它允许您使作业队列独一无二。您要做的就是将 Resque::Plugins::UniqueJob 包含在您要使其独一无二的作业类中。

class CacheSweeper
  include Resque::Plugins::UniqueJob


  class << self
    def perform(project_name)
       # some code
    end
  end
end

Look into the resque-loner gem. It allows you to make job queues unique. All you do is include Resque::Plugins::UniqueJob in the job classes you you to make unique.

class CacheSweeper
  include Resque::Plugins::UniqueJob


  class << self
    def perform(project_name)
       # some code
    end
  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文