Class: Sidekiq::Queue
Overview
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Class Method Summary collapse
-
.all ⇒ Object
Return all known queues within Redis.
Instance Method Summary collapse
- #clear ⇒ Object (also: #💣)
- #each ⇒ Object
-
#find_job(jid) ⇒ Object
Find the job with the given JID within this queue.
-
#initialize(name = "default") ⇒ Queue
constructor
A new instance of Queue.
-
#latency ⇒ Object
Calculates this queue’s latency, the difference in seconds since the oldest job in the queue was enqueued.
-
#paused? ⇒ Boolean
Sidekiq Pro overrides this.
- #size ⇒ Object
Constructor Details
#initialize(name = "default") ⇒ Queue
Returns a new instance of Queue.
213 214 215 216 |
# File 'lib/sidekiq/api.rb', line 213 def initialize(name = "default") @name = name.to_s @rname = "queue:#{name}" end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
211 212 213 |
# File 'lib/sidekiq/api.rb', line 211 def name @name end |
Class Method Details
Instance Method Details
#clear ⇒ Object Also known as: 💣
273 274 275 276 277 278 279 280 |
# File 'lib/sidekiq/api.rb', line 273 def clear Sidekiq.redis do |conn| conn.multi do conn.del(@rname) conn.srem("queues", name) end end end |
#each ⇒ Object
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 |
# File 'lib/sidekiq/api.rb', line 243 def each initial_size = size deleted_size = 0 page = 0 page_size = 50 loop do range_start = page * page_size - deleted_size range_end = range_start + page_size - 1 entries = Sidekiq.redis { |conn| conn.lrange @rname, range_start, range_end } break if entries.empty? page += 1 entries.each do |entry| yield Job.new(entry, @name) end deleted_size = initial_size - size end end |
#find_job(jid) ⇒ Object
Find the job with the given JID within this queue.
This is a slow, inefficient operation. Do not use under normal conditions. Sidekiq Pro contains a faster version.
269 270 271 |
# File 'lib/sidekiq/api.rb', line 269 def find_job(jid) detect { |j| j.jid == jid } end |
#latency ⇒ Object
Calculates this queue’s latency, the difference in seconds since the oldest job in the queue was enqueued.
232 233 234 235 236 237 238 239 240 241 |
# File 'lib/sidekiq/api.rb', line 232 def latency entry = Sidekiq.redis { |conn| conn.lrange(@rname, -1, -1) }.first return 0 unless entry job = Sidekiq.load_json(entry) now = Time.now.to_f thence = job["enqueued_at"] || now now - thence end |
#paused? ⇒ Boolean
Sidekiq Pro overrides this
223 224 225 |
# File 'lib/sidekiq/api.rb', line 223 def paused? false end |