15

私はこのActiveRecordクエリを持っています

issue = Issue.find(id)
issue.articles.includes(:category).merge(Category.where(permalink: perma))

そして、mysql クエリに変換された

SELECT `articles`.`id` AS t0_r0, `articles`.`title` AS t0_r1, 
       `articles`.`hypertitle` AS t0_r2, `articles`.`html` AS t0_r3,
       `articles`.`author` AS t0_r4, `articles`.`published` AS t0_r5,
       `articles`.`category_id` AS t0_r6, `articles`.`issue_id` AS t0_r7,
       `articles`.`date` AS t0_r8, `articles`.`created_at` AS t0_r9, 
       `articles`.`updated_at` AS t0_r10, `articles`.`photo_file_name` AS t0_r11,
       `articles`.`photo_content_type` AS t0_r12, `articles`.`photo_file_size` AS t0_r13,
       `articles`.`photo_updated_at` AS t0_r14, `categories`.`id` AS t1_r0,
       `categories`.`name` AS t1_r1, `categories`.`permalink` AS t1_r2,
       `categories`.`created_at` AS t1_r3, `categories`.`updated_at` AS t1_r4,
       `categories`.`issued` AS t1_r5, `categories`.`order_articles` AS t1_r6 
        FROM `articles` LEFT OUTER JOIN `categories` ON 
       `categories`.`id` = `articles`.`category_id` WHERE 
       `articles`.`issue_id` = 409 AND `categories`.`permalink` = 'Διεθνή' LIMIT 1

このクエリの説明で、間違ったインデックスを使用していることがわかりました

+----+-------------+------------+-------+---------------------------------------------------------------------------+-------------------------------+---------+-------+------+----------+-------------+
| id | select_type | table      | type  | possible_keys                                                             | key                           | key_len | ref   | rows | filtered | Extra       |
+----+-------------+------------+-------+---------------------------------------------------------------------------+-------------------------------+---------+-------+------+----------+-------------+
|  1 | SIMPLE      | categories | const | PRIMARY,index_categories_on_permalink                                     | index_categories_on_permalink | 768     | const |    1 |   100.00 |             |
|  1 | SIMPLE      | articles   | ref   | index_articles_on_issue_id_and_category_id, index_articles_on_category_id | index_articles_on_category_id | 2       | const |   10 |   100.05 | Using where |
+----+-------------+------------+-------+---------------------------------------------------------------------------+-------------------------------+---------+-------+------+----------+-------------+

私は 2 つのインデックスを持っていcategory_idますissue_id - category_id

このクエリでは、issue_idとを使用すると、よりもcategory_idはるかに高速に検索できます。index_articles_on_issue_id_and_category_idindex_articles_on_category_id

アクティブなレコード クエリで正しいインデックスを選択するにはどうすればよいですか?

4

2 に答える 2

38

インデックスを使用するように、このようにアレルを容易にすることができます。

 class Issue
   def self.use_index(index)
     # update: OP fixed my mistake
     from("#{self.table_name} USE INDEX(#{index})")
   end
 end

 # then
 Issue.use_index("bla").where(some_condition: true)
于 2012-12-16T18:24:48.777 に答える
4

に追加use_indexActiveRecord::Relationます。

これを Rails コアに追加することについて何年にもわたって議論がありましたが、PR とブランチは放棄されたようです。

使用しているデータベースとその制限を認識している場合は、これを独自のコードベースに簡単に追加して使用できるようにすることができます。

@krichard のソリューションと非常によく似ていますが、すべてのモデルをより一般化して使用するだけでなく、Issue.

config/initializers/active_record_relation.rb

class ActiveRecord::Relation
  # Allow passing index hints to MySQL in case the query planner gets confused.
  #
  # Example:
  #   Message.first.events.use_index( :index_events_on_eventable_type_and_eventable_id )
  #   #=> Event Load (0.5ms)  SELECT `events`.* FROM `events` USE INDEX (index_events_on_eventable_type_and_eventable_id) WHERE `events`.`eventable_id` = 123 AND `events`.`eventable_type` = 'Message'
  #
  # MySQL documentation:
  #    https://dev.mysql.com/doc/refman/5.7/en/index-hints.html
  #
  # See https://github.com/rails/rails/pull/30514
  #
  def use_index( index_name )
    self.from( "#{ self.quoted_table_name } USE INDEX ( #{ index_name } )" )
  end
end

これにより、次のようなものを使用できます。

issue.articles.includes( :category ).use_index( :index_articles_on_issue_id_and_category_id )

結果の SQL には以下が含まれます。

FROM articles USE INDEX( index_articles_on_issue_id_and_category_id )
于 2020-09-23T17:01:18.683 に答える