I am using Django to read an ajax uploaded file to store it in a model. The upload request contains the raw uploaded image data.
def my_view(request):
upload = request
model_instance.image_field.save(uniquename, ContentFile(upload.read()))
If it matters, I am using AmazonS3 as my storage backend for uploaded files.
Somewhere in the function that contains this code, I have a memory leak.
Do I need to call upload.close() after doing this, to free resources/memory?
Or is my memory problem coming from some other issue, elsewhere in this function?