Version Description
- Fixed tabs not working in 2.0.6 and 2.0.7 due to WP.org SVN issue
Download this release
Release Info
Developer | tillkruess |
Plugin | Redis Object Cache |
Version | 2.0.8 |
Comparing to | |
See all releases |
Code changes from version 2.0.6 to 2.0.8
- dependencies/colinmollenhour/credis/.gitignore +4 -0
- dependencies/colinmollenhour/credis/composer.json +24 -0
- dependencies/colinmollenhour/credis/testenv/docker-compose.yml +32 -0
- dependencies/colinmollenhour/credis/tests/.gitignore +3 -0
- dependencies/predis/predis/composer.json +31 -0
- includes/object-cache.php +2 -2
- languages/redis-cache.pot +70 -39
- readme.txt +10 -78
- redis-cache.php +1 -1
dependencies/colinmollenhour/credis/.gitignore
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
.idea
|
2 |
+
vendor
|
3 |
+
phpunit.phar
|
4 |
+
phpunit_*.log
|
dependencies/colinmollenhour/credis/composer.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "colinmollenhour/credis",
|
3 |
+
"type": "library",
|
4 |
+
"description": "Credis is a lightweight interface to the Redis key-value store which wraps the phpredis library when available for better performance.",
|
5 |
+
"homepage": "https://github.com/colinmollenhour/credis",
|
6 |
+
"license": "MIT",
|
7 |
+
"authors": [
|
8 |
+
{
|
9 |
+
"name": "Colin Mollenhour",
|
10 |
+
"email": "colin@mollenhour.com"
|
11 |
+
}
|
12 |
+
],
|
13 |
+
"require": {
|
14 |
+
"php": ">=5.4.0"
|
15 |
+
},
|
16 |
+
"autoload": {
|
17 |
+
"classmap": [
|
18 |
+
"Client.php",
|
19 |
+
"Cluster.php",
|
20 |
+
"Sentinel.php",
|
21 |
+
"Module.php"
|
22 |
+
]
|
23 |
+
}
|
24 |
+
}
|
dependencies/colinmollenhour/credis/testenv/docker-compose.yml
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
version: '2'
|
2 |
+
services:
|
3 |
+
|
4 |
+
php-55:
|
5 |
+
build: env/php-5.5/
|
6 |
+
volumes:
|
7 |
+
- ../:/src/
|
8 |
+
|
9 |
+
php-56:
|
10 |
+
build: env/php-5.6/
|
11 |
+
volumes:
|
12 |
+
- ../:/src/
|
13 |
+
|
14 |
+
php-70:
|
15 |
+
build: env/php-7.0/
|
16 |
+
volumes:
|
17 |
+
- ../:/src/
|
18 |
+
|
19 |
+
php-71:
|
20 |
+
build: env/php-7.1/
|
21 |
+
volumes:
|
22 |
+
- ../:/src/
|
23 |
+
|
24 |
+
php-72:
|
25 |
+
build: env/php-7.2/
|
26 |
+
volumes:
|
27 |
+
- ../:/src/
|
28 |
+
|
29 |
+
php-73:
|
30 |
+
build: env/php-7.3/
|
31 |
+
volumes:
|
32 |
+
- ../:/src/
|
dependencies/colinmollenhour/credis/tests/.gitignore
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
*.pid
|
2 |
+
*.rdb
|
3 |
+
_reports/*
|
dependencies/predis/predis/composer.json
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "predis/predis",
|
3 |
+
"type": "library",
|
4 |
+
"description": "Flexible and feature-complete Redis client for PHP and HHVM",
|
5 |
+
"keywords": ["nosql", "redis", "predis"],
|
6 |
+
"homepage": "http://github.com/nrk/predis",
|
7 |
+
"license": "MIT",
|
8 |
+
"support": {
|
9 |
+
"issues": "https://github.com/nrk/predis/issues"
|
10 |
+
},
|
11 |
+
"authors": [
|
12 |
+
{
|
13 |
+
"name": "Daniele Alessandri",
|
14 |
+
"email": "suppakilla@gmail.com",
|
15 |
+
"homepage": "http://clorophilla.net"
|
16 |
+
}
|
17 |
+
],
|
18 |
+
"require": {
|
19 |
+
"php": ">=5.3.9"
|
20 |
+
},
|
21 |
+
"require-dev": {
|
22 |
+
"phpunit/phpunit": "~4.8"
|
23 |
+
},
|
24 |
+
"suggest": {
|
25 |
+
"ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol",
|
26 |
+
"ext-curl": "Allows access to Webdis when paired with phpiredis"
|
27 |
+
},
|
28 |
+
"autoload": {
|
29 |
+
"psr-4": {"Predis\\": "src/"}
|
30 |
+
}
|
31 |
+
}
|
includes/object-cache.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Redis Object Cache Drop-In
|
4 |
* Plugin URI: http://wordpress.org/plugins/redis-cache/
|
5 |
* Description: A persistent object cache backend powered by Redis. Supports Predis, PhpRedis, Credis, HHVM, replication, clustering and WP-CLI.
|
6 |
-
* Version: 2.0.
|
7 |
* Author: Till Krüss
|
8 |
* Author URI: https://wprediscache.com
|
9 |
* License: GPLv3
|
@@ -1379,7 +1379,7 @@ LUA;
|
|
1379 |
$start_time = microtime( true );
|
1380 |
|
1381 |
try {
|
1382 |
-
$results = array_combine( $
|
1383 |
} catch ( Exception $exception ) {
|
1384 |
$this->handle_exception( $exception );
|
1385 |
|
3 |
* Plugin Name: Redis Object Cache Drop-In
|
4 |
* Plugin URI: http://wordpress.org/plugins/redis-cache/
|
5 |
* Description: A persistent object cache backend powered by Redis. Supports Predis, PhpRedis, Credis, HHVM, replication, clustering and WP-CLI.
|
6 |
+
* Version: 2.0.8
|
7 |
* Author: Till Krüss
|
8 |
* Author URI: https://wprediscache.com
|
9 |
* License: GPLv3
|
1379 |
$start_time = microtime( true );
|
1380 |
|
1381 |
try {
|
1382 |
+
$results = array_combine( $remaining_keys, $this->redis->mget( $remaining_keys ) );
|
1383 |
} catch ( Exception $exception ) {
|
1384 |
$this->handle_exception( $exception );
|
1385 |
|
languages/redis-cache.pot
CHANGED
@@ -2,21 +2,21 @@
|
|
2 |
# This file is distributed under the GPLv3.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Redis Object Cache 2.0.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/redis-cache\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"POT-Creation-Date: 2020-07-
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.4.0\n"
|
15 |
"X-Domain: redis-cache\n"
|
16 |
|
17 |
#. Plugin Name of the plugin
|
18 |
-
#: includes/class-plugin.php:
|
19 |
-
#: includes/class-plugin.php:
|
20 |
#: includes/ui/settings.php:18
|
21 |
msgid "Redis Object Cache"
|
22 |
msgstr ""
|
@@ -37,156 +37,184 @@ msgstr ""
|
|
37 |
msgid "https://wprediscache.com"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: includes/class-plugin.php:
|
41 |
msgid "Redis"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: includes/class-plugin.php:
|
45 |
msgid "Flush Object Cache"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: includes/class-plugin.php:
|
49 |
msgid "Flush the Redis object cache"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: includes/class-plugin.php:
|
53 |
#: includes/ui/tabs/overview.php:22
|
54 |
msgid "Overview"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: includes/class-plugin.php:
|
58 |
msgid "Metrics"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: includes/class-plugin.php:
|
62 |
msgid "Diagnostics"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: includes/class-plugin.php:
|
66 |
msgid "Settings"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: includes/class-plugin.php:
|
70 |
#: includes/ui/tabs/metrics.php:17
|
71 |
#: includes/ui/widget.php:16
|
72 |
msgid "Time"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: includes/class-plugin.php:
|
76 |
#: includes/ui/tabs/metrics.php:22
|
77 |
#: includes/ui/widget.php:21
|
78 |
msgid "Bytes"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: includes/class-plugin.php:
|
82 |
#: includes/ui/tabs/metrics.php:27
|
83 |
#: includes/ui/widget.php:26
|
84 |
msgid "Ratio"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: includes/class-plugin.php:
|
88 |
#: includes/ui/tabs/metrics.php:32
|
89 |
#: includes/ui/widget.php:31
|
90 |
msgid "Calls"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: includes/class-plugin.php:
|
94 |
msgid "Not enough data collected, yet."
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: includes/class-plugin.php:
|
98 |
msgid "Enable object cache to collect data."
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: includes/class-plugin.php:
|
102 |
#: includes/class-qm-collector.php:48
|
103 |
msgid "Disabled"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: includes/class-plugin.php:
|
107 |
msgid "Connected"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: includes/class-plugin.php:
|
111 |
msgid "Not Connected"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: includes/class-plugin.php:
|
115 |
#: includes/ui/tabs/overview.php:248
|
116 |
msgid "Unknown"
|
117 |
msgstr ""
|
118 |
|
119 |
#. translators: %s = Action link to update the drop-in
|
120 |
-
#: includes/class-plugin.php:
|
121 |
msgid "The Redis object cache drop-in is outdated. Please <a href=\"%s\">update the drop-in</a>."
|
122 |
msgstr ""
|
123 |
|
124 |
#. translators: %s = Action link to update the drop-in
|
125 |
-
#: includes/class-plugin.php:
|
126 |
msgid "A foreign object cache drop-in was found. To use Redis for object caching, please <a href=\"%s\">enable the drop-in</a>."
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: includes/class-plugin.php:
|
130 |
msgid "Object cache flushed."
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: includes/class-plugin.php:
|
134 |
msgid "Object cache could not be flushed."
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: includes/class-plugin.php:
|
138 |
#: includes/cli/class-commands.php:74
|
139 |
msgid "Object cache enabled."
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: includes/class-plugin.php:
|
143 |
#: includes/cli/class-commands.php:76
|
144 |
msgid "Object cache could not be enabled."
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: includes/class-plugin.php:
|
148 |
#: includes/cli/class-commands.php:113
|
149 |
msgid "Object cache disabled."
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: includes/class-plugin.php:
|
153 |
#: includes/cli/class-commands.php:115
|
154 |
msgid "Object cache could not be disabled."
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: includes/class-plugin.php:
|
158 |
#: includes/cli/class-commands.php:147
|
159 |
msgid "Updated object cache drop-in and enabled Redis object cache."
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: includes/class-plugin.php:
|
163 |
#: includes/cli/class-commands.php:149
|
164 |
msgid "Object cache drop-in could not be updated."
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: includes/class-plugin.php:
|
168 |
msgid "Redis Cache Pro is out!"
|
169 |
msgstr ""
|
170 |
|
171 |
#. translators: %s = Link to the plugin setting screen
|
172 |
-
#: includes/class-plugin.php:
|
173 |
msgid "A <u>business class</u> object cache backend. Truly reliable, highly-optimized and fully customizable, with a <u>dedicated engineer</u> when you most need it. <a href=\"%s\">Learn more »</a>"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: includes/class-plugin.php:
|
177 |
msgid "Redis Cache Pro + WooCommerce = ❤️"
|
178 |
msgstr ""
|
179 |
|
180 |
#. translators: %s = Link to the plugin's settings screen
|
181 |
-
#: includes/class-plugin.php:
|
182 |
msgid "Redis Cache Pro is a <u>business class</u> object cache that’s highly-optimized for WooCommerce to provide true reliability, peace of mind and faster load times for your store. <a style=\"color: #bb77ae;\" href=\"%s\">Learn more »</a>"
|
183 |
msgstr ""
|
184 |
|
185 |
#. translators: %1$d = number of objects. %2$s = human-readable size of cache. %3$s = name of the used client.
|
186 |
-
#: includes/class-plugin.php:
|
187 |
msgid "Retrieved %1$d objects (%2$s) from Redis using %3$s."
|
188 |
msgstr ""
|
189 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
#: includes/class-qm-collector.php:19
|
191 |
msgid "Object Cache"
|
192 |
msgstr ""
|
@@ -288,14 +316,17 @@ msgid "The current version of the PhpRedis extension (%s) is too old. PhpRedis 3
|
|
288 |
msgstr ""
|
289 |
|
290 |
#: includes/ui/settings.php:140
|
291 |
-
|
292 |
-
msgid "Support"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: includes/ui/settings.php:
|
296 |
msgid "Documentation"
|
297 |
msgstr ""
|
298 |
|
|
|
|
|
|
|
|
|
299 |
#: includes/ui/tabs/overview.php:29
|
300 |
msgid "Client:"
|
301 |
msgstr ""
|
2 |
# This file is distributed under the GPLv3.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Redis Object Cache 2.0.7\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/redis-cache\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2020-07-28T14:33:53+00:00\n"
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.4.0\n"
|
15 |
"X-Domain: redis-cache\n"
|
16 |
|
17 |
#. Plugin Name of the plugin
|
18 |
+
#: includes/class-plugin.php:106
|
19 |
+
#: includes/class-plugin.php:177
|
20 |
#: includes/ui/settings.php:18
|
21 |
msgid "Redis Object Cache"
|
22 |
msgstr ""
|
37 |
msgid "https://wprediscache.com"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: includes/class-plugin.php:107
|
41 |
msgid "Redis"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: includes/class-plugin.php:129
|
45 |
msgid "Flush Object Cache"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: includes/class-plugin.php:132
|
49 |
msgid "Flush the Redis object cache"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: includes/class-plugin.php:158
|
53 |
#: includes/ui/tabs/overview.php:22
|
54 |
msgid "Overview"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: includes/class-plugin.php:161
|
58 |
msgid "Metrics"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: includes/class-plugin.php:164
|
62 |
msgid "Diagnostics"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: includes/class-plugin.php:189
|
66 |
msgid "Settings"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: includes/class-plugin.php:249
|
70 |
#: includes/ui/tabs/metrics.php:17
|
71 |
#: includes/ui/widget.php:16
|
72 |
msgid "Time"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: includes/class-plugin.php:250
|
76 |
#: includes/ui/tabs/metrics.php:22
|
77 |
#: includes/ui/widget.php:21
|
78 |
msgid "Bytes"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: includes/class-plugin.php:251
|
82 |
#: includes/ui/tabs/metrics.php:27
|
83 |
#: includes/ui/widget.php:26
|
84 |
msgid "Ratio"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: includes/class-plugin.php:252
|
88 |
#: includes/ui/tabs/metrics.php:32
|
89 |
#: includes/ui/widget.php:31
|
90 |
msgid "Calls"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: includes/class-plugin.php:253
|
94 |
msgid "Not enough data collected, yet."
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: includes/class-plugin.php:254
|
98 |
msgid "Enable object cache to collect data."
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: includes/class-plugin.php:357
|
102 |
#: includes/class-qm-collector.php:48
|
103 |
msgid "Disabled"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: includes/class-plugin.php:362
|
107 |
msgid "Connected"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: includes/class-plugin.php:366
|
111 |
msgid "Not Connected"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: includes/class-plugin.php:370
|
115 |
#: includes/ui/tabs/overview.php:248
|
116 |
msgid "Unknown"
|
117 |
msgstr ""
|
118 |
|
119 |
#. translators: %s = Action link to update the drop-in
|
120 |
+
#: includes/class-plugin.php:449
|
121 |
msgid "The Redis object cache drop-in is outdated. Please <a href=\"%s\">update the drop-in</a>."
|
122 |
msgstr ""
|
123 |
|
124 |
#. translators: %s = Action link to update the drop-in
|
125 |
+
#: includes/class-plugin.php:453
|
126 |
msgid "A foreign object cache drop-in was found. To use Redis for object caching, please <a href=\"%s\">enable the drop-in</a>."
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: includes/class-plugin.php:483
|
130 |
msgid "Object cache flushed."
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: includes/class-plugin.php:489
|
134 |
msgid "Object cache could not be flushed."
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: includes/class-plugin.php:511
|
138 |
#: includes/cli/class-commands.php:74
|
139 |
msgid "Object cache enabled."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: includes/class-plugin.php:517
|
143 |
#: includes/cli/class-commands.php:76
|
144 |
msgid "Object cache could not be enabled."
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: includes/class-plugin.php:530
|
148 |
#: includes/cli/class-commands.php:113
|
149 |
msgid "Object cache disabled."
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: includes/class-plugin.php:535
|
153 |
#: includes/cli/class-commands.php:115
|
154 |
msgid "Object cache could not be disabled."
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: includes/class-plugin.php:554
|
158 |
#: includes/cli/class-commands.php:147
|
159 |
msgid "Updated object cache drop-in and enabled Redis object cache."
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: includes/class-plugin.php:560
|
163 |
#: includes/cli/class-commands.php:149
|
164 |
msgid "Object cache drop-in could not be updated."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: includes/class-plugin.php:613
|
168 |
msgid "Redis Cache Pro is out!"
|
169 |
msgstr ""
|
170 |
|
171 |
#. translators: %s = Link to the plugin setting screen
|
172 |
+
#: includes/class-plugin.php:616
|
173 |
msgid "A <u>business class</u> object cache backend. Truly reliable, highly-optimized and fully customizable, with a <u>dedicated engineer</u> when you most need it. <a href=\"%s\">Learn more »</a>"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: includes/class-plugin.php:647
|
177 |
msgid "Redis Cache Pro + WooCommerce = ❤️"
|
178 |
msgstr ""
|
179 |
|
180 |
#. translators: %s = Link to the plugin's settings screen
|
181 |
+
#: includes/class-plugin.php:650
|
182 |
msgid "Redis Cache Pro is a <u>business class</u> object cache that’s highly-optimized for WooCommerce to provide true reliability, peace of mind and faster load times for your store. <a style=\"color: #bb77ae;\" href=\"%s\">Learn more »</a>"
|
183 |
msgstr ""
|
184 |
|
185 |
#. translators: %1$d = number of objects. %2$s = human-readable size of cache. %3$s = name of the used client.
|
186 |
+
#: includes/class-plugin.php:768
|
187 |
msgid "Retrieved %1$d objects (%2$s) from Redis using %3$s."
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: includes/class-plugin.php:808
|
191 |
+
msgid "Could not initialize filesystem."
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/class-plugin.php:815
|
195 |
+
msgid "Object cache file doesn’t exist."
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/class-plugin.php:820
|
199 |
+
msgid "Test file exists, but couldn’t be deleted."
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/class-plugin.php:825
|
203 |
+
msgid "Failed to copy test file."
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/class-plugin.php:829
|
207 |
+
msgid "Copied test file doesn’t exist."
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/class-plugin.php:835
|
211 |
+
msgid "Couldn’t verify test file contents."
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/class-plugin.php:839
|
215 |
+
msgid "Copied test file couldn’t be deleted."
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
#: includes/class-qm-collector.php:19
|
219 |
msgid "Object Cache"
|
220 |
msgstr ""
|
316 |
msgstr ""
|
317 |
|
318 |
#: includes/ui/settings.php:140
|
319 |
+
msgid "Support & Updates"
|
|
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: includes/ui/settings.php:154
|
323 |
msgid "Documentation"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: includes/ui/settings.php:160
|
327 |
+
msgid "Support"
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
#: includes/ui/tabs/overview.php:29
|
331 |
msgid "Client:"
|
332 |
msgstr ""
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: redis, predis, phpredis, credis, hhvm, pecl, caching, cache, object cache,
|
|
5 |
Requires at least: 3.3
|
6 |
Tested up to: 5.5
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 2.0.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
@@ -83,6 +83,14 @@ To see a list of all available WP-CLI commands, please see the [WP CLI commands
|
|
83 |
|
84 |
== Changelog ==
|
85 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
= 2.0.6 =
|
87 |
|
88 |
- Added experimental filesystem test to diagnostics
|
@@ -418,82 +426,6 @@ Since Predis isn't maintained any longer, it's highly recommended to switch over
|
|
418 |
|
419 |
== Upgrade Notice ==
|
420 |
|
421 |
-
= 2.0.
|
422 |
|
423 |
Version 2.0 is a significant rewrite of the plugin. Please read the v2.0.0 release notes.
|
424 |
-
|
425 |
-
= 1.4.2 =
|
426 |
-
|
427 |
-
This update renames the `redis_object_cache_get` filter to avoid conflicts. Update your code if necessary.
|
428 |
-
|
429 |
-
= 1.4.0 =
|
430 |
-
|
431 |
-
This update adds support for igbinary and `wp_suspend_cache_addition()`.
|
432 |
-
|
433 |
-
= 1.3.9 =
|
434 |
-
|
435 |
-
This update contains fixes for sharding.
|
436 |
-
|
437 |
-
= 1.3.8 =
|
438 |
-
|
439 |
-
This update contains a critical fix for Predis.
|
440 |
-
|
441 |
-
= 1.3.7 =
|
442 |
-
|
443 |
-
This update fixes an issue with Predis in some environments.
|
444 |
-
|
445 |
-
= 1.3.6 =
|
446 |
-
|
447 |
-
This update contains various improvements.
|
448 |
-
|
449 |
-
= 1.3.5 =
|
450 |
-
|
451 |
-
This update contains various changes, including performance improvements and better Batcache compatibility.
|
452 |
-
|
453 |
-
= 1.3.4 =
|
454 |
-
|
455 |
-
This update contains several improvements, including WP CLI and WordPress 4.6 support.
|
456 |
-
|
457 |
-
= 1.3.3 =
|
458 |
-
|
459 |
-
This update contains several improvements.
|
460 |
-
|
461 |
-
= 1.3.2 =
|
462 |
-
|
463 |
-
This update includes a critical fix for PhpRedis.
|
464 |
-
|
465 |
-
= 1.3.1 =
|
466 |
-
|
467 |
-
This update includes a critical connection issue fix.
|
468 |
-
|
469 |
-
= 1.3 =
|
470 |
-
|
471 |
-
This update includes a new admin interface and support for clustering and replication with Predis.
|
472 |
-
|
473 |
-
= 1.2.3 =
|
474 |
-
|
475 |
-
This updated includes several UI improvements.
|
476 |
-
|
477 |
-
= 1.2.2 =
|
478 |
-
|
479 |
-
This updated includes several bug fixes and improvements.
|
480 |
-
|
481 |
-
= 1.2.1 =
|
482 |
-
|
483 |
-
This update includes several improvements and compatibility fixes.
|
484 |
-
|
485 |
-
= 1.1.1 =
|
486 |
-
|
487 |
-
This update fixes critical bugs with the HHVM extension
|
488 |
-
|
489 |
-
= 1.1 =
|
490 |
-
|
491 |
-
This update includes bug fixes and adds supports for HHVM/PECL Redis extensions.
|
492 |
-
|
493 |
-
= 1.0.2 =
|
494 |
-
|
495 |
-
This update includes significant speed improvements and support for UNIX domain sockets.
|
496 |
-
|
497 |
-
= 1.0.1 =
|
498 |
-
|
499 |
-
This update includes several security, user interface and general code improvements.
|
5 |
Requires at least: 3.3
|
6 |
Tested up to: 5.5
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 2.0.8
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
83 |
|
84 |
== Changelog ==
|
85 |
|
86 |
+
= 2.0.8 =
|
87 |
+
|
88 |
+
- Fixed tabs not working in 2.0.6 and 2.0.7 due to WP.org SVN issue
|
89 |
+
|
90 |
+
= 2.0.7 =
|
91 |
+
|
92 |
+
- Fixed issue with `wp_cache_get_multiple()`
|
93 |
+
|
94 |
= 2.0.6 =
|
95 |
|
96 |
- Added experimental filesystem test to diagnostics
|
426 |
|
427 |
== Upgrade Notice ==
|
428 |
|
429 |
+
= 2.0.8 =
|
430 |
|
431 |
Version 2.0 is a significant rewrite of the plugin. Please read the v2.0.0 release notes.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
redis-cache.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Redis Object Cache
|
4 |
* Plugin URI: https://wordpress.org/plugins/redis-cache/
|
5 |
* Description: A persistent object cache backend powered by Redis. Supports Predis, PhpRedis, Credis, HHVM, replication, clustering and WP-CLI.
|
6 |
-
* Version: 2.0.
|
7 |
* Text Domain: redis-cache
|
8 |
* Domain Path: /languages
|
9 |
* Network: true
|
3 |
* Plugin Name: Redis Object Cache
|
4 |
* Plugin URI: https://wordpress.org/plugins/redis-cache/
|
5 |
* Description: A persistent object cache backend powered by Redis. Supports Predis, PhpRedis, Credis, HHVM, replication, clustering and WP-CLI.
|
6 |
+
* Version: 2.0.8
|
7 |
* Text Domain: redis-cache
|
8 |
* Domain Path: /languages
|
9 |
* Network: true
|