Commit 4e7a2b52 authored by Sebastian Kummer's avatar Sebastian Kummer

ZP-942 Document shared memory as default IPC provider.

Released under the Affero GNU General Public License (AGPL) version 3.
parent 3c61d251
...@@ -112,10 +112,11 @@ There are two provider available ...@@ -112,10 +112,11 @@ There are two provider available
- Shared memory provider (requires additional packages - same used in Z-Push 2.2.x) - Shared memory provider (requires additional packages - same used in Z-Push 2.2.x)
- Memcache provider (requires php-memcached and a memcache server installed and configured) - Memcache provider (requires php-memcached and a memcache server installed and configured)
The memcache provider is the preferred IPC provider, and as in the src distribution memcache and shared memory The shared memory provider is the preferred IPC provider. If the IPC_Provider is not configured,
are available, the memcache provider has preference. the code will try to use shared memory (if available), the same as in Z-Push 2.2.x.
To use shared memory (as in Z-Push 2.2.x), set the IPC_PROVIDER parameter in the config to:
define('IPC_PROVIDER', 'IpcSharedMemoryProvider'); To force the usage of the memcached provider, set the IPC_PROVIDER parameter in the config to:
define('IPC_PROVIDER', 'IpcMemcachedProvider');
4. Webserver configuration 4. Webserver configuration
You must configure Apache to redirect the URL You must configure Apache to redirect the URL
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment