method

cached_fixtures

cached_fixtures(connection, keys_to_fetch = nil)
public

No documentation available.

# File activerecord/lib/active_record/fixtures.rb, line 431
    def self.cached_fixtures(connection, keys_to_fetch = nil)
      if keys_to_fetch
        cache_for_connection(connection).values_at(*keys_to_fetch)
      else
        cache_for_connection(connection).values
      end
    end