Does zeronet support it?
Maybe that's the best solution for searching.
Although horizon is using database,it's still slow.
Google says the FTS is so fast.
No, FT search not compiled with python:
import sqlite3
conn = sqlite3.connect("test.db")
conn.execute("CREATE VIRTUAL TABLE data USING fts3()")
> sqlite3.OperationalError: no such module: fts3
conn.execute("CREATE VIRTUAL TABLE data USING fts4()")
> sqlite3.OperationalError: no such module: fts4
Available in python3.I tested
In [5]: conn.execute("CREATE VIRTUAL TABLE data1 USING fts4()")
Out[5]:
It's good to know, so you have the answer: It will be available after we moved to python3 :)
Yeah