We just implemented a feature in which our users can upload photos. We are updating what the user has uploaded in thumbnail and screen size of 800x600.
The problem we are facing is that this operation seems to take up a lot of memory on our server. We use Django-imagekit for this and there appear to be documented problems with excessive memory usage .
We run django on the Heroku server. In case of these factors, we use postgresql to search for data and search elastics for search.
- Is there a better library we should use for this?
- Or is there a completely different strategy for processing user photos on a server that we should consider?
Many thanks!
source
share