method

tables_to_cache

tables_to_cache(pool)
private

No documentation available.

# File activerecord/lib/active_record/connection_adapters/schema_cache.rb, line 428
        def tables_to_cache(pool)
          pool.with_connection do |connection|
            connection.data_sources.reject do |table|
              ignored_table?(table)
            end
          end
        end