2023-07-13 01:06:00 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module DatabaseHelper
|
|
|
|
def with_read_replica(&block)
|
2023-07-17 16:26:52 +10:00
|
|
|
ApplicationRecord.connected_to(role: :reading, prevent_writes: true, &block)
|
2023-07-13 01:06:00 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def with_primary(&block)
|
2023-07-17 16:26:52 +10:00
|
|
|
ApplicationRecord.connected_to(role: :writing, &block)
|
2023-07-13 01:06:00 +10:00
|
|
|
end
|
|
|
|
end
|