本文介紹了如何提高SQLITE LIKE語句性能的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!
問題描述
我使用這樣的模式創(chuàng)建表:
CREATE TABLE wordIndex(id integer primary key, word varchar(128), offset integer, length integer);
CREATE INDEX word_idx on wordIndex(word);
現(xiàn)在表大約有450,000行記錄。當(dāng)我在ipod4上使用下面的LIKE語句時,性能不是很好:
SELECT*FORM WORK WORE WORK‘TEST ACCESS%’;
使用解釋輸出:
explain select * from wordIndex where word like 'test acces%';
0|Trace|0|0|0||00|
1|Goto|0|16|0||00|
2|OpenRead|0|2|0|4|00|
3|Rewind|0|14|0||00|
4|String8|0|2|0|test acces%|00|
5|Column|0|1|3||00|
6|Function|1|2|1|like(2)|02|
7|IfNot|1|13|1||00|
8|Rowid|0|4|0||00|
9|Column|0|1|5||00|
10|Column|0|2|6||00|
11|Column|0|3|7||00|
12|ResultRow|4|4|0||00|
13|Next|0|4|0||01|
14|Close|0|0|0||00|
15|Halt|0|0|0||00|
16|Transaction|0|0|0||00|
17|VerifyCookie|0|2|0||00|
18|TableLock|0|2|0|wordIndex|00|
19|Goto|0|2|0||00|
我可能需要構(gòu)建一個額外的倒排索引來提高性能,或者…?
謝謝預(yù)支!
推薦答案
索引和like
在大多數(shù)數(shù)據(jù)庫中相處不好。如果可能,最好的方法是將查詢重寫為范圍查詢,因為隨后將使用索引:
select *
from wordIndex
where word between 'test acces' and 'test acces{'
(左大括號是緊跟在‘z’后面的ASCII字符。)
如果您正在查找單詞開頭的模式(例如‘%test’),則您可能不得不接受全表掃描。
編輯:
索引和like
*在當(dāng)今大多數(shù)數(shù)據(jù)庫中,當(dāng)模式以常量開始時,like
和*確實相處得很好,所以您可以這樣做:
select *
from wordIndex
where word like 'test acces%' ;
不過,我對SQLite不是100%有把握,所以請檢查執(zhí)行計劃,看看它是否使用了索引。
這篇關(guān)于如何提高SQLITE LIKE語句性能的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,