Sha256: 8f15fcbb357e9aa6cf67f41fba6860c26b94e192e18dbf4a4c1f14f4ef008bf5

Contents?: true

Size: 881 Bytes

Versions: 4

Compression:

Stored size: 881 Bytes

Contents

# -*- encoding : utf-8 -*-
module SecondLevelCache
  module ActiveRecord
    module Associations
      module HasOneAssociation
        extend ActiveSupport::Concern
        included do
          class_eval do
            alias_method_chain :find_target, :second_level_cache
          end
        end

        def find_target_with_second_level_cache
          return find_target_without_second_level_cache unless klass.second_level_cache_enabled?
          cache_record = klass.fetch_by_uniq_key(owner[reflection.active_record_primary_key], reflection.foreign_key)
          return cache_record.tap{|record| set_inverse_instance(record)} if cache_record

          record = find_target_without_second_level_cache

          record.tap do |r|
            set_inverse_instance(r)
            r.write_second_level_cache
          end if record
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
second_level_cache-2.1.0.rc2 lib/second_level_cache/active_record/has_one_association.rb
second_level_cache-2.1.0.rc1 lib/second_level_cache/active_record/has_one_association.rb
second_level_cache-2.0.0 lib/second_level_cache/active_record/has_one_association.rb
second_level_cache-2.0.0.rc1 lib/second_level_cache/active_record/has_one_association.rb