I read that having many indexes in the database can seriously hurt performance, but I can not find anything in the PostgreSQL document.
I have a very large table with something like 100 columns and a billion rows, and often I have to search a lot in different fields.
Will the performance of a PostgreSQL table decrease if I add a lot of indexes (maybe 10 unique column indexes and 5 or 7 columns)?
EDIT: with a decrease in performance, I mean performance when typing rows (select), the database will be updated once a month, so updating and inserting time are not a problem.
source share