From: Evan Prodromou Date: Thu, 24 Jul 2008 17:12:13 +0000 (-0400) Subject: use a random mirror X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=fdc7950e3386208996b66aa87c7f291b499544fb;p=quix0rs-gnu-social.git use a random mirror darcs-hash:20080724171213-84dde-4668d0e57ce1766da7df22a5372aa94466b2fae5.gz --- diff --git a/index.php b/index.php index 21d5ed2753..fad6266466 100644 --- a/index.php +++ b/index.php @@ -34,6 +34,16 @@ if (file_exists($actionfile)) { require_once($actionfile); $action_class = ucfirst($action)."Action"; $action_obj = new $action_class(); + if ($config['db']['mirror'] && $action_obj->is_readonly()) { + if (is_array($config['db']['mirror'])) { + # "load balancing", ha ha + $k = array_rand($config['db']['mirror']); + $mirror = $config['db']['mirror'][$k]; + } else { + $mirror = $config['db']['mirror']; + } + $config['db']['database'] = $mirror; + } call_user_func(array($action_obj, 'handle'), $_REQUEST); } else { common_user_error(_('Unknown action'));