Add some more database docs

Add a few useful links for those who want to learn more about
databases and database performance.
This commit is contained in:
Toon Claes 2019-05-27 15:15:05 +02:00
parent 6cb750a2bb
commit 8615250930
1 changed files with 9 additions and 2 deletions

View File

@ -80,8 +80,9 @@ Planning time: 2.861 ms
Execution time: 3428.596 ms
```
For more information, refer to the official [EXPLAIN
documentation](https://www.postgresql.org/docs/current/static/sql-explain.html).
For more information, refer to the official
[`EXPLAIN` documentation](https://www.postgresql.org/docs/current/sql-explain.html)
and [using `EXPLAIN` guide](https://www.postgresql.org/docs/current/using-explain.html).
## Nodes
@ -674,3 +675,9 @@ For more information about the available options, run:
```
/chatops run explain --help
```
## Further reading
A more extensive guide on understanding query plans can be found in
the [presentation](https://www.dalibo.org/_media/understanding_explain.pdf)
from [Dalibo.org](https://www.dalibo.org/en/).