Commit 281e0bfb authored by Sebastian Kummer's avatar Sebastian Kummer

ZP-943 Make shared memory the default IPC provider.

Released under the Affero GNU General Public License (AGPL) version 3.
parent df6fc45e
......@@ -89,7 +89,7 @@
* When another implementation should be used, the class can be set here explicitly.
* If empty Z-Push will try to use available providers.
*/
define('IPC_PROVIDER', 'IpcSharedMemoryProvider');
define('IPC_PROVIDER', '');
/**********************************************************************************
* Logging settings
......
......@@ -48,7 +48,7 @@ abstract class InterProcessData {
// Defines which IPC provider to load, first has preference
// if IPC_PROVIDER in the main config is set, that class will be loaded
static private $providerLoadOrder = array('IpcMemcachedProvider', 'IpcSharedMemoryProvider');
static private $providerLoadOrder = array('IpcSharedMemoryProvider', 'IpcMemcachedProvider');
static protected $devid;
static protected $pid;
static protected $user;
......
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