Pls read no further if you're squeamish or pious about django!...
It turns out one of the several reasons you shouldn't use django "runserver" development server in production is it's horrible with memory, storing everything it sends or receives indefinitely. Other than that though it works just fine for what my client needs. Seemingly when I change a file and runserver automatically restarts all that memory is freed. So is there an easy way for me to replicate that functionality within the app's code or can I trigger it somehow? A somehow that's less awful than appending a CRLF to a file that it's watching ;) Sorry for even mentioning that Django puritans! BTW dev platform is linux64, deployment is Win64.