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

Memory Leak In Python Twisted: Where Is It?

I have a Twisted server under load. When the server is under load, memory usage increases, and it i… Read more Memory Leak In Python Twisted: Where Is It?

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?

How To Find The Source Of Increasing Memory Usage Of A Twisted Server?

I have an audio broadcasting server written in Python and based on Twisted. It works fine, but its… Read more How To Find The Source Of Increasing Memory Usage Of A Twisted Server?

Pyplot Savefig Memory Leak - Alternative?

Is there an alternative to pyplot to plot some graphs in python? I'm having some memory leaks w… Read more Pyplot Savefig Memory Leak - Alternative?

Tensorflow Memory Leak When Building Graph In A Loop

I noticed this when my grid search for selecting hyper-parameters of a Tensorflow (version 1.12.0) … Read more Tensorflow Memory Leak When Building Graph In A Loop

How To Deallocate A Typed Numpy Array? Is Setting Callback_free_data A Viable Option?

While using an open source Cython library I found a memory leak. The leak seems to come from a type… Read more How To Deallocate A Typed Numpy Array? Is Setting Callback_free_data A Viable Option?

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 When Using Strings < 128kb In Python?

Original title: Memory leak opening files Solution 1: You might simply hit the default behaviour o… Read more Memory Leak When Using Strings < 128kb In Python?