Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document :mem_cache_store $MEMCACHE_SERVERS incompatibility #764

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions 3.0-Upgrade.md
Expand Up @@ -5,6 +5,8 @@ This major version update contains several backwards incompatible changes.
* **:dalli_store** has been removed. Users should migrate to the
official Rails **:mem_cache_store**, documented in the [caching
guide](https://guides.rubyonrails.org/caching_with_rails.html#activesupport-cache-memcachestore).
Note that `:mem_cache_store` does _not_ check for `ENV['MEMCACHE_SERVERS']`
prior to Rails 6.1, so you may need to explicitly provide it.
* Attempting to store a larger value than allowed by memcached used to
print a warning and truncate the value. This now raises an error to
prevent silent data corruption.
Expand Down
2 changes: 2 additions & 0 deletions History.md
Expand Up @@ -6,6 +6,8 @@ Dalli Changelog
- DEPRECATION: :dalli_store will be removed in Dalli 3.0.
Use Rails' official :mem_cache_store instead.
https://guides.rubyonrails.org/caching_with_rails.html
Note that `:mem_cache_store` does _not_ check for `ENV['MEMCACHE_SERVERS']`
prior to Rails 6.1, so you may need to explicitly provide it.
- Add new `digest_class` option to Dalli::Client [#724]
- Don't treat NameError as a network error [#728]
- Handle nested comma separated server strings (sambostock)
Expand Down