如何创建包含纬度/经度(使用GIST)的PostgreSQL索引,还包括常规字段

时间:2013-08-05 13:44:25

标签: postgresql indexing earthdistance

我有一个位置表,我的应用程序的用户需要能够搜索。位于“我x英里内的位置”

我正在使用这样的查询:

select * from job_locations 
   where earth_box(ll_to_earth(51.5, -0.085), 5000) @> ll_to_earth(latitude, longitude)  
   and earth_distance(ll_to_earth(51.5, -0.085), ll_to_earth(latitude, longitude)) < 5000;

这样的索引:

CREATE INDEX job_locations_lat_lng on job_locations USING gist(ll_to_earth(latitude, longitude));

但是,这是一个多租户系统,其中所有表都有一个“tenant_id”字段,我们总是过滤它。理想情况下,我可以在索引中同时使用tenant_id和ll_to_earth(lat,lng),这可能会使搜索速度更快。

这可能吗?如何创建该索引?

谢谢!
丹尼尔

1 个答案:

答案 0 :(得分:5)

你可能需要btree_gis t扩展来创建索引以包含tenant_id字段,该字段似乎至少存在于Postgres 8,.4。

之后。
CREATE EXTENSION btree_gist;
CREATE INDEX job_locations_lat_lng ON job_locations USING gist(tenant_id, ll_to_earth(latitude, longitude));