method

cached_fixtures

rails latest stable - Class: ActiveRecord::Fixtures

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v3.2.13) is shown here.

cached_fixtures(connection, keys_to_fetch = nil)
public

No documentation available.

# File activerecord/lib/active_record/fixtures.rb, line 410
    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