Class: Sidekiq::SortedSet

Inherits:
Object
  • Object
show all
Includes:
Enumerable
Defined in:
lib/sidekiq/api.rb

Direct Known Subclasses

JobSet

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ SortedSet

Returns a new instance of SortedSet.



295
296
297
298
# File 'lib/sidekiq/api.rb', line 295

def initialize(name)
  @name = name
  @_size = size
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



293
294
295
# File 'lib/sidekiq/api.rb', line 293

def name
  @name
end

Instance Method Details

#clearObject Also known as: 💣



304
305
306
307
308
# File 'lib/sidekiq/api.rb', line 304

def clear
  Sidekiq.redis do |conn|
    conn.del(name)
  end
end

#sizeObject



300
301
302
# File 'lib/sidekiq/api.rb', line 300

def size
  Sidekiq.redis {|c| c.zcard(name) }
end