[Fixed]-Severe memory leak with Django

1👍

After a day of search I found my answer.

While investigating I checked statistics on my DB and saw that some table was 800Mo big but had only 900 rows. This table contains a Textfield without max len. Somehow one text field got a huge amount of data inserted into and this line was slowing everything down on every pages using this model.

Leave a comment