API with NestJS #14. Improving performance of our Postgres database with indexes
As our system grows, certain queries on our database might fail us in terms of performance. One of the popular ways of dealing with this issue are indexes. This article explores how we can use them both through TypeORM and writing our own Postgres queries. Introduction to indexes When we store information on a disk, […]