On 02/21/2016 03:54 PM, Charles Leifer wrote: > Is anyone aware of a design doc for any of the FTS implementations? Looking > for something a bit more technical than the docs. If not, where in the > source would you recommend starting? Thanks!
There is no such document unfortunately. The FTS5 code is cleaner than FTS3/4. I guess to decode it, start by understanding SQLite's virtual table interface, then look at fts5Int.h to figure out how the code fits together, then the on-disk format documented near the top of fts5_index.c. Dan. > _______________________________________________ > sqlite-users mailing list > sqlite-users at mailinglists.sqlite.org > http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

