close connection in `StreamingHttpResponse` and do something after that

361 Views Asked by At

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
        
0

There are 0 best solutions below