localhost と私の Heroku ステージング アプリでは、pg_search は問題なく動作しています。
私の Heroku 製品アプリでは、pg_search は参照モデル (まだ含めたい) に加えて、脚注モデル (これは含めたくありません) の検索結果をまだ表示しています。
私は持っている...
# /app/models/reference.rb
class Reference < ActiveRecord::Base
has_paper_trail
include PgSearch
multisearchable :against => [:source_text, :citation]
end
から削除include PgSearch
しました/app/models/footnote.rb
。
私のプロセスは、一部のワーカーをアプリに手動で割り当てることから始まります。(私は通常、ワークレスを使用して自動的に行います。)
それから私は:
$ heroku run rails console --app testivate
Running `rails console` attached to terminal... up, run.2840
Connecting to database specified by DATABASE_URL
Loading production environment (Rails 3.2.11)
irb(main):001:0> PgSearch::Footnote.delete_all
NameError: uninitialized constant PgSearch::Footnote
irb(main):002:0> PgSearch::Reference.delete_all
irb(main):003:0> PgSearch::Multisearch.rebuild(Reference)
(1.3ms) BEGIN
SQL (56.2ms) DELETE FROM "pg_search_documents" WHERE "pg_search_documents"."searchable_type" = 'Reference'
(1279.8ms) INSERT INTO "pg_search_documents" (searchable_type, searchable_id, content, created_at, updated_at)
SELECT 'Reference' AS searchable_type,
"references".id AS searchable_id,
(
coalesce("references".source_text::text, '') || ' ' || coalesce("references".citation::text, '')
) AS content,
'2013-04-02 01:05:09.330250' AS created_at,
'2013-04-02 01:05:09.330250' AS updated_at
FROM "references"
(33.8ms) COMMIT
=> #<PG::Result:0x00000006c849b0>
irb(main):004:0>
#<PG::Result:0x00000006c849b0>
それぞれ 3000 ~ 15,000 語の 53 個のドキュメントのインデックスを作成するように pg_search に指示したにもかかわらず、最後のステップはその結果 を即座に返します。
再構築プロセスが進行中であると想定できますか? ワーカープロセスを縮小できるように、完了したことを確認する方法はありますか? (とにかくこれにワーカープロセスを割り当てる必要がありますか?)
ところで、次のアプローチも数秒しかかからず、正しくないようです。
$ heroku run rake pg_search:multisearch:rebuild[Reference] --app testivate
Running `rake pg_search:multisearch:rebuild[Reference]` attached to terminal... up, run.3303
Connecting to database specified by DATABASE_URL
(1.5ms) BEGIN
SQL (95.4ms) DELETE FROM "pg_search_documents" WHERE "pg_search_documents"."searchable_type" = 'Reference'
(1070.3ms) INSERT INTO "pg_search_documents" (searchable_type, searchable_id, content, created_at, updated_at)
SELECT 'Reference' AS searchable_type,
"references".id AS searchable_id,
(
coalesce("references".source_text::text, '') || ' ' || coalesce("references".citation::text, '')
) AS content,
'2013-04-02 01:10:07.355707' AS created_at,
'2013-04-02 01:10:07.355707' AS updated_at
FROM "references"
(103.3ms) COMMIT
これらすべての試行の後、検索結果に Footnote モデルのインスタンスが表示されます。どうすればそれらを取り除くことができますか?