[Answered ]-Shared memory in web application

2👍

This post is partially close to what you want (excluding the java part and the later update on the post). The summary of the answer is that django is a muti-process environment, and thus sharing objects across sessions is not feasible. One option is to use the database for storing such shared objects.

👤A. B

Leave a comment