Class: Sidekiq::SortedSet
- Inherits:
-
Object
- Object
- Sidekiq::SortedSet
- Includes:
- Enumerable
- Defined in:
- lib/sidekiq/api.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
- #clear ⇒ Object (also: #💣)
-
#initialize(name) ⇒ SortedSet
constructor
A new instance of SortedSet.
- #size ⇒ Object
Constructor Details
#initialize(name) ⇒ SortedSet
Returns a new instance of SortedSet.
460 461 462 463 |
# File 'lib/sidekiq/api.rb', line 460 def initialize(name) @name = name @_size = size end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
458 459 460 |
# File 'lib/sidekiq/api.rb', line 458 def name @name end |
Instance Method Details
#clear ⇒ Object Also known as: 💣
469 470 471 472 473 |
# File 'lib/sidekiq/api.rb', line 469 def clear Sidekiq.redis do |conn| conn.del(name) end end |
#size ⇒ Object
465 466 467 |
# File 'lib/sidekiq/api.rb', line 465 def size Sidekiq.redis { |c| c.zcard(name) } end |