-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathREADME.txt
311 lines (242 loc) · 12 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
## IMPORTANT NOTE ##
This file contains installation instructions for the 8.x-1.x version of the
Drupal Memcache module. Configuration differs between 8.x and 7.x versions
of the module, so be sure to follow the 7.x instructions if you are configuring
the 7.x-1.x version of this module!
## REQUIREMENTS ##
- PHP 5.5 or greater
- Availability of a memcached daemon: http://memcached.org/
- One of the two PECL memcache packages:
- http://pecl.php.net/package/memcache
- http://pecl.php.net/package/memcached
### How to choose between these 2 packages ? ###
http://pecl.php.net/package/memcache is recommended if you have deamon running on the same instance as your php server and that your php major version allows it.
http://pecl.php.net/package/memcached is recommended if your daemon is not on the same instance and if your php major version is 7.
For more detailed instructions on installing a memcached daemon or either of the
memcache PECL extensions, please see the documentation online at
https://www.drupal.org/node/1131458 which includes links to external
walk-throughs for various operating systems.
## INSTALLATION ##
These are the steps you need to take in order to use this software. Order
is important.
1. Make sure you have one of the PECL memcache packages installed.
2. Enable the memcache module.
You need to enable the module in Drupal before you can configure it to run
as the default backend. This is so Drupal knows where to find everything.
2. Edit settings.php to configure the servers, clusters and bins that memcache
is supposed to use. You do not need to set this if the only memcache backend
is localhost on port 11211. By default the main settings will be:
$settings['memcache']['servers'] = ['127.0.0.1:11211' => 'default'];
$settings['memcache']['bins'] = ['default' => 'default'];
$settings['memcache']['key_prefix'] = '';
7. Edit settings.php to make memcache the default cache class, for example:
$settings['cache']['default'] = 'cache.backend.memcache';
8. If you wish to arbitrarily send cache bins to memcache, then you can do the
following. E.g. for the cache_render bin:
$settings['cache']['bins']['render'] = 'cache.backend.memcache';
## ADVANCED CONFIGURATION ##
### Multiple memcache backends ###
$settings['memcache']['servers'] = [
'127.0.0.1:11211' => 'default', // Default host and port
'127.0.0.1:11212' => 'default', // Default host with port 11212
'127.0.0.2:11211' => 'default', // Default port, different IP
'server1.com:11211' => 'default', // Default port with hostname
'unix:///path/to/socket' => 'default', 'Unix socket'
];
### Multiple servers, bins and clusters ###
$settings['memcache'] = [
'servers' = [
'server1:port' => 'default',
'server2:port' => 'default',
'server3:port' => 'cluster1',
'serverN:port' => 'clusterN',
'unix:///path/to/socket' => 'clusterS',
],
'bins' => [
'default' => 'default',
'bin1' => 'cluster1',
'binN' => 'clusterN',
'binX' => 'cluster1',
'binS' => 'clusterS',
],
];
The bin/cluster/server model can be described as follows:
- Servers are memcached instances identified by host:port.
- Clusters are groups of servers that act as a memory pool. Each cluster can
contain one or more servers.
- Multiple bins can be assigned to a cluster.
- The default cluster is 'default'.
- If a bin can not be found it will map to 'default'.
### Stampede Protection ###
Memcache includes stampede protection for rebuilding expired and invalid cache
items. To enable stampede protection, add the following config in settings.php:
$settings['memcache']['stampede_protection'] = TRUE;
To avoid lock stampedes, it is important that you enable the memcache lock
implementation when enabling stampede protection -- enabling stampede protection
without enabling the Memcache lock implementation can cause worse performance.
Only change the following values if you're sure you know what you're doing,
which requires reading the memcachie.inc code.
The value passed to Drupal\Core\Lock\LockBackendInterface::wait(), defaults to 5:
$settings['memcache']['stampede_wait_time'] = 5;
The maximum number of calls to Drupal\Core\Lock\LockBackendInterface::wait() due
to stampede protection during a single request, defaults to 3:
$settings['memcache']['stampede_wait_limit'] = 3;
When adjusting these variables, be aware that:
- wait_time * wait_limit is designed to default to a number less than
standard web server timeouts (i.e. 15 seconds vs. apache's default of
30 seconds).
### Prefixing ###
If you want to have multiple Drupal installations share memcached instances,
you need to include a unique prefix for each Drupal installation in the memcache
config in settings.php:
$settings['memcache']['key_prefix'] = 'something_unique';
### Key Hash Algorithm
Note: if the length of your prefix + key + bin combine to be more than 250
characters, they will be automatically hashed. Memcache only supports key
lengths up to 250 bytes. You can optionally configure the hashing algorithm
used, however sha1 was selected as the default because it performs quickly with
minimal collisions.
$settings['memcache']['key_hash_algorithm'] = 'sha1';
Visit http://www.php.net/manual/en/function.hash-algos.php to learn more about
which hash algorithms are available.
### Memcache Distribution ###
To use this module with multiple memcached servers, it is important that you set
the hash strategy to consistent. This is controlled in the PHP extension, not the
Drupal module.
If using PECL memcache:
Edit /etc/php.d/memcache.ini (path may changed based on package/distribution) and
set the following:
memcache.hash_strategy=consistent
You need to reload apache httpd after making that change.
If using PECL memcached:
Memcached options can be controlled in settings.php. Consistent distribution is
the default in this case but could be set using:
$setting['memcache']['options'] = [
Memcached::OPT_DISTRIBUTION => Memcached::DISTRIBUTION_CONSISTENT,
];
## LOCKS ##
Memcache locks can be enabled through the services.yml file.
services:
# Replaces the default lock backend with a memcache implementation.
lock:
class: Drupal\Core\Lock\LockBackendInterface
factory: memcache.lock.factory:get
# Replaces the default persistent lock backend with a memcache implementation.
lock.persistent:
class: Drupal\Core\Lock\LockBackendInterface
factory: memcache.lock.factory:getPersistent
## Cache Container on bootstrap ##
By default Drupal starts the cache_container on the database, in order to override that you can use the following code on your settings.php file. Make sure that the $class_load->addPsr4 is poiting to the right location of memcache (on this case modules/contrib/memcache/src)
$memcache_exists = class_exists('Memcache', FALSE);
$memcached_exists = class_exists('Memcached', FALSE);
if ($memcache_exists || $memcached_exists) {
$class_loader->addPsr4('Drupal\\memcache\\', 'modules/contrib/memcache/src');
// Define custom bootstrap container definition to use Memcache for cache.container.
$settings['bootstrap_container_definition'] = [
'parameters' => [],
'services' => [
'database' => [
'class' => 'Drupal\Core\Database\Connection',
'factory' => 'Drupal\Core\Database\Database::getConnection',
'arguments' => ['default'],
],
'settings' => [
'class' => 'Drupal\Core\Site\Settings',
'factory' => 'Drupal\Core\Site\Settings::getInstance',
],
'memcache.config' => [
'class' => 'Drupal\memcache\DrupalMemcacheConfig',
'arguments' => ['@settings'],
],
'memcache.backend.cache.factory' => [
'class' => 'Drupal\memcache\DrupalMemcacheFactory',
'arguments' => ['@memcache.config']
],
'memcache.backend.cache.container' => [
'class' => 'Drupal\memcache\DrupalMemcacheFactory',
'factory' => ['@memcache.backend.cache.factory', 'get'],
'arguments' => ['container'],
],
'lock.container' => [
'class' => 'Drupal\memcache\Lock\MemcacheLockBackend',
'arguments' => ['container', '@memcache.backend.cache.container'],
],
'cache_tags_provider.container' => [
'class' => 'Drupal\Core\Cache\DatabaseCacheTagsChecksum',
'arguments' => ['@database'],
],
'cache.container' => [
'class' => 'Drupal\memcache\MemcacheBackend',
'arguments' => ['container', '@memcache.backend.cache.container', '@lock.container', '@memcache.config', '@cache_tags_provider.container'],
],
],
];
}
## TROUBLESHOOTING ##
PROBLEM:
Error:
Failed to set key: Failed to set key: cache_page-......
SOLUTION:
Upgrade your PECL library to PECL package (2.2.1) (or higher).
WARNING:
Zlib compression at the php.ini level and Memcache conflict.
See http://drupal.org/node/273824
## MEMCACHE ADMIN ##
A module offering a UI for memcache is included. It provides aggregated and
per-page statistics for memcache.
## OTHER NOTES ##
### Memcached PECL Extension Support ###
We also support the Memcached PECL extension. This extension backends
to libmemcached and allows you to use some of the newer advanced features in
memcached 1.4.
NOTE: It is important to realize that the memcache php.ini options do not impact
the memcached extension, this new extension doesn't read in options that way.
Instead, it takes options directly from Drupal. Because of this, you must
configure memcached in settings.php. Please look here for possible options:
https://secure.php.net/manual/en/memcached.constants.php
An example configuration block is below, this block also illustrates our
default options (selected through performance testing). These options will be
set unless overridden in settings.php.
$settings['memcache']['options'] = [
Memcached::OPT_COMPRESSION => FALSE,
Memcached::OPT_DISTRIBUTION => Memcached::DISTRIBUTION_CONSISTENT,
];
These are as follows:
* Turn off compression, as this takes more CPU cycles than it's worth for most
users
* Turn on consistent distribution, which allows you to add/remove servers
easily
Other options you could experiment with:
+ Memcached::OPT_BINARY_PROTOCOL => TRUE,
* This enables the Memcache binary protocol (only available in Memcached
1.4 and later). Note that some users have reported SLOWER performance
with this feature enabled. It should only be enabled on extremely high
traffic networks where memcache network traffic is a bottleneck.
Additional reading about the binary protocol:
https://raw.githubusercontent.com/memcached/old-wiki/master/MemcacheBinaryProtocol.wiki
Note: The information on the link above will eventually be ported to
the new wiki under https://github.com/memcached/memcached/wiki.
+ Memcached::OPT_TCP_NODELAY => TRUE,
* This enables the no-delay feature for connecting sockets; it's been
reported that this can speed up the Binary protocol (see above). This
tells the TCP stack to send packets immediately and without waiting for
a full payload, reducing per-packet network latency (disabling "Nagling").
It's possible to enable SASL authentication as documented here:
http://php.net/manual/en/memcached.setsaslauthdata.php
https://code.google.com/p/memcached/wiki/SASLHowto
SASL authentication requires a memcached server with SASL support (version 1.4.3
or greater built with --enable-sasl and started with the -S flag) and the PECL
memcached client version 2.0.0 or greater also built with SASL support. Once
these requirements are satisfied you can then enable SASL support in the Drupal
memcache module by enabling the binary protocol and setting
memcache_sasl_username and memcache_sasl_password in settings.php. For example:
$settings['memcache']['sasl'] = [
'username' => 'user',
'password' => 'password',
];
// When using SASL, Memcached extension needs to be used
// because Memcache extension doesn't support it.
$settings['memcache']['extension'] = 'Memcached';
$settings['memcache']['options'] = [
\Memcached::OPT_BINARY_PROTOCOL => TRUE,
];