sqlite中fts的数据结构说明:doclist

本文详细介绍了SQLite的全文搜索扩展(FTS)中doclist数据结构的存储和解析方式,包括如何表示docid、column和position,以及如何节省存储空间。通过实例解释了如何理解数据流中的信息。
摘要由CSDN通过智能技术生成

在fts3.c的开头的注释里面就讲解了fts使用到的各个数据块的结构。

1, doclist的结构说明,

**

** A doclist is stored like this:
**
** array {
**   varint docid;
**   array {                (position list for column 0)
**     varint position;     (2 more than the delta from previous position)
**   }
**   array {
**     varint POS_COLUMN;   (marks start of position list for new column)
**     varint column;       (index of new column)
**     array {
**       varint position;   (2 more than the delta from previous position)
**     }
**   }
**   varint POS_END;        (marks end of positions for this document.
** }

**

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值