Sha256: 6690f161d8efdcb3d2eedcda160f45aca6f67779920415a461955099e9800cc7
Contents?: true
Size: 560 Bytes
Versions: 3
Compression:
Stored size: 560 Bytes
Contents
[![Build Status](https://travis-ci.org/mirakui/activerecord-mysql-index-hint.png)](https://travis-ci.org/mirakui/activerecord-mysql-index-hint) # activerecord-mysql-index-hint MySQL index hint support for ActiveRecord ## Installation Add this line to your application's Gemfile: ```ruby gem 'activerecord-mysql-index-hint' ``` ## Usage ```ruby class Product < ActiveRecord::Base end Product.where(user_id: 1).force_index(:idx_user_id).first # => SELECT `products`.* FROM `products` FORCE INDEX(`idx_user_id`) WHERE `products`.`user_id` = 1 LIMIT 1 ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
activerecord-mysql-index-hint-0.0.4 | README.md |
activerecord-mysql-index-hint-0.0.3 | README.md |
activerecord-mysql-index-hint-0.0.2 | README.md |