How exactly does a python (django) request happen? does it have to reparse all the codebase?
Posted
by Blankman
on Stack Overflow
See other posts from Stack Overflow
or by Blankman
Published on 2010-06-10T21:32:13Z
Indexed on
2010/06/11
14:23 UTC
Read the original article
Hit count: 252
With a scripting language like python (or php), things are not compiled down to bytecode like in .net or java.
So does this mean that on every request, it has to go through the entire application and parse/compile it? Or at least all the code required for the given call stack?
© Stack Overflow or respective owner