TIL – How to optimize postgres database by removing indexes
Are you looking to optimize your database, the best go-to way is to add an index to execute your query faster, but this blog is not about adding indexes but removing them, why do we need to remove indexes from our table? Having lots of indexes can have several disadvantages, including: Increased disk space usage:…