aboutsummaryrefslogtreecommitdiffstats
path: root/mod/admin.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-04-27 23:17:40 -0700
committerfriendica <info@friendica.com>2012-04-27 23:17:40 -0700
commitf163aed66d2aec038131131c68110043de36137a (patch)
tree00b05d716ba98aac53901b47f710b5438ec7ac32 /mod/admin.php
parent3bb06cc3e4fa808df3a4b9fbe85d30c7390c4955 (diff)
downloadvolse-hubzilla-f163aed66d2aec038131131c68110043de36137a.tar.gz
volse-hubzilla-f163aed66d2aec038131131c68110043de36137a.tar.bz2
volse-hubzilla-f163aed66d2aec038131131c68110043de36137a.zip
break up poller into separate processes
Diffstat (limited to 'mod/admin.php')
-rw-r--r--mod/admin.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/mod/admin.php b/mod/admin.php
index cdc45c8e3..3b6d186d5 100644
--- a/mod/admin.php
+++ b/mod/admin.php
@@ -235,6 +235,7 @@ function admin_page_site_post(&$a){
$proxyuser = ((x($_POST,'proxyuser')) ? notags(trim($_POST['proxyuser'])) : '');
$proxy = ((x($_POST,'proxy')) ? notags(trim($_POST['proxy'])) : '');
$timeout = ((x($_POST,'timeout')) ? intval(trim($_POST['timeout'])) : 60);
+ $delivery_interval = ((x($_POST,'delivery_interval'))? intval(trim($_POST['delivery_interval'])) : 0);
$dfrn_only = ((x($_POST,'dfrn_only')) ? True : False);
$ostatus_disabled = !((x($_POST,'ostatus_disabled')) ? True : False);
$diaspora_enabled = ((x($_POST,'diaspora_enabled')) ? True : False);
@@ -281,7 +282,7 @@ function admin_page_site_post(&$a){
}
}
set_config('system','ssl_policy',$ssl_policy);
-
+ set_config('system','delivery_interval',$delivery_interval);
set_config('config','sitename',$sitename);
if ($banner==""){
// don't know why, but del_config doesn't work...
@@ -425,6 +426,7 @@ function admin_page_site(&$a) {
'$proxyuser' => array('proxyuser', t("Proxy user"), get_config('system','proxyuser'), ""),
'$proxy' => array('proxy', t("Proxy URL"), get_config('system','proxy'), ""),
'$timeout' => array('timeout', t("Network timeout"), (x(get_config('system','curl_timeout'))?get_config('system','curl_timeout'):60), t("Value is in seconds. Set to 0 for unlimited (not recommended).")),
+ '$delivery_interval' => array('delivery_interval', t("Delivery interval"), (x(get_config('system','delivery_interval'))?get_config('system','delivery_interval'):2), t("Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers.")),
'$form_security_token' => get_form_security_token("admin_site"),