I use StreamingHttpResponse
in django
framework. I want to save some records in database after response finished and connection closed. What should I do?
class foo(View):
def get(self, request):
response = StreamingHttpResponse(self._load_stream(request))
return response
def _load_stream(self, request):
yield('<html><body></body></html>')
time.sleep(5000)
# close the connection and then save something to database