Partial Indexes
Create an index on a subset of the entire table. This potentially reduces its size and the amount of overhead to maintain it.
One common use case is to partition indexes by date ranges
-> Create a separate index per month, year.
Last updated