Reputation: 20648
Is there a way to free memory in google's app engine? Is there a garbage collector in python?
Upvotes: 2
Views: 632
Reputation: 1185
Python itself managing the garbage collection. Normally, no need for manual memory release.
although, you can check Python GC lib, if you want to do it manually.
Upvotes: 5
Reputation: 4036
Python has it's own garbage collection so there's no need to release memory manually.
Upvotes: 6