How do web servers like apache do things asynchronously? Does django have relative logic too? -
i learn being asynchronous when write code twisted, wonder how common web servers process thing asynchronously. case of below: apache client request a, , there maybe operations block main process. if apache doesn't tricks here, @ time client b send request , , client b no response. right? guess, every client request processed in dependent process/thread?
and django web framework, question whether django has logic "not blocking", or work handled totally web servers.
there no tricks here, really. apache spins multiple processes and/or threads (depending on how configured), , request routed next available one.
the logic exclusively in web server.
Comments
Post a Comment