Files
@ 15e507047bae
Branch filter:
Location: kallithea/docs/usage/statistics.rst - annotation
15e507047bae
1.2 KiB
text/prs.fallenstein.rst
Incorporate CSS from select2-bootstrap-css & its license information.
RhodeCode 2.2.5 included a modified version of this upstream work. We
include herein the upstream version as downloaded and incorporated using the
following commands:
(cd /tmp; \
git clone https://github.com/t0m/select2-bootstrap-css
)
cp /tmp/select2-bootstrap-css/select2-bootstrap.css rhodecode/public/js/select2/
The content used to be appended to select2.css but we now keep it in a separate
file select2-bootstrap.css . This file could be included in root.html like
select2.css but we do currently not want to use bootstrap.
The license info was incorporated from /tmp/select2-bootstrap-css/LICENSE
into our LICENSE.md file.
RhodeCode 2.2.5 included a modified version of this upstream work. We
include herein the upstream version as downloaded and incorporated using the
following commands:
(cd /tmp; \
git clone https://github.com/t0m/select2-bootstrap-css
)
cp /tmp/select2-bootstrap-css/select2-bootstrap.css rhodecode/public/js/select2/
The content used to be appended to select2.css but we now keep it in a separate
file select2-bootstrap.css . This file could be included in root.html like
select2.css but we do currently not want to use bootstrap.
The license info was incorporated from /tmp/select2-bootstrap-css/LICENSE
into our LICENSE.md file.
bbd499c7b55e bbd499c7b55e 17c9393e9645 bbd499c7b55e bbd499c7b55e bbd499c7b55e 8af52e1224ff 8af52e1224ff 8af52e1224ff 8af52e1224ff bbd499c7b55e bbd499c7b55e 9472a0150bf0 bbd499c7b55e 8af52e1224ff 8af52e1224ff 8af52e1224ff 8af52e1224ff 8af52e1224ff 8af52e1224ff bbd499c7b55e bbd499c7b55e bbd499c7b55e 9472a0150bf0 bbd499c7b55e 8af52e1224ff 8af52e1224ff 8af52e1224ff 8af52e1224ff bbd499c7b55e bbd499c7b55e 8af52e1224ff 8af52e1224ff | .. _statistics:
==========
Statistics
==========
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:
With Celery disabled
--------------------
- 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.
With Celery enabled
-------------------
- 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.
.. note::
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.
|