Sha256: 5179cec4bbc91b66f3b9b393cceb84f1fd3f5a68fb609b79f22d899816a95ed8
Contents?: true
Size: 996 Bytes
Versions: 1
Compression:
Stored size: 996 Bytes
Contents
module ActiveRecordSlave class Railtie < Rails::Railtie # Make the ActiveRecordSlave configuration available in the Rails application config # # Example: For this application ignore the current transactions since the application # has been coded to use ActiveRecordSlave.read_from_master whenever # the current transaction must be visible to reads. # In file config/application.rb # # Rails::Application.configure do # # Read from slave even when in an active transaction # # The application will use ActiveRecordSlave.read_from_master to make # # changes in the current transaction visible to reads # config.active_record_slave.ignore_transactions = true # end config.active_record_slave = ::ActiveRecordSlave # Initialize ActiveRecordSlave initializer "load active_record_slave", after: "active_record.initialize_database" do ActiveRecordSlave.install! end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
active_record_slave-1.6.0 | lib/active_record_slave/railtie.rb |