Tagged Questions
7
votes
1answer
2k views
MySQL index cardinality - performance vs storage efficiency
Say you have a MySQL 5.0 MyISAM table with 100 million rows, with one index (other than primary key) on two integer columns.
From my admittedly poor understanding of B-tree structure, I believe that ...
1
vote
2answers
3k views
Why does the cardinality of an index in MySQL remain unchanged when I add a new index?
I have added a FULLTEXT index to one of my MySQL database tables as follows:
ALTER TABLE members ADD FULLTEXT(about,fname,lname,job_title);
The problem is that using phpmyadmin I can see the ...
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, ...