|
NAMECatalyst::TraitFor::Model::DBIC::Schema::Replicated - Replicated storage support for Catalyst::Model::DBIC::SchemaSYNOPSiS__PACKAGE__->config({ traits => ['Replicated'] connect_info => ['dbi:mysql:master', 'user', 'pass'], replicants => [ ['dbi:mysql:slave1', 'user', 'pass'], ['dbi:mysql:slave2', 'user', 'pass'], ['dbi:mysql:slave3', 'user', 'pass'], ], balancer_args => { master_read_weight => 0.3 } }); DESCRIPTIONSets your storage_type to DBIx::Class::Storage::DBI::Replicated and connects replicants provided in config. See that module for supported resultset attributes.The default "balancer_type" in DBIx::Class::Storage::DBI::Replicated is "::Random". Sets the "master_read_weight" in DBIx::Class::Storage::DBI::Replicated::Balancer::Random to 1 by default, meaning that you have the same chance of reading from master as you do from replicants. Set to 0 to turn off reads from master. CONFIG PARAMETERSreplicantsArray of connect_info settings for every replicant.The following can be set via "connect_info" in Catalyst::Model::DBIC::Schema, or as their own parameters. If set via separate parameters, they will override the settings in "connect_info". pool_typeSee "pool_type" in DBIx::Class::Storage::DBI::Replicated.pool_argsSee "pool_args" in DBIx::Class::Storage::DBI::Replicated.balancer_typeSee "balancer_type" in DBIx::Class::Storage::DBI::Replicated.balancer_argsSee "balancer_args" in DBIx::Class::Storage::DBI::Replicated.SEE ALSOCatalyst::Model::DBIC::Schema, DBIx::Class, DBIx::Class::Storage::DBI::Replicated, Catalyst::TraitFor::Model::DBIC::Schema::CachingAUTHORSee "AUTHOR" in Catalyst::Model::DBIC::Schema and "CONTRIBUTORS" in Catalyst::Model::DBIC::Schema.COPYRIGHTSee "COPYRIGHT" in Catalyst::Model::DBIC::Schema.LICENSEThis program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |