egorsmkv / laravel-boilerplate

A Laravel Boilerplate with Batteries on Modern Technologies
Apache License 2.0
5 stars 0 forks source link

Optimization of SQL queries #26

Closed egorsmkv closed 9 months ago

egorsmkv commented 10 months ago

I should have ability to:

  1. See executing queries to PgSQL - Telescope::Queries
  2. Be able to EXPLAIN them - pgweb
  3. Have tools to help me to optimize them in the app - https://github.com/postgres-ai/joe
egorsmkv commented 10 months ago

Read these:

egorsmkv commented 10 months ago

File location in the container: /var/lib/postgresql/data/postgresql.conf

egorsmkv commented 10 months ago

Idea: I can export SQL queries from Telescope and then apply EXPLAIN command to them and sort results

egorsmkv commented 10 months ago

Dalibo’s EXPLAIN ANALYZE visualizer: https://explain.dalibo.com/

egorsmkv commented 10 months ago

temboard: