Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

sqlite-fts3: custom tokenizer?

Does anyone here have experience with writing custom FTS3 (the full-text-search extension) tokenizers? I'm looking for a tokenizer that will ignore HTML tags.

Thanks.

like image 730
noamtm Avatar asked Sep 07 '10 10:09

noamtm


1 Answers

I have no direct experience, but by doing a web search with "sqlite3 registerTokenizer" I found two tokenizers that can be used as a basis: a snowball tokenizer and a MeCab tokenizer.

like image 155
hmuelner Avatar answered Nov 07 '22 05:11

hmuelner