Skip to content

Instantly share code, notes, and snippets.

@ryanlecompte
Created August 8, 2012 18:52
Show Gist options
  • Save ryanlecompte/3297514 to your computer and use it in GitHub Desktop.
Save ryanlecompte/3297514 to your computer and use it in GitHub Desktop.
AR Memory Leak #2
require_relative 'config/environment'
10.times do
Thread.new do
loop do
Event.uncached do
Event.where("created_at >= '2012-08-07'").all.take(100)
end
end
end
end
loop do
sleep 10
GC.start
puts `pmap -x #{Process.pid}`.split[-2]
end
-------------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment