Class: Sidekiq::TransactionAwareClient

Inherits:
Object
  • Object
show all
Defined in:
lib/sidekiq/transaction_aware_client.rb

Instance Method Summary collapse

Constructor Details

#initialize(pool: nil, config: nil) ⇒ TransactionAwareClient

Returns a new instance of TransactionAwareClient.



8
9
10
# File 'lib/sidekiq/transaction_aware_client.rb', line 8

def initialize(pool: nil, config: nil)
  @redis_client = Client.new(pool: pool, config: config)
end

Instance Method Details

#push(item) ⇒ Object



12
13
14
15
16
17
18
# File 'lib/sidekiq/transaction_aware_client.rb', line 12

def push(item)
  # pre-allocate the JID so we can return it immediately and
  # save it to the database as part of the transaction.
  item["jid"] ||= SecureRandom.hex(12)
  AfterCommitEverywhere.after_commit { @redis_client.push(item) }
  item["jid"]
end

#push_bulk(items) ⇒ Object

We don’t provide transactionality for push_bulk because we don’t want to hold potentially hundreds of thousands of job records in memory due to a long running enqueue process.



24
25
26
# File 'lib/sidekiq/transaction_aware_client.rb', line 24

def push_bulk(items)
  @redis_client.push_bulk(items)
end