10

我正在测试 PostgreSQL 全文搜索(使用 pg_search gem)和 solr(sunspot_solr gem)的性能。

对于 400 万条记录,Tsearch 为 13456毫秒,SOLR 为 800 毫秒(即 SOLR 查询 + DB 检索)。很明显,我需要索引,但我不确定如何为全文搜索创建索引。我调查并发现对于全文搜索我应该使用 GIN 索引。

execute "CREATE INDEX products_gin_title ON products USING GIN(to_tsvector('english', title))"

但是我正在通过另外两列进行搜索,并且我需要多值索引,但我不确定如何实现它?我对数据库部分不是很熟悉。我的搜索代码如下所示:

@results = Product.search_title(params[:search_term]).where("platform_id=? AND product_type=?", params[:platform_id], params[:type_id]).limit(10).all

如何为这种情况创建正确的查询?

这是 rails 搜索词car的 SQL 输出。

Product Load (12494.0ms)
SELECT 
    "products".*, 
    ( ts_rank((to_tsvector('simple', coalesce("products"."title"::text, ''))), (to_ tsquery('simple', ''' ' || 'car' || ' ''')), 2) ) AS pg_search_rank 
FROM "products" 
WHERE (((to_tsvector('simple', coalesce("products"."tit le"::text, ''))) @@ (to_tsquery('simple', ''' ' || 'car' || ' ''')))) 
    AND (platform_id='26' AND product_type='2') 
ORDER BY pg_search_rank DESC, "products"."id" ASC 
LIMIT 10

编辑:

我正在使用 PostgreSQL 8.4.11,EXPLAIN ANALYZE输出如下。

Limit  (cost=108126.34..108126.36 rows=10 width=3824) (actual time=12228.736..12228.738 rows=10 loops=1)   
->  Sort (cost=108126.34..108163.84 rows=14999 width=3824) (actual time=12228.733..12228.734 rows=10 loops=1)
    Sort Key: (ts_rank(to_tsvector('simple'::regconfig, COALESCE((title)::text, ''::text)), '''car'''::tsquery, 2)), id
    Sort Method:  top-N heapsort  Memory: 18kB
    ->  Seq Scan on products  (cost=0.00..107802.22 rows=14999 width=3824) (actual time=7.532..12224.585 rows=977 loops=1)
        Filter: ((platform_id = 26) AND (product_type = 2) AND (to_tsvector('simple'::regconfig, COALESCE((title)::text, ''::text)) @@ '''car'''::tsquery)) 

Total runtime: 12228.813 ms
4

1 回答 1

10

这个表达式:

to_tsvector('simple', (COALESCE(title::TEXT), ''))

对您的索引不适用。

您应该在查询中使用的那个表达式上声明索引:

CREATE INDEX products_gin_title
ON products
USING GIN(to_tsvector('simple', COALESCE(title::TEXT,'')))

(或使 ruby​​ 生成索引中使用的表达式)。

如果要索引多个列,只需将它们连接起来:

CREATE INDEX products_gin_title
ON products
USING GIN(to_tsvector('simple', title || ' ' || product_type || ' ' || platform_id))

但同样,Ruby 应该过滤完全相同的表达式以使用索引。

于 2012-06-04T11:55:38.733 回答