Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个android包含 6 个表并预先填充(包含数据)的应用程序,每个表包含至少 5000 条记录,我想支持FTS3,我知道它比普通SQLite表快。现在我应该将这些表模式转换为使用FTS3 示例:
android
FTS3
SQLite
CREATE VIRTUAL TABLE TABLE_1 USING fts3( col1, col2 ,....)
对于这 6 个表中的每个表?或者我需要为每个表创建一个单独的表并在表中插入相同的记录fts3???
fts3
FTS 表对于“普通”查询效率不高,因此您可能仍需要原始表。
FTS 表可以像普通表一样预先填充。
如果您决定保留原始表,则可以通过使用无内容或外部内容FTS 表来节省空间(请参阅文档)。