Tagged Questions

3
votes
4answers
599 views

What are the disadvantages of having many indices?

I recently sped up a complicated query by an order of magnitude by giving SQLite a good index to work with. Results like this make me wonder if I should index a lot of other fields that are commonly ...
0
votes
0answers
96 views

Indexing “low-cardinality” column for ORDER BY…LIMIT to obtain work portion?

My question is a bit similar to this already-asked question about indexing a boolean column. I'm building a database of my photographs, and I want to both add keywords, comments, and scoring to them, ...