This commit is contained in:
2018-10-11 22:16:31 +00:00
parent 9de3924286
commit 3098be3cc2
5 changed files with 19 additions and 20 deletions

View File

@@ -26,6 +26,17 @@ Branch / tags / repository
- Currently it's not an issue, but maybe it should be done properly
Remove widget route from release (or hide it) but keep in debug
(But...would it be handy for diagnosing things??)
DB INDEXES / PERFORMANCE
- Absolutely have to fine tune the indexes before release.
- Found a lot of useful info on examining index usage with postgres, there are some built in stats in Postgres that show how indexes are being used and or not used properly or usefully
- A quick search should show many ways to query for used tables etc
- Monitor unussed indexes: https://jmorano.moretrix.com/2014/02/postgresql-monitor-unused-indexes/
- Many queries to do with tuning: https://gist.github.com/ruckus/5718112
- Useful for learning: https://www.datadoghq.com/blog/postgresql-monitoring/
-
DOCUMENTATION TODO's