File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ Dalli Changelog
3
3
4
4
2.7.11
5
5
==========
6
+ - DEPRECATION: : dalli_store will be removed in Dalli 3.0.
7
+ Use Rails' official : mem_cache_store instead.
8
+ https://guides.rubyonrails.org/caching_with_rails.html
6
9
- Add new ` digest_class ` option to Dalli::Client [ #724 ]
7
10
- Don't treat NameError as a network error [ #728 ]
8
11
- Handle nested comma separated server strings (sambostock)
Original file line number Diff line number Diff line change @@ -50,6 +50,11 @@ def mute
50
50
# wish to use pool support.
51
51
#
52
52
def initialize ( *addresses )
53
+ puts <<-EOS
54
+ DEPRECATION: :dalli_store will be removed in Dalli 3.0.
55
+ Please use Rails' official :mem_cache_store instead.
56
+ https://guides.rubyonrails.org/caching_with_rails.html
57
+ EOS
53
58
addresses = addresses . flatten
54
59
options = addresses . extract_options!
55
60
@options = options . dup
You can’t perform that action at this time.
0 commit comments