举报投诉联系我们 手机版 热门标签 编程学
您的位置:编程学 > PostgreSQL 解析器

PostgreSQL 解析器

2023-05-09 10:18 PostgreSQL 解析器

 PostgreSQL 解析器

文本搜索解析器负责把未处理的文档文本划分成记号并且标识每一个记号的类型,而可能的类型集合由解析器本身定义。注意一个解析器完全不会修改文本 — 它简单地标识看似有理的词边界。因为这种有限的视野,对于应用相关的自定义解析器的需求就没有自定义字典那么强烈。目前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 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
email Email 地址 foo@example.com
protocol 协议头部 http://
url URL example.com/stuff/index.html
host 主机 example.com
url_path URL 路径 /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
tag XML 标签 <a href="dictionaries.html">
entity XML 实体 &
blank 空格符号 (其他不识别的任意空白或标点符号)

注意

解析器的一个字母的概念由数据库的区域设置决定,具体是lc_ctype。只包含基本 ASCII 字母的词被报告为一个单独的记号类型,因为有时可以用来区别它们。在大部分欧洲语言中,记号类型wordasciiword应该被同样对待。

email不支持 RFC 5322 定义的所有合法 email 字符。具体来说,对 email 用户名被支持的非字母数字字符只有句点、破折号和下划线。

解析器有可能从同一份文本得出相互覆盖的记号。例如,一个带连字符的词可能会被报告为一整个词或者多个部分:

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


阅读全文
以上是编程学为你收集整理的 PostgreSQL 解析器全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
  •  PostgreSQL 显式锁定

    PostgreSQL 显式锁定

    2023-06-10

    13.3.1. 表级锁13.3.2. 行级锁13.3.3. 页级锁13.3.4. 死锁13.3.5. 咨询锁 PostgreSQL提供了多种锁模式用于控制对表中数据的并发...

  •  PostgreSQL SPI_getargcount

    PostgreSQL SPI_getargcount

    2023-04-22

    SPI_getargcount — 返回一个由SPI_prepare准备好的语句所需的参数数量大纲int SPI_getargcount(SPIPlanPtr plan)描述 SPI_getar...

  •  PostgreSQL SPI_saveplan

    PostgreSQL SPI_saveplan

    2023-04-26

    SPI_saveplan — 保存一个预备语句大纲SPIPlanPtr SPI_saveplan(SPIPlanPtr plan)描述 SPI_saveplan把一个被传入的语句(由 SPI_...

  •  PostgreSQL SPI_gettype

    PostgreSQL SPI_gettype

    2023-06-09

    SPI_gettype — 返回指定列的数据类型名称大纲char * SPI_gettype(TupleDesc rowdesc, int colnumber)描述 SPI_gettype返回该指...

  • xmldom is not enabled XML DOM – 创建节点

    xmldom is not enabled XML DOM – 创建节点

    2023-04-11 XMLDOM教程

    XML DOM 创建节点 XML DOM 具有的所有节点类型的创建方法,通过为该方法提供名称(需要时)以及那些具有内容的节点(如文本节点...

© 2024 编程学 bianchengxue.com 版权所有 联系我们
桂ICP备19012293号-7 返回底部