我想在处理用户请求后退出uWSGI进程时访问工作人员详细信息。 Gunicorn具有为此功能,可在退出时自动调用(请参见下文)。
以下正是我想要的,但只适用于uwsgi。
来自gunicorn文档(http://docs.gunicorn.org/en/stable/settings.html):
child_exit
def child_exit(server, worker):
pass
//Called just after a worker has been exited, in the master process.
所以我的问题是,当进程退出时如何获得uWSGI的等效功能?我已经阅读了文档并在周围搜索了几个小时,但找不到一个简单的解决方案。除了用gunicorn替换uWSGI之外还有其他想法吗?