No commit activity in last 3 years
No release in over 3 years
MySQL index hint support for ActiveRecord
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.3
< 0.5, >= 0.3.18
>= 0
>= 0

Runtime

 Project Readme

Build Status

activerecord-mysql-index-hint

MySQL index hint support for ActiveRecord

Installation

Add this line to your application's Gemfile:

gem 'activerecord-mysql-index-hint'

Usage

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