日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

c mysql 延时_Mysql 优化之延迟索引和分页优化

發(fā)布時間:2025/3/19 27 豆豆
生活随笔 收集整理的這篇文章主要介紹了 c mysql 延时_Mysql 优化之延迟索引和分页优化 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

什么是延遲索引?使用索引查詢出來數(shù)據(jù),之后把查詢結(jié)果和同一張表中數(shù)據(jù)進行連接查詢,進而提高查詢速度!

分頁是一個很常見功能,select ? ** ?from tableName limit ?($page - ?1 ) ?* $n ,$n

通過一個存儲過程進行測試:

create table smth1 (

id int auto_increment ,

ver int(11) default null,

content varchar(1000) not null,

intro varchar(1000) not null,

primary key(id),

key idver(id,ver)

)engine = innodb default charset = utf8;

create procedure smthTest1()

begin

declare num int default 100001;

while num < 1000000 do

set num := num +1;

insert into smth1 values (num ,num,'我是步迎飛','我是誰');

end while ;

end;

查詢:

mysql> show profiles;

+----------+------------+----------------------------------------------+

| Query_ID | Duration | Query |

+----------+------------+----------------------------------------------+

| 1 | 0.002006 | select id ,content from smth1 limit 1000,10 |

| 2 | 0.030106 | select id ,content from smth1 limit 5000,10 |

| 3 | 0.042428 | select id ,content from smth1 limit 9000,10 |

| 4 | 0.01297225 | select id ,content from smth1 limit 10000,10 |

| 5 | 0.13077625 | select id ,content from smth1 limit 20000,10 |

可見隨著查詢$page 變大,時間會越來越大!

怎樣避免這種情況?

一般我們數(shù)據(jù)庫里面數(shù)據(jù)都不會直接刪除,數(shù)據(jù)時很寶貴的,不舍得刪除,另一方便能提高查詢數(shù)據(jù)

先利用索引查詢出來數(shù)據(jù),再進行聯(lián)合查詢不就行了

select C.id,C.content from smth1 C inner join

(

select id from smth1 where id > 1000 limit 10

) as t on C.id = t.id ;

select C.id,C.content from smth1 C inner join

(

select id from smth1 where id > 5000 limit 10

) as t on C.id = t.id ;

select C.id,C.content from smth1 C inner join

(

select id from smth1 where id > 9000 limit 10

) as t on C.id = t.id ;

select C.id,C.content from smth1 C inner join

(

select id from smth1 where id > 10000 limit 10

) as t on C.id = t.id ;

select C.id,C.content from smth1 C inner join

(

select id from smth1 where id > 20000 limit 10

) as t on C.id = t.id ;

進行效率分析,沒有一個大于1s的

11 | 0.04538625 | select C.id,C.content from smth1 C inner join

(

select id from smth1 where id > 5000 limit 10

) as t on C.id = t.id |

| 12 | 0.023278 | select C.id,C.content from smth1 C inner join

(

select id from smth1 where id > 9000 limit 10

) as t on C.id = t.id |

| 13 | 0.02320425 | select C.id,C.content from smth1 C inner join

(

select id from smth1 where id > 10000 limit 10

) as t on C.id = t.id |

| 14 | 0.001938 | select C.id,C.content from smth1 C inner join

(

select id from smth1 where id > 20000 limit 10

) as t on C.id = t.id |

總結(jié)

以上是生活随笔為你收集整理的c mysql 延时_Mysql 优化之延迟索引和分页优化的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。