Module ActiveRecord::ConnectionAdapters::QueryCache
In: activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb

Methods

Public Class methods

[Source]

# File activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb, line 15
        def dirties_query_cache(base, *method_names)
          method_names.each do |method_name|
            base.class_eval "def \#{method_name}_with_query_dirty(*args)\nclear_query_cache if @query_cache_enabled\n\#{method_name}_without_query_dirty(*args)\nend\n\nalias_method_chain :\#{method_name}, :query_dirty\n", __FILE__, __LINE__
          end
        end

[Source]

# File activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb, line 5
        def included(base)
          base.class_eval do
            attr_accessor :query_cache_enabled
            alias_method_chain :columns, :query_cache
            alias_method_chain :select_all, :query_cache
          end

          dirties_query_cache base, :insert, :update, :delete
        end

Public Instance methods

Enable the query cache within the block.

[Source]

# File activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb, line 31
      def cache
        old, @query_cache_enabled = @query_cache_enabled, true
        @query_cache ||= {}
        yield
      ensure
        clear_query_cache
        @query_cache_enabled = old
      end

[Source]

# File activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb, line 48
      def clear_query_cache
        @query_cache.clear if @query_cache
      end

[Source]

# File activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb, line 60
      def columns_with_query_cache(*args)
        if @query_cache_enabled
          @query_cache["SHOW FIELDS FROM #{args.first}"] ||= columns_without_query_cache(*args)
        else
          columns_without_query_cache(*args)
        end
      end

[Source]

# File activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb, line 52
      def select_all_with_query_cache(*args)
        if @query_cache_enabled
          cache_sql(args.first) { select_all_without_query_cache(*args) }
        else
          select_all_without_query_cache(*args)
        end
      end

Disable the query cache within the block.

[Source]

# File activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb, line 41
      def uncached
        old, @query_cache_enabled = @query_cache_enabled, false
        yield
      ensure
        @query_cache_enabled = old
      end

Private Instance methods

[Source]

# File activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb, line 69
        def cache_sql(sql)
          result =
            if @query_cache.has_key?(sql)
              log_info(sql, "CACHE", 0.0)
              @query_cache[sql]
            else
              @query_cache[sql] = yield
            end

          case result
          when Array
            result.collect { |row| row.dup }
          when nil, Fixnum, Float, true, false
            result
          else
            result.dup
          end
        rescue TypeError
          result
        end

[Validate]