Class: Cash::Query::Abstract
- Inherits:
-
Object
- Object
- Cash::Query::Abstract
- Defined in:
- lib/cash/query/abstract.rb
Direct Known Subclasses
Constant Summary collapse
- DESC =
/DESC/i
Class Method Summary collapse
Instance Method Summary collapse
- #calculation? ⇒ Boolean
-
#initialize(active_record, options1, options2) ⇒ Abstract
constructor
A new instance of Abstract.
- #limit ⇒ Object
- #offset ⇒ Object
- #order ⇒ Object
- #perform(find_options = {}, get_options = {}) ⇒ Object
Constructor Details
#initialize(active_record, options1, options2) ⇒ Abstract
Returns a new instance of Abstract.
11 12 13 |
# File 'lib/cash/query/abstract.rb', line 11 def initialize(active_record, , ) @active_record, @options1, @options2 = active_record, , || {} end |
Class Method Details
.perform(*args) ⇒ Object
7 8 9 |
# File 'lib/cash/query/abstract.rb', line 7 def self.perform(*args) new(*args).perform end |
Instance Method Details
#calculation? ⇒ Boolean
47 48 49 |
# File 'lib/cash/query/abstract.rb', line 47 def calculation? false end |
#limit ⇒ Object
39 40 41 |
# File 'lib/cash/query/abstract.rb', line 39 def limit @limit ||= @options1[:limit] || @options2[:limit] end |
#offset ⇒ Object
43 44 45 |
# File 'lib/cash/query/abstract.rb', line 43 def offset @offset ||= @options1[:offset] || @options2[:offset] || 0 end |
#order ⇒ Object
28 29 30 31 32 33 34 35 36 37 |
# File 'lib/cash/query/abstract.rb', line 28 def order @order ||= begin if order_sql = @options1[:order] || @options2[:order] matched, table_name, column_name, direction = *(ORDER.match(order_sql)) [column_name, direction =~ DESC ? :desc : :asc] else ['id', :asc] end end end |
#perform(find_options = {}, get_options = {}) ⇒ Object
15 16 17 18 19 20 21 22 23 24 |
# File 'lib/cash/query/abstract.rb', line 15 def perform( = {}, = {}) if cache_config = cacheable?(@options1, @options2, ) cache_keys, index = cache_keys(cache_config[0]), cache_config[1] misses, missed_keys, objects = hit_or_miss(cache_keys, index, ) format_results(cache_keys, choose_deserialized_objects_if_possible(missed_keys, cache_keys, misses, objects)) else uncacheable end end |