I built an infinite drawing app (similar to webcanvas) with django.
I made another small python app able to render areas of the canvas with cefpython.
My goal is to have background tasks on my server to render areas on the canvas which need to be updated (I would like to avoid slowing down my django server):
- the main django app would add a render task to a queue whenever users are modifying the canvas,
- the rendering app would use this queue and render the areas in a background thread.
What is the simplest way to do this?