active_cached_resource 0.1.8 → 0.1.10
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: afcd141833ea0ddb9bd49c2c6d8381647070bb826908af33a0a4bdb9af9b0baa
|
4
|
+
data.tar.gz: cf5579fb46a2076f86c635e048cf8dcfeb0ae18aae932e59eca73d82576c8c0e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd2750852a436d259d3e7574ec0719b23e6ddf7c24813d3d641abc89931e48396940113a19d61ff963d8fe3c414fc3a4de987a9189c4d40762a7e69d42e1c981
|
7
|
+
data.tar.gz: c7776d28e660fd88807412f8b48a500ead60865b713387974ac94441152d9fdbe16ee3616441a37e42eac7c3cb864ce97ad716bf8863191c18f491d081a1eb81
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
## [0.1.9] - 2024-02-05
|
2
|
+
- Fixed bug not allowing reloading collection cache
|
3
|
+
- Change debug to info for cache hits
|
4
|
+
|
5
|
+
## [0.1.8] - 2024-01-24
|
6
|
+
- Fixed issue with `#clear_cache` method with Redis
|
7
|
+
|
1
8
|
## [0.1.7] - 2024-01-23
|
2
9
|
- Improved `clear_cache` method for `active_support_cache` strategy to no longer use `delete_matched`.
|
3
10
|
- Introduced `.delete_from_cache` method to delete single cached resources.
|
@@ -148,7 +148,7 @@ module ActiveCachedResource
|
|
148
148
|
#
|
149
149
|
# @return [void]
|
150
150
|
def clear_cache
|
151
|
-
cached_resource.logger.
|
151
|
+
cached_resource.logger.info("Clearing cache for #{name} cache with prefix: #{cache_key_prefix}")
|
152
152
|
cached_resource.cache.clear(cache_key_prefix)
|
153
153
|
end
|
154
154
|
|
@@ -166,7 +166,7 @@ module ActiveCachedResource
|
|
166
166
|
|
167
167
|
return nil if json_string.nil?
|
168
168
|
|
169
|
-
cached_resource.logger.
|
169
|
+
cached_resource.logger.info("[KEY:#{key}] Cache hit")
|
170
170
|
json_to_object(json_string)
|
171
171
|
end
|
172
172
|
|
@@ -1,5 +1,15 @@
|
|
1
1
|
module ActiveCachedResource
|
2
2
|
class Collection < ActiveResource::Collection
|
3
|
+
# Reload the collection by re-fetching the resources from the API.
|
4
|
+
#
|
5
|
+
# ==== Returns
|
6
|
+
#
|
7
|
+
# [Array<Object>] The collection of resources retrieved from the API.
|
8
|
+
def reload
|
9
|
+
query_params[Constants::RELOAD_PARAM] = true
|
10
|
+
super
|
11
|
+
end
|
12
|
+
|
3
13
|
private
|
4
14
|
|
5
15
|
def request_resources!
|
@@ -122,7 +122,7 @@ module ActiveResource # :nodoc:
|
|
122
122
|
# [Array<Object>] The collection of resources retrieved from the API.
|
123
123
|
def reload
|
124
124
|
@requested = false
|
125
|
-
|
125
|
+
call
|
126
126
|
end
|
127
127
|
|
128
128
|
# Executes the request to fetch the collection of resources from the API and returns the collection.
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_cached_resource
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jean Luis Urena
|
8
8
|
bindir: exe
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-03-05 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: activemodel-serializers-xml
|
@@ -136,7 +136,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
136
136
|
- !ruby/object:Gem::Version
|
137
137
|
version: '0'
|
138
138
|
requirements: []
|
139
|
-
rubygems_version: 3.6.
|
139
|
+
rubygems_version: 3.6.5
|
140
140
|
specification_version: 4
|
141
141
|
summary: ActiveResource, but with a caching layer.
|
142
142
|
test_files: []
|