PoWA (PostgreSQL Workload Analyzer) is a performance tool for PostgreSQL 9.4 and newer allowing to collect, aggregate and purge statistics on multiple PostgreSQL instances from various Stats Extensions.
les indexes bitmap n existent pas en postgreSQL.
Il existe l équivalent, les indexes BRIN, que l'on met sur des tables volumineuses :
https://wiki.postgresql.org/wiki/What's_new_in_PostgreSQL_9.5#BRIN_Indexes
Es tu au courant qu'il existe d autres types d indexes , le GiST:
https://en.m.wikipedia.org/wiki/GiST
Le Gin qui peut être utilisé dans un contexte plus général :
https://wiki.postgresql.org/wiki/GIN_generalization
Pour résumé :
PostgreSQL inclut une prise en charge intégrée des index B-tree et de table de hachage réguliers, et quatre méthodes d'accès aux index : arbres de recherche généralisés (GiST), index inversés généralisés (GIN), GiST partitionné par espace (SP-GiST)[33] et bloc Indices de gamme (BRIN).
In choosing which index type to use, GiST or GIN, consider these performance differences:
GIN index lookups are about three times faster than GiST
GIN indexes take about three times longer to build than GiST
GIN indexes are moderately slower to update than GiST indexes, but about 10 times slower if fast-update support was disabled (see Section 54.3.1 for details)
GIN indexes are two-to-three times larger than GiST indexes