Running ActiveRecord Commands in Rails Console without SQL Caching
I would like to know if there is a way to temporarily disable SQL caching in the Rails console.
I run ActiveRecord commands in the Rails console to see how long each request takes. But I can't get the correct measure because Rails is caching SQL and my queries seem to be happening almost instantly.
Any suggestions?
+3
source to share