method
current_shard
v7.2.3 -
Show latest stable
- Class:
ActiveRecord::Core
current_shard()public
Returns the symbol representing the current connected shard.
ActiveRecord::Base.connected_to(role: :reading) do ActiveRecord::Base.current_shard #=> :default end ActiveRecord::Base.connected_to(role: :writing, shard: :one) do ActiveRecord::Base.current_shard #=> :one end