7 ms·
"lots of N+1s, but these are easy to avoid with things like bullet" What is bullet?
by christudor 6y ago
"lots of N+1s, but these are easy to avoid with things like bullet"
What is bullet?
- andysomniac 6y agoIt is a gem that tells you when you are accidentally making a N+1 query and suggests the best way to fix it in AR (it also tells you when you have over used includes that are not needed and other such tweaks to make to your queries).
- mokkol 6y agoIt is a plugin/gem that helps you track N+1 queries. https://github.com/flyerhzm/bullet https://github.com/flyerhzm/bullet
- christudor 6y agoThank you!