summaryrefslogtreecommitdiffstats
path: root/README.rst
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-04-23 12:25:27 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-04-23 12:25:27 +0200
commit61fb7b93a07917b21be6ada1003d07c8ba221fbe (patch)
treefc8037a54921654d3a2c3d75334e91acaa0889d5 /README.rst
parent0a8945439e4867de68f211b0cc94f186f2880420 (diff)
added configuration info
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst29
1 files changed, 28 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index fd82222ff..e631fa553 100644
--- a/README.rst
+++ b/README.rst
@@ -81,4 +81,31 @@ Keyboard shortcuts
Performance Notices
-------------------
* It is currently discouraged to use it in large hosted installations since there is no way to restrict the backgroundjob to require a pause of X minutes. This `will be addressed <https://github.com/owncloud/news/issues/103>`_ in the `next ownCloud release <https://github.com/owncloud/core/pull/3051>`_.
-* Use MySQL or PostgreSQL for better database performance \ No newline at end of file
+* Use MySQL or PostgreSQL for better database performance
+
+Configuration
+~~~~~~~~~~~~~
+This will be in a seperate config file in the future but for now you can tweak the folowing things.
+
+:file:`dependencyinjection/dicontainer.php`
+
+* To cache feeds longer increase::
+
+ $this['simplePieCacheDuration'] = 1000; // seconds
+
+* To let people have more read items before there are purged increase::
+
+ $this['autoPurgeCount'] = 200;
+
+:file:`js/app/app.coffee`
+
+All changes in the coffee file have to be compiled by using::
+
+ make
+
+in the **js/** directory
+
+* To increase the interval when the app fetches new entries from database(!, not the webpage, thats set by the backgroundjob interval) change::
+
+ feedUpdateInterval: 1000*60*3 # miliseconds
+