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