表 65.1中展示了PostgreSQL 核心发布所包括的SP-GiST操作符类。
表 65.1. 内建 SP-GiST 操作符类
名称 | 索引数据类型 | 可索引操作符 | 排序运算符 |
---|---|---|---|
kd_point_ops | point |
<<
<@
<^
>>
>^
~=
|
<->
|
quad_point_ops | point |
<<
<@
<^
>>
>^
~=
|
<->
|
range_ops | 任何范围类型 |
&&
&<
&>
-|-
<<
<@
=
>>
@>
| |
box_ops | box |
<<
&<
&&
&>
>>
~=
@>
<@
&<|
<<|
|>>
|&>
|
<->
|
poly_ops | polygon |
<<
&<
&&
&>
>>
~=
@>
<@
&<|
<<|
|>>
|&>
|
<->
|
text_ops | text |
<
<=
=
>
>=
~<=~
~<~
~>=~
~>~
^@
| |
inet_ops | inet , cidr |
&&
>>
>>=
>
>=
<>
<<
<<=
<
<=
=
|
在用于类型point
的两种操作符类中,quad_point_ops
是默认值。kd_point_ops
支持相同的操作符,但是使用一种不同的索引数据结构,在某些应用中它可以提供更好的性能。
quad_point_ops
、kd_point_ops
和 poly_ops
运算符类别支持<->
排序运算符,
支持在索引点或多边形数据集上进行k-最近邻(k-NN
)搜索。