Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 mod_wsgi 模块中处理请求后,我想在没有模块的情况下继续请求。怎么做 ?
def 应用程序(环境,startResponse):
// 做一些处理
然后继续请求
如果您的意思是要在发送响应后执行某些任务,请参阅:
在进程中执行此类任务可能会出现问题。您最好将详细信息提交到单独的任务系统(例如 Celery、Redis Queue 或 Gearman)中并让它处理。这样,请求处理程序线程被释放以处理其他请求,并且就处理 HTTP 请求而言,您不会降低 WSGI 服务器的容量。
如果这不是您要问的,您需要更好地解释它,因为您的描述有点令人困惑。