activerecord-cached_at 2.0.7 → 2.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/cached_at/associations/has_many_through_association.rb +28 -22
- data/lib/cached_at/base.rb +0 -1
- data/lib/cached_at/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db52a9781aef2816fbd61977be020afad8e25a9b
|
4
|
+
data.tar.gz: 1b20acad3adacdb68b1920aaaa90b82b8166dc88
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ecdd3baaf3d1c04e795468f8cf8b6517b22f777892ee9dcdec9299202a3f41d9e579d96494deb92a56def115d9aac802239e87a203b8fba79a50e64a3a63914b
|
7
|
+
data.tar.gz: 32a7e4324a8136d5d29831856dc5041a2c47f0ffb0d5c9c03f5caadc50f526d40948e6f36f9871b6f1bad496e83a70c7a96757d4bdc33d130a043efcd269eca6
|
@@ -3,34 +3,40 @@ module CachedAt
|
|
3
3
|
|
4
4
|
def touch_cached_at(timestamp, method)
|
5
5
|
using_reflection = reflection.parent_reflection || reflection
|
6
|
-
return unless using_reflection.options[:cached_at]
|
7
|
-
|
8
|
-
return if method == :create && !using_reflection.is_a?(ActiveRecord::Reflection::HasAndBelongsToManyReflection)
|
9
|
-
|
10
|
-
if using_reflection.inverse_of.nil?
|
11
|
-
puts "WARNING: cannot updated cached at for relationship: #{owner.class.name}.#{using_reflection.name}, inverse_of not set"
|
12
|
-
return
|
13
|
-
end
|
14
6
|
|
15
|
-
|
7
|
+
if using_reflection.options[:cached_at]
|
8
|
+
return if method == :create && !using_reflection.is_a?(ActiveRecord::Reflection::HasAndBelongsToManyReflection)
|
9
|
+
|
10
|
+
if using_reflection.inverse_of.nil?
|
11
|
+
puts "WARNING: cannot updated cached at for relationship: #{owner.class.name}.#{using_reflection.name}, inverse_of not set"
|
12
|
+
return
|
13
|
+
end
|
14
|
+
cache_column = "#{using_reflection.inverse_of.name}_cached_at"
|
16
15
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
else
|
22
|
-
ids = [owner.send(using_reflection.association_primary_key), owner.send("#{using_reflection.association_primary_key}_was")].compact.uniq
|
23
|
-
arel_table = klass._reflections[using_reflection.inverse_of.options[:through].to_s].klass.arel_table
|
24
|
-
query = klass.joins(using_reflection.inverse_of.options[:through])
|
25
|
-
query = if using_reflection.is_a?(ActiveRecord::Reflection::HasAndBelongsToManyReflection)
|
26
|
-
query.where(arel_table[using_reflection.foreign_key].in(ids))
|
16
|
+
query = nil
|
17
|
+
if loaded?
|
18
|
+
target.each { |r| r.raw_write_attribute(cache_column, timestamp) }
|
19
|
+
query = klass.where(klass.primary_key => target.map(&:id))
|
27
20
|
else
|
28
|
-
|
21
|
+
ids = [owner.send(using_reflection.association_primary_key), owner.send("#{using_reflection.association_primary_key}_was")].compact.uniq
|
22
|
+
arel_table = klass._reflections[using_reflection.inverse_of.options[:through].to_s].klass.arel_table
|
23
|
+
query = klass.joins(using_reflection.inverse_of.options[:through])
|
24
|
+
query = if using_reflection.is_a?(ActiveRecord::Reflection::HasAndBelongsToManyReflection)
|
25
|
+
query.where(arel_table[using_reflection.foreign_key].in(ids))
|
26
|
+
else
|
27
|
+
query.where(arel_table[using_reflection.inverse_of.foreign_key].in(ids))
|
28
|
+
end
|
29
29
|
end
|
30
|
+
|
31
|
+
query.update_all({ cache_column => timestamp })
|
32
|
+
traverse_relationships(klass, options[:cached_at], query, cache_column, timestamp)
|
30
33
|
end
|
31
34
|
|
32
|
-
|
33
|
-
|
35
|
+
if using_reflection.inverse_of && using_reflection.inverse_of.options[:cached_at]
|
36
|
+
cache_column = "#{using_reflection.name}_cached_at"
|
37
|
+
owner.raw_write_attribute(cache_column, timestamp)
|
38
|
+
owner.update_columns(cache_column => timestamp)
|
39
|
+
end
|
34
40
|
end
|
35
41
|
|
36
42
|
def touch_records_cached_at(records, timestamp)
|
data/lib/cached_at/base.rb
CHANGED
@@ -43,7 +43,6 @@ module CachedAt
|
|
43
43
|
r.options[:cached_at] && r.options[:through] && r.options[:through] == reflection.inverse_of&.name
|
44
44
|
end
|
45
45
|
end
|
46
|
-
|
47
46
|
|
48
47
|
next unless reflection.options[:cached_at] || reflection&.parent_reflection&.class == ActiveRecord::Reflection::HasAndBelongsToManyReflection || !through_connections.empty?
|
49
48
|
next if instance_variable_defined?(:@relationships_cached_at_touched) && (!@relationships_cached_at_touched.nil? && @relationships_cached_at_touched[reflection.name])
|
data/lib/cached_at/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activerecord-cached_at
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jon Bracy
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-01-
|
11
|
+
date: 2017-01-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|