View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0008094 | MMW v4 | Playlist / Search | public | 2011-07-07 12:23 | 2012-03-05 18:03 |
Reporter | jiri | Assigned To | |||
Priority | urgent | Severity | minor | Reproducibility | N/A |
Status | assigned | Resolution | open | ||
Product Version | 4.0 | ||||
Target Version | 4.1 | ||||
Summary | 0008094: Speed up some queries by using full-text search index | ||||
Description | As reported here http://www.mediamonkey.com/forum/viewtopic.php?f=7&t=58668&start=15 , there are some cases where queries take a long time the first time after MM is started, obviously because of usage of 'like' SQL command, e.g. in case of searching for a string in Path. We should try to use the full-text search whenever possible. | ||||
Tags | No tags attached. | ||||
Fixed in build | |||||
|
Note also, that particularly Path searching could be improved in case user searches for a full path (i.e. like C:\Music\Classical\), in which case we could use our internal folder structures for finding the path. |
|
Note that the SQLite's FTS3 engine can search on prefixes (not infixes) so it can be only used for conditions like: Title | starts with | "ab" but cannot be used for conditions like: Title | contains | "ab" |