Search found 1 match
- Mon Apr 01, 2019 7:00 pm
- Forum: Support and Development
- Topic: Memory problem
- Replies: 1
- Views: 2190
Memory problem
this piece of code works fine elsewhere but in love's case windows task manager shows 800-900 MB still being used by love even after freeing all the memory. what gives? -- main.lua t = {} for i = 1, 10000000 do table.insert(t, {1,2,3}) end t = nil print(collectgarbage("count")) -- ~834440....