Flowdock
method

current_shard

Importance_1
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: 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
Show source
Register or log in to add new notes.