The FTS5 engine provides access to meta data on the tokens through a separate virtual table module (fts5vocab). This should be accessible through a dedicated pocketsearch method:
# provide an iterator to the most frequent tokens
self.pocket_search.tokens()
# store all tokens in a list:
list(self.pocket_search.tokens())
The FTS5 engine provides access to meta data on the tokens through a separate virtual table module (fts5vocab). This should be accessible through a dedicated pocketsearch method:
The output should be a list of dictionaries:
where