[Answer]-Memory consumption grows

1👍

Thanks to DanielRoseman, I just needed to set DEBUG=False.
Here’s what Django documentation says about it:

It is also important to remember that when running with DEBUG turned
on, Django will remember every SQL query it executes. This is useful
when you’re debugging, but it’ll rapidly consume memory on a
production server.

Leave a comment