forked from zammad/zammad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcache.rb
61 lines (40 loc) · 843 Bytes
/
cache.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
module Cache
=begin
delete a cache
Cache.delete('some_key')
=end
def self.delete(key)
Rails.cache.delete(key.to_s)
end
=begin
write a cache
Cache.write(
'some_key',
{ some: { data: { 'structure' } } },
{ expires_in: 24.hours, # optional, default 7 days }
)
=end
def self.write(key, data, params = {})
params[:expires_in] ||= 7.days
# in certain cases, caches are deleted by other thread at same
# time, just log it
Rails.cache.write(key.to_s, data, params)
rescue => e
Rails.logger.error "Can't write cache #{key}: #{e.inspect}"
Rails.logger.error e
end
=begin
get a cache
value = Cache.get('some_key')
=end
def self.get(key)
Rails.cache.read(key.to_s)
end
=begin
clear whole cache store
Cache.clear
=end
def self.clear
Rails.cache.clear
end
end