1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 23:05:56 +00:00

No more "tunables.php" defaults dumped into "functions.php"

This commit is contained in:
Barak Korren
2013-04-02 21:29:10 +03:00
parent 58a2577d48
commit 9ef8798bec
2 changed files with 15 additions and 34 deletions

View File

@@ -40,16 +40,25 @@
*/
function define_default($name, $value) {
// Note: performence freaks should define everything in
// tunables.php in config.php becasue if will make defined()
// run much faster, see 'tris+php at tfconsulting dot com dot
// au' comment here:
// config.php becasue if will make defined() run much faster,
// see comment by 'tris+php at tfconsulting dot com dot au'
// here:
// http://www.php.net/manual/en/function.defined.php#89886
defined($name) or define($name, $value);
}
// Require tunables.php to define tunable constants (That may have
// already been denied in config.php)
require_once 'tunables.php';
///// Some defaults that you can override in config.php //////
define_default('FEED_FETCH_TIMEOUT', 45);
// How may seconds to wait for response when requesting feed from a site
define_default('FEED_FETCH_NO_CACHE_TIMEOUT', 15);
// How may seconds to wait for response when requesting feed from a
// site when that feed wasn't cached before
define_default('FILE_FETCH_TIMEOUT', 45);
// Default timeout when fetching files from remote sites
define_default('FILE_FETCH_CONNECT_TIMEOUT', 15);
// How many seconds to wait for initial response from website when
// fetching files from remote sites
if (DB_TYPE == "pgsql") {
define('SUBSTRING_FOR_DATE', 'SUBSTRING_FOR_DATE');