Skip to content Skip to sidebar Skip to footer
Showing posts with the label Memory Leaks

Pypy Memory Usage Grows Forever?

I have a complicated python server app, that runs constantly all the time. Below is a very simplif… Read more Pypy Memory Usage Grows Forever?

App Engine Deferred: Tracking Down Memory Leaks

We have an App Engine application that writes many files of a relatively large size to Google Cloud… Read more App Engine Deferred: Tracking Down Memory Leaks

Memory Leak In Threaded Com Object With Python

I am creating a COM client within a thread and performing several operations with this client. Each… Read more Memory Leak In Threaded Com Object With Python

Why Does Not Django Release Fetched Db Objects?

I have very simple django app: models.py: class Product(models.Model): name = models.CharFi… Read more Why Does Not Django Release Fetched Db Objects?

Memory Profiler For Google Cloud Function?

I'm running a Google cloud function and getting out-of-memory error: Error: memory limit exceed… Read more Memory Profiler For Google Cloud Function?

Confusing Reference Ownership: How To Properly Deallocate (via Py_decref) Objects Of An Object?

I was analysing the following code, which compiles and runs correctly, but generates a memory leak.… Read more Confusing Reference Ownership: How To Properly Deallocate (via Py_decref) Objects Of An Object?

Memory Leak In Django When Keeping A Reference Of All Instances Of Forms

This is a followup to this thread. I have implemented the method for keeping a reference to all my … Read more Memory Leak In Django When Keeping A Reference Of All Instances Of Forms