Sha256: a482b61a8f4c7bbbec1381b06ab3a97883caf31855ae98820787c0bf5624f56a
Contents?: true
Size: 1.25 KB
Versions: 3
Compression:
Stored size: 1.25 KB
Contents
module Rails::Sharding class Config DEFAULT_CONFIGS = { # If true one connection will be established per shard (in every shard group) # on startup. This only establishes the connection with the database but # it does not retrieve a connection yet. This will be done by the ConnectionPool # when necessary. # If false the user must call Shards::ConnectionHandler.establish_connection(shard_group, shard_name) # manually at least once before using each shard. establish_all_connections_on_setup: true, # If true the method #using_shard will be mixed in ActiveRecord scopes. Put # this to false if you don't want the gem to modify ActiveRecord extend_active_record_scope: true, # Specifies where to find the definition of the shards configurations shards_config_file: 'config/shards.yml', # Specifies where to find the migrations for each shard group shards_migrations_dir: 'db/shards_migrations', # Specifies where to find the schemas for each shard group shards_schemas_dir: 'db/shards_schemas' } DEFAULT_CONFIGS.each do |config_name, default_value| self.cattr_accessor config_name self.send(config_name.to_s + '=', default_value) end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rails-sharding-1.0.0 | lib/rails/sharding/config.rb |
rails-sharding-0.1.1 | lib/rails/sharding/config.rb |
rails-sharding-0.1.0 | lib/rails/sharding/config.rb |