]> git.wh0rd.org - tt-rss.git/commitdiff
ENABLE_UPDATE_SCHEDULER entry
authorAndrew Dolgov <fox@bah.spb.su>
Sat, 11 Feb 2006 13:53:48 +0000 (14:53 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Sat, 11 Feb 2006 13:53:48 +0000 (14:53 +0100)
config.php-dist

index 7a92c742314de65fb55fd8746d3a7b863fee9509..7028ee01c889b0f05188cbf54f1bb287e458db94 100644 (file)
        // directory or it won't be able to find includes. E.g.
        //
        // */30 * * * * cd $TTRSS_DIRECTORY && ./update_feeds.php >/dev/null 2>&1
+
+       // Another alternative approach is to run update_daemon.php in the background
+       // on the server, which allows user-scheduled updates and continous
+       // feed updating in the background. This is the recommended way at the moment.
        
        define('SMART_RPC_COUNTERS', false);
        // If enabled, stores feed counter information on the server side and sends
        // It is also recommended to set FEEDS_FRAME_REFRESH to a lower value if using
        // this option.
 
-       define('DISABLE_SESSIONS', false);
-       // Disables sessions (this is ONLY useful for commandline daemons using
-       // tt-rss code, DON'T enable this option EVER)
-
+       define('ENABLE_UPDATE_SCHEDULER', false);
+       // This enables different mechanism for user-triggered updates designed
+       // for update daemon running in background on the server.
+       
+       // This option _REQUIRES_ DAEMON_REFRESH_ONLY to be enabled and it is
+       // suggested to set FEEDS_FRAME_REFRESH to a small value (like 15-30 seconds).
+       
        // vim:ft=php
 ?>