我有一張450000排新聞的桌子.
表模式是這樣的:
create table if not exists `news` (
`id` int(11) not null auto_increment,
`cat_id` int(11) not null,
`title` tinytext not null,
`content` text not null,
`date` int(11) not null,
`readcount` int(11) not null default '0',
primary key (`id`),
key `cat_id` (`cat_id`),
key `cat_id_2` (`cat_id`,`id`),
key `cat_id_date` (`cat_id`,`date`)
) engine=myisam default charset=latin5 auto_increment=462679 ;
當我執行如下的sql命令為類別頁面的頁面「x」獲取一些新聞時,如果x超過100則需要超過15秒:
select * news where cat_id='4' order by id desc limit 150000,10;
解釋說明它使用「where」和索引「cat_id_2」
在寫這個問題時,我還檢查了乙個更簡單的sql查詢,這也花了近一分鐘:
select * from haberler order by id desc limit 40000,10;
如果sql如下所示,只需幾毫秒:
select * from haberler order by id desc limit 20,10;
我的my.cnf配置是這樣的:
skip-locking
skip-innodb
query_cache_limit=1m
query_cache_size=256m
query_cache_type=1
max_connections=30
interactive_timeout=600000
#wait_timeout=5
#connect_timeout=5
thread_cache_size=384
key_buffer=256m
join_buffer=4m
max_allowed_packet=16m
table_cache=1024
record_buffer=1m
sort_buffer_size=64m
read_buffer_size=16m
max_connect_errors=10
# try number of cpu's*2 for thread_concurrency
thread_concurrency=2
myisam_sort_buffer_size=128m
long_query_time = 1
log_slow_queries = /var/log/mysql/mysql-slow.log
max_heap_table_size=512m
該**執行在core2duo上,記憶體為2gb.
我認為問題可能是由sort_buffer_size引起的,但我不確定.
提前致謝.
mysql 雜湊索引 MySQL索引之雜湊索引
雜湊索引 hash index 建立在雜湊表的基礎上,它只對使用了索引中的每一列的精確查詢有用。對於每一行,儲存引擎計算出了被索引的雜湊碼 hash code 它是乙個較小的值,並且有可能和其他行的雜湊碼不同。它把雜湊碼儲存在索引中,並且儲存了乙個指向雜湊表中的每一行的指標。在mysql中,只有me...
mysql主鍵索引 MySQL索引之主鍵索引
在mysql裡,主鍵索引和輔助索引分別是什麼意思,有什麼區別?上次的分享我們介紹了聚集索引和非聚集索引的區別,本次我們繼續介紹主鍵索引和輔助索引的區別。1 主鍵索引 主鍵索引,簡稱主鍵,原文是primary key,由乙個或多個列組成,用於唯一性標識資料表中的某一條記錄。乙個表可以沒有主鍵,但最多只...
mysql聚集索引 MySQL索引之聚集索引介紹
在mysql裡,聚集索引和非聚集索引分別是什麼意思,有什麼區別?在mysql中,innodb引擎表是 聚集 索引組織表 clustered index organize table 而myisam引擎表則是堆組織表 heap organize table 也有人把聚集索引稱為聚簇索引。當然了,聚集索...