|
|
|
|
|
by branko_d
904 days ago
|
|
> A database with no indexes is slow. No it’s not… if all you do is write to it. In fact, it’s the fastest possible database for such case. Indexes are pure redundancy - they contain the data already in the base table which must be maintained during writes. But they can make reads so much faster, if the data access pattern can utilize them. The key is to identify access patterns which justify the price of the index. |
|