Hey, On mar, 2012-01-10 at 13:12 -0500, Ehsan Akhgari wrote: > How well does this work with regex queries?
FTS does not handle full blown regexp, but has support for prefix search using glob and other features more suited for generic full text search. The querying features are described at http://www.sqlite.org/fts3.html#section_3 > What about more complex > queries, such as searching for "obj->foo"? The default tokenizer being used would split that in 2 tokens, but FTS4 allows plugging custom tokenizer implementations, so we could tweak that behavior. Carlos _______________________________________________ dev-static-analysis mailing list [email protected] https://lists.mozilla.org/listinfo/dev-static-analysis
