##// END OF EJS Templates
- Further corrections.
- Further corrections.

File last commit:

r1091:e67786cb default
r1091:e67786cb default
Show More
statistics.rst
32 lines | 1.2 KiB | text/x-rst | RstLexer
docs updates
r811 .. _statistics:
Statistics
==========
jfh
- Further corrections.
r1091 The RhodeCode statistics system makes heavy demands of the server resources, so
in order to keep a balance between usability and performance, the statistics are
cached inside db and are gathered incrementally, this is how RhodeCode does
this:
docs updates
r811
With Celery disabled
++++++++++++++++++++
jfh
- Further corrections.
r1091 - On each first visit to the summary page a set of 250 commits are parsed and
updates statistics cache.
- This happens on each single visit to the statistics page until all commits are
fetched. Statistics are kept cached until additional commits are added to the
repository. In such a case RhodeCode will only fetch the new commits when
updating it's cache.
docs updates
r811
With Celery enabled
+++++++++++++++++++
jfh
- Further corrections.
r1091 - On the first visit to the summary page RhodeCode will create tasks that will
execute on celery workers. This task will gather all of the stats until all
commits are parsed, each task will parse 250 commits, and run the next task to
parse next 250 commits, until all of the commits are parsed.
docs updates
r811
.. note::
jfh
- Further corrections.
r1091 At any time you can disable statistics on each repository via the repository
edit form in the admin panel. To do this just uncheck the statistics checkbox.