You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
object-cache.php might be used in places filters
haven't been loaded yet. Let's make the behavior explicit
and strip based on the presence of `key_salt`.
Use memcached and the PECL memcache extension to provide a backing store for the WordPress object cache.
@@ -21,7 +21,7 @@ Memcached Object Cache provides a persistent backend for the WordPress object ca
21
21
1. Add the `WP_CACHE_KEY_SALT` constant to the `wp-config.php`:
22
22
23
23
```php
24
-
define('WP_CACHE_KEY_SALT', '...long random string...');
24
+
define('WP_CACHE_KEY_SALT', '...long random string...');
25
25
```
26
26
27
27
This helps prevent cache pollution when multiplte WordPress installs are using the same Memcached server. The value must be unique for each WordPress install.
@@ -83,6 +83,9 @@ widget
83
83
84
84
== Changelog ==
85
85
86
+
= 3.2.2 =
87
+
* Remove filter, and base key stripping on presence of `key_salt`
88
+
86
89
= 3.2.1 =
87
90
* Fix bug allowing **slow-ops** entries to have the same key, so toggling doesn't work
0 commit comments