Django upload data into memory

441 Views Asked by At

Is it possible in Django to load data into the Memory, process it and return it to the User?

Example: User uploads image -> Python Script process it (e.g. make it s/w) -> User sees processed Image on same Webpage

(Other Examples would be all these "convert-online" sites like pdf2doc.com)

Is it a bad idea to load it into the Memory?

Would a Queue and saving it on a CDN be a better solution?

I'm trying to understand the possibilities of handling files from the User, which don't need to be safed. I appreciate any further ideas/considerations.

0

There are 0 best solutions below