This link has been bookmarked by 4 people . It was first bookmarked on 16 Apr 2008, by Navneet Kumar.
-
27 Mar 11
-
21 Mar 11
-
01 May 08
-
16 Apr 08
Navneet KumarThe reason why index scan is slower than table scan is that in case of the index scan the MySQL needs to perform more operations like :
read index, get pointer to row, get data from row,
that adds overhead to the operations.
Full table scan takes constant time no matter the cardinality, index traversing speed depends on the index cardinality-
The reason why index scan is slower than table scan is that in case of the index scan the MySQL needs to perform more operations like :
read index, get pointer to row, get data from row,
that adds overhead to the operations -
Full table scan takes constant time no matter the cardinality, index traversing speed depends on the index cardinality
-
hy index scan is
-
perations like :
read index, get pointer to row -
Full table scan takes constant time no matter the cardinality, index traversing speed depends on the index cardinality.
-
The reason why index scan is slower than table scan is that in case of the index scan the MySQL needs to perform more operations like :
read index, get pointer to row, get data from row,
that adds overhead to the operations.
-
Would you like to comment?
Join Diigo for a free account, or sign in if you are already a member.