Version Description
- Fixed connection issue
Download this release
Release Info
Developer | tillkruess |
Plugin | Redis Object Cache |
Version | 1.3.1 |
Comparing to | |
See all releases |
Code changes from version 1.3 to 1.3.1
- includes/object-cache.php +2 -2
- readme.txt +9 -1
- redis-cache.php +1 -1
includes/object-cache.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Redis Object Cache
|
4 |
Plugin URI: http://wordpress.org/plugins/redis-cache/
|
5 |
Description: A persistent object cache backend powered by Redis. Supports HHVM's Redis extension, the PECL Redis Extension and the Predis library for PHP.
|
6 |
-
Version: 1.3
|
7 |
Author: Till Krüss
|
8 |
Author URI: http://till.kruss.me/
|
9 |
License: GPLv3
|
@@ -336,7 +336,7 @@ class WP_Object_Cache {
|
|
336 |
foreach ( [ 'scheme', 'host', 'port', 'path', 'password', 'database' ] as $setting ) {
|
337 |
$constant = sprintf( 'WP_REDIS_%s', strtoupper( $setting ) );
|
338 |
if ( defined( $constant ) ) {
|
339 |
-
$
|
340 |
}
|
341 |
}
|
342 |
|
3 |
Plugin Name: Redis Object Cache
|
4 |
Plugin URI: http://wordpress.org/plugins/redis-cache/
|
5 |
Description: A persistent object cache backend powered by Redis. Supports HHVM's Redis extension, the PECL Redis Extension and the Predis library for PHP.
|
6 |
+
Version: 1.3.1
|
7 |
Author: Till Krüss
|
8 |
Author URI: http://till.kruss.me/
|
9 |
License: GPLv3
|
336 |
foreach ( [ 'scheme', 'host', 'port', 'path', 'password', 'database' ] as $setting ) {
|
337 |
$constant = sprintf( 'WP_REDIS_%s', strtoupper( $setting ) );
|
338 |
if ( defined( $constant ) ) {
|
339 |
+
$parameters[ $setting ] = constant( $constant );
|
340 |
}
|
341 |
}
|
342 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.me/tillkruss
|
|
4 |
Tags: redis, predis, hhvm, pecl, caching, cache, object cache, wp object cache, server, performance, optimize, speed, load, replication, clustering
|
5 |
Requires at least: 3.3
|
6 |
Tested up to: 4.5
|
7 |
-
Stable tag: 1.3
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -109,6 +109,10 @@ __Clustering via Client-side Sharding Example:__
|
|
109 |
|
110 |
== Changelog ==
|
111 |
|
|
|
|
|
|
|
|
|
112 |
= 1.3 =
|
113 |
|
114 |
* New admin interface
|
@@ -178,6 +182,10 @@ __Clustering via Client-side Sharding Example:__
|
|
178 |
|
179 |
== Upgrade Notice ==
|
180 |
|
|
|
|
|
|
|
|
|
181 |
= 1.3 =
|
182 |
|
183 |
This update includes a new admin interface and support for clustering and replication with Predis.
|
4 |
Tags: redis, predis, hhvm, pecl, caching, cache, object cache, wp object cache, server, performance, optimize, speed, load, replication, clustering
|
5 |
Requires at least: 3.3
|
6 |
Tested up to: 4.5
|
7 |
+
Stable tag: 1.3.1
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
109 |
|
110 |
== Changelog ==
|
111 |
|
112 |
+
= 1.3.1 =
|
113 |
+
|
114 |
+
* Fixed connection issue
|
115 |
+
|
116 |
= 1.3 =
|
117 |
|
118 |
* New admin interface
|
182 |
|
183 |
== Upgrade Notice ==
|
184 |
|
185 |
+
= 1.3.1 =
|
186 |
+
|
187 |
+
This update includes a critical connection issue fix.
|
188 |
+
|
189 |
= 1.3 =
|
190 |
|
191 |
This update includes a new admin interface and support for clustering and replication with Predis.
|
redis-cache.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Redis Object Cache
|
4 |
Plugin URI: http://wordpress.org/plugins/redis-cache/
|
5 |
Description: A persistent object cache backend powered by Redis. Supports Predis, PhpRedis, HHVM, replication and clustering.
|
6 |
-
Version: 1.3
|
7 |
Text Domain: redis-cache
|
8 |
Domain Path: /languages
|
9 |
Author: Till Krüss
|
3 |
Plugin Name: Redis Object Cache
|
4 |
Plugin URI: http://wordpress.org/plugins/redis-cache/
|
5 |
Description: A persistent object cache backend powered by Redis. Supports Predis, PhpRedis, HHVM, replication and clustering.
|
6 |
+
Version: 1.3.1
|
7 |
Text Domain: redis-cache
|
8 |
Domain Path: /languages
|
9 |
Author: Till Krüss
|