question- how effective are indexes when it comes to large tables? If you have a very very large mysql table, at what point do indexes become ineffective when it comes to searching the table?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The main purpose of an index is to prevent full scanning of a “very large” table whenever you search for a certain row so technically the larger the table gets the more “effective” the index becomes because the full scanning becomes more expensive.