Class: ActiveRecord::StatementCache

Inherits:
Object
  • Object
show all
Defined in:
lib/active_record/statement_cache.rb

Overview

Statement cache is used to cache a single statement in order to avoid creating the AST again. Initializing the cache is done by passing the statement in the create block:

cache = StatementCache.create(Book.connection) do |params|
  Book.where(name: "my book").where("author_id > 3")
end

The cached statement is executed by using the connection.execute method:

cache.execute([], Book.connection)

The relation returned by the block is cached, and for each execute call the cached relation gets duped. Database is queried when to_a is called on the relation.

If you want to cache the statement without the values you can use the bind method of the block parameter.

cache = StatementCache.create(Book.connection) do |params|
  Book.where(name: params.bind)
end

And pass the bind values as the first argument of execute call.

cache.execute(["my book"], Book.connection)

Defined Under Namespace

Classes: BindMap, Params, PartialQuery, Query, Substitute

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(query_builder, bind_map, klass) ⇒ StatementCache

Returns a new instance of StatementCache.



97
98
99
100
101
# File 'lib/active_record/statement_cache.rb', line 97

def initialize(query_builder, bind_map, klass)
  @query_builder = query_builder
  @bind_map = bind_map
  @klass = klass
end

Class Method Details

.create(connection, block = Proc.new) ⇒ Object



90
91
92
93
94
95
# File 'lib/active_record/statement_cache.rb', line 90

def self.create(connection, block = Proc.new)
  relation = block.call Params.new
  query_builder, binds = connection.cacheable_query(self, relation.arel)
  bind_map = BindMap.new(binds)
  new(query_builder, bind_map, relation.klass)
end

.partial_query(values) ⇒ Object



63
64
65
# File 'lib/active_record/statement_cache.rb', line 63

def self.partial_query(values)
  PartialQuery.new(values)
end

.query(sql) ⇒ Object



59
60
61
# File 'lib/active_record/statement_cache.rb', line 59

def self.query(sql)
  Query.new(sql)
end

.unsupported_value?(value) ⇒ Boolean

Returns:

  • (Boolean)


111
112
113
114
115
# File 'lib/active_record/statement_cache.rb', line 111

def self.unsupported_value?(value)
  case value
  when NilClass, Array, Range, Hash, Relation, Base then true
  end
end

Instance Method Details

#execute(params, connection, &block) ⇒ Object



103
104
105
106
107
108
109
# File 'lib/active_record/statement_cache.rb', line 103

def execute(params, connection, &block)
  bind_values = bind_map.bind params

  sql = query_builder.sql_for bind_values, connection

  klass.find_by_sql(sql, bind_values, preparable: true, &block)
end