I'm not sure why the following example code doesn't free up all the timer memory. It starts at around 133kb, if you tap the screen it creates 10,000 timers. After they have run, they should be cleaned up. However after removing all the timers, it levels out at about 389kb.
Am I missing something?
local timersFired = 0
local timers = {}
local maxTimers = 10000
Runtime:addEventListener("touch", function(e)
if(e.phase == "began") then
print("TIMERS CREATED")
timers = {}
for i=1,maxTimers do
table.insert(timers, timer.performWithDelay(3000, function(e)
timersFired = timersFired + 1
end, 1))
end
end
end)
Runtime:addEventListener("enterFrame", function(e)
if(timersFired == maxTimers) then
print("KILLED TIMERS")
for i=1,maxTimers do
local aTimer = timers[i]
timer.cancel(aTimer)
timers[i] = nil
end
timers = nil
timersFired = 0
end
collectgarbage("collect")
print( "MemUsage: " .. collectgarbage("count") )
end)