Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-08-13Links: switch from GitHub to GitLab Postgres mirror repoNikolay Samokhvalov
GitLab.com also has an up-to-date Postgres mirror.
2019-07-09Remove extra whitespaces in docsMarcel Amirault
Removes all the extra whitespaces at end of lines, inside tags, and removes extra newlines
2019-06-07Add section to dev docs on accessing chatopsLucas Charles
closes 62127
2019-06-03Add activerecord-explain-analyze gemToon Claes
This gem allows you to get the `EXPLAIN ANALYZE` query plan, directly from the Rails console. The gem is installed with `require: false`, but if it was loaded on launch, this would be it's memory load: ``` TOP: 145.3086 MiB rails/all: 22.4844 MiB ... activerecord-explain-analyze: 2.9648 MiB active_record/connection_adapters/postgresql_adapter: 2.9648 MiB pg: 2.9648 MiB pg_ext: 2.9648 MiB ... ```
2019-06-03Add some more database docsToon Claes
Add a few useful links for those who want to learn more about databases and database performance.
2019-01-08Make unordered lists conform to styleguideEvan Read
- Also makes other minor Markdown fixes that were near the main fixes.
2018-08-17Add documentation about reading query plansYorick Peterse
This adds a database guide on how to read the output of "EXPLAIN" and "EXPLAIN ANALYZE", and how to use this output to understand a query's performance and optimise it.