SQLite FTS3 inconsitent performance

Posted by alex on Stack Overflow See other posts from Stack Overflow or by alex
Published on 2010-04-29T04:29:36Z Indexed on 2010/04/29 4:37 UTC
Read the original article Hit count: 386

Filed under:
|

A table with ~100k rows.

SELECT word FROM entries WHERE word MATCH '"chicken *"';
17 results in 46ms
SELECT word FROM entries WHERE word MATCH '"chicken f*"';
2 results in 5793ms

Why such a huge drop?

© Stack Overflow or respective owner

Related posts about sqlite

Related posts about android