文本搜索解析器负责将原始文档文本拆分成令牌并识别每个令牌的类型,其中可能的类型集由解析器本身定义。请注意,解析器根本不修改文本——它只是识别似是而非的单词边界。由于这种有限的范围,对应用程序特定的自定义解析器的需求比对自定义字典的需求要少。目前,PostgreSQL只提供一个内置解析器,它已被发现对各种各样的应用程序有用。
内置解析器名为 pg_catalog.default
。它识别 23 种令牌类型,如表 12.1 所示。
表 12.1. 默认解析器的令牌类型
别名 | 描述 | 示例 |
---|---|---|
asciiword |
单词,全部是 ASCII 字母 | elephant |
word |
单词,全部是字母 | mañana |
numword |
单词,字母和数字 | beta1 |
asciihword |
连字符单词,全部是 ASCII | up-to-date |
hword |
连字符单词,全部是字母 | lógico-matemática |
numhword |
连字符单词,字母和数字 | postgresql-beta1 |
hword_asciipart |
连字符单词的一部分,全部是 ASCII | 在 postgresql-beta1 上下文中的 postgresql |
hword_part |
连字符单词的一部分,全部是字母 | 在 lógico-matemática 上下文中的 lógico 或 matemática |
hword_numpart |
连字符单词的一部分,字母和数字 | 在 postgresql-beta1 上下文中的 beta1 |
email |
电子邮件地址 | [email protected] |
protocol |
协议头 | http:// |
url |
URL | example.com/stuff/index.html |
host |
主机 | example.com |
url_path |
URL 路径 | 在 URL 上下文中的 /stuff/index.html |
file |
文件或路径名 | 如果不在 URL 中,则为 /usr/local/foo.txt |
sfloat |
科学记数法 | -1.234e56 |
float |
十进制记数法 | -1.234 |
int |
带符号整数 | -1234 |
uint |
无符号整数 | 1234 |
version |
版本号 | 8.3.0 |
tag |
XML 标签 | <a href="dictionaries.html"> |
entity |
XML 实体 | & |
blank |
空格符号 | (任何未识别的空格或标点符号) |
解析器对“字母”的概念由数据库的区域设置确定,特别是 lc_ctype
。仅包含基本 ASCII 字母的单词会报告为单独的令牌类型,因为有时区分它们很有用。在大多数欧洲语言中,令牌类型 word
和 asciiword
应被视为相同。
email
不支持 RFC 5322 定义的所有有效电子邮件字符。具体来说,电子邮件用户名支持的唯一非字母数字字符是句点、破折号和下划线。
解析器有可能从同一段文本中生成重叠的令牌。例如,连字符单词将报告为整个单词和每个组成部分
SELECT alias, description, token FROM ts_debug('foo-bar-beta1'); alias | description | token -----------------+------------------------------------------+--------------- numhword | Hyphenated word, letters and digits | foo-bar-beta1 hword_asciipart | Hyphenated word part, all ASCII | foo blank | Space symbols | - hword_asciipart | Hyphenated word part, all ASCII | bar blank | Space symbols | - hword_numpart | Hyphenated word part, letters and digits | beta1
这种行为是可取的,因为它允许搜索既适用于整个复合词,也适用于组成部分。这是另一个有启发意义的例子
SELECT alias, description, token FROM ts_debug('http://example.com/stuff/index.html'); alias | description | token ----------+---------------+------------------------------ protocol | Protocol head | http:// url | URL | example.com/stuff/index.html host | Host | example.com url_path | URL path | /stuff/index.html
如果您在文档中发现任何不正确、与您使用特定功能时的体验不符或需要进一步澄清的地方,请使用此表单报告文档问题。