VastbaseG100

基于openGauss内核开发的企业级关系型数据库。

Menu

解析器

功能描述

文本搜索解析器负责将原文档文本分解为多个token,并标识每个token的类型。这里的类型集由解析器本身定义。注意,解析器并不修改文本,它只是确定合理的单词边界。由于这一限制,人们更需要定制词典,而不是为每个应用程序定制解析器。

目前Vastbase提供了三个内置的解析器,分别为pg_catalog.default、pg_catalog.ngram、pg_catalog.pound,其中:

  • pg_catalog.default适用于英文分词场景;

  • pg_catalog.ngram、pg_catalog.pound是为了支持中文全文检索功能新增的两种解析器,适用于中文及中英混合分词场景。

内置解析器pg_catalog.default,它能识别23种token类型,如表1所示:

表1 token类型

别名 描述 示例
asciiword Word, all ASCII letters elephant
word Word, all letters mañana
numword Word, letters and digits beta1
asciihword Hyphenated word, all ASCII up-to-date
hword Hyphenated word, all letters lógico-matemática
numhword Hyphenated word, letters and digits Vastbase-beta1
hword_asciipart Hyphenated word part, all ASCII Vastbase in the context Vastbase-beta1
hword_part Hyphenated word part, all letters lógico or matemática in the context lógico-matemática
hword_numpart Hyphenated word part, letters and digits beta1 in the context Vastbase-beta1
email Email address foo@example.com
protocol Protocol head http://
url URL example.com/stuff/index.html
host Host example.com
url_path URL path /stuff/index.html, in the context of a URL
file File or path name /usr/local/foo.txt, if not within a URL
sfloat Scientific notation -1.23E+56
float Decimal notation -1.234
int Signed integer -1234
uint Unsigned integer 1234
version Version number 8.3.0
tag XML tag
entity XML entity &
blank Space symbols 无法识别的空白或标点符号

N-gram是一种机械分词方法,适用于无语义中文分词场景。N-gram分词法可以保证分词的完备性,但是为了照顾所有可能,把很多不必要的词也加入到索引中,导致索引项增加。N-gram支持中文编码包括GBK、UTF-8。内置6种token类型,如表2 所示。

表2 token类型

别名 描述
zh_words chinese words
en_word english word
numeric numeric data
alnum alnum string
grapsymbol graphic symbol
multisymbol multiple symbol

Pound是一种固定格式分词方法,适用于无语意但待解析文本以固定分隔符分割开来的中英文分词场景。支持中文编码包括GBK、UTF8,支持英文编码包括ASCII。内置6种token类型,如表3所示;支持5种分隔符,如表4所示,在用户不进行自定义设置的情况下分隔符默认为“#”。Pound限制单个token长度不能超过256个字符。

表3 token类型

别名 描述
zh_words chinese words
en_word english word
numeric numeric data
alnum alnum string
grapsymbol graphic symbol
multisymbol multiple symbol

表4 分隔符类型

分隔符 描述
@ Special character
# Special character
$ Special character
% Special character
/ Special character

注意事项

  • 对于解析器来说,一个“字母”的概念是由数据库的语言区域设置,即lc_ctype设置决定的。只包含基本ASCII字母的词被报告为一个单独的token类型,因为这类词有时需要被区分出来。大多数欧洲语言中,对token类型word和asciiword的处理方法是类似的。

  • email不支持某些由RFC 5322定义的有效电子邮件字符。具体来说,可用于email用户名的非字母数字字符仅包含句号、破折号和下划线。

示例

示例1:

解析器可能对同一内容进行重叠token。例如,包含连字符的单词将作为一个整体进行报告,其组件也会分别被报告。

SELECT alias, description, token FROM ts_debug('english','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

这种行为是有必要的,因为它支持搜索整个复合词和各组件。

示例2:

SELECT alias, description, token FROM ts_debug('english','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