文本搜索解析器

本主题描述了Greenplum数据库文本搜索解析器从原始文本生成的token类型。

文本搜索解析器负责将原始文档文本拆分为token并标识每个token的类型,其中可能的类型集由解析器本身定义。 请注意,解析器根本不会修改文本 - 它只是识别合理的单词边界。 由于范围有限,因此与自定义词典相比,对特定于应用程序的自定义解析器的需求较少。 目前,Greenplum数据库只提供了一个内置解析器,它已被发现可用于各种应用程序。

内置解析器名为pg_catalog.default。 它识别23种token类型,如下表所示。

Table 1. 默认解析器的token类型
别名描述示例
asciiword单词,全部为ASCII字母elephant
word单词,全部为字母mañana
numword单词,字母和数字beta1
asciihword连字符,全部为ASCIIup-to-date
hword连字符,全部为字母lógico-matemática
numhword连字符,字母和数字postgresql-beta1
hword_asciipart连字符部分,全部为ASCIIpostgresql in the context postgresql-beta1
hword_part连字符部分,全部为字母lógico or matemática in the context lógico-matemática
hword_numpart连字符部分,字母和数字beta1 in the context postgresql-beta1
emailEmail地址foo@example.com
protocol协议头http://
urlURLexample.com/stuff/index.html
hostHostexample.com
url_pathURL路径/stuff/index.html, in the context of a URL
file文件或路径名/usr/local/foo.txt, if not within a URL
sfloat科学计数法-1.234e56
float十进制表示法-1.234
int有符号数-1234
uint无符号数1234
version版本号8.3.0
tagXML标记<a href=”dictionaries.html”>
entityXML实体&amp;
blank空白字符(任何未经其他方式认可的空格或标点符号)

Note:

解析器的“字母”概念由数据库的语言环境设置决定,特别是lc_ctype。 仅包含基本ASCII字母的单词将作为单独的token类型报告,因为区分它们有时很有用。 在大多数欧洲语言中,token类型word和asciiword应该被视为相似。

电子邮件不支持RFC 5322定义的所有有效电子邮件字符。 具体而言,电子邮件用户名支持的唯一非字母数字字符是句号,短划线和下划线。

解析器可以从同一段文本生成重叠token。 例如,一个带连字符的单词将作为整个单词和每个组件报告:

  1. SELECT alias, description, token FROM ts_debug('foo-bar-beta1');
  2. alias | description | token
  3. -----------------+------------------------------------------+---------------
  4. numhword | Hyphenated word, letters and digits | foo-bar-beta1
  5. hword_asciipart | Hyphenated word part, all ASCII | foo
  6. blank | Space symbols | -
  7. hword_asciipart | Hyphenated word part, all ASCII | bar
  8. blank | Space symbols | -
  9. hword_numpart | Hyphenated word part, letters and digits | beta1

这种行为是可取的,因为它允许搜索适用于整个复合词和组件。 这是另一个有指导性的例子:

  1. SELECT alias, description, token FROM ts_debug('http://example.com/stuff/index.html');
  2. alias | description | token
  3. ----------+---------------+------------------------------
  4. protocol | Protocol head | http://
  5. url | URL | example.com/stuff/index.html
  6. host | Host | example.com
  7. url_path | URL path | /stuff/index.html

Parent topic: 使用全文搜索