summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/models/concerns/redis_cacheable.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/concerns/redis_cacheable.rb b/app/models/concerns/redis_cacheable.rb
index 249ebf9af07..b889f4202dc 100644
--- a/app/models/concerns/redis_cacheable.rb
+++ b/app/models/concerns/redis_cacheable.rb
@@ -27,7 +27,7 @@ module RedisCacheable
private
def cache_attribute_key
- "#{self.class.name}:attributes:#{self.id}"
+ "cache:#{self.class.name}:#{self.id}:attributes"
end
def cached_attributes