1

これは一般的な戦略の問題です。sunspot_rails を使って調べている検索結果ページの読み込み時間を調べていると、奇妙な発見がいくつかありました。

  1. 他のものが一緒に読み込まれると、結果の読み込みが速くなることがあります。

  2. テーブルの結合を避けることができればできるほど、データベースを軽く扱うことができます。

他にもいくつかの素晴らしいステープルが欠けているかどうか、私は興味があります. これは、アイテムを分離して単独でロードした場合にかかる平均ロード時間に関するコメントで解析している検索結果の例です。

All things Commented out = Completed in 554ms (View: 487, DB: 16)
All things loaded = Completed in 9093ms (View: 9008, DB: 37)

検索画像

.left.search_image_holder
  - if result.search_image.exists?
    = image_tag result.search_image.url(:thumb)
  - elsif result.logo.exists?
    = image_tag result.logo.url(:thumb)
  - else
    = image_tag 'search_image_default.jpg'

Completed in 5791ms (View: 5728, DB: 10)

基本情報

.grid_3.omega
  %h1<
    = link_to truncate(result.name.titleize, :length => 30), organization_path(result.hq_url.blank? ? result : result.hq_url), :title => "Find out more about #{result.name} in #{result.city}"
  .clear
  %h3<
    =h result.city.titleize
  .clear
  .class7
    =h truncate(result.quick_description.titleize, :length => 60)
  .clear

Completed in 4158ms (View: 3979, DB: 16)

アイコン

.grid_4.omega.alpha
  .left{:style => 'margin-right: 12px; width: 40px'}
    - if result.contact_24
      = link_to image_tag('24hr-icon.png'), contact_organization_path(result), :title => "This local business or organization guarentees tocontact you within 24 hours"
    - else
      &nbsp;
  .left{:style => 'margin-right: 12px; width: 40px'}
    - if result.deals.count > 0
      = link_to image_tag('hq-card-icon.png'), view_organization_deals_path(result), :title => "This local business or organization features promotions, deals, or steals"
    - else
      &nbsp;
  .left{:style => 'margin-right: 12px; width: 40px'}
    - if result.video_count > 0
      = link_to image_tag('videos-icon.png'), organization_path(result.hq_url.blank? ? result : result.hq_url, :show_video => true), :title => "This local business or organization features a video"
    - else
      &nbsp;
  - if result.reviews.count > 0
    %a{:href => organization_reviews_path(result)}
      .left.star_rating_icon
        = result.rating
  .clear

Completed in 4125ms (View: 3929, DB: 36)

テキストについて

.grid_4.omega.alpha{:style => 'height: 25px; overflow: hidden;'}
  %p<
    = truncate(sanitize(simple_format(result.about_us), :tags => ''), :length => 100).titleize

Completed in 4500ms (View: 4311, DB: 12)
4

1 に答える 1

1

物事をスピードアップできる1つの方法は、次の結果を事前に計算することです。

truncate(sanitize(simple_format(result.about_us), :tags => ''), :length => 100).titleize

そうすれば、あなたの見解は単にtext/htmlを吐き出しているだけです。上記を別のフィールドに実行するbefore_saveメソッドがあります。

しかし、これは単なる推測です。ビューの読み込みが遅すぎるように思われるため、これ原因である可能性があります。

于 2011-02-17T17:49:12.780 に答える