Changes between Version 11 and Version 12 of PsycoMiddleware
- Timestamp:
- Mar 15, 2007, 9:04:15 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PsycoMiddleware
v11 v12 77 77 }}} 78 78 See http://psyco.sourceforge.net/psycoguide/tutknownbugs.html#tutknownbugs for `cannotcompile()`. 79 80 Note about memory consumption: 81 You can limit the memory that psyco takes to compile code. This can be help full on limited memory systems in conjunction with mod_python apache prefork. 82 {{{ 83 #!python 84 85 psyco.profile(memory=2048) # roughly limit memory consumption to 2048Kb 86 }}} 87 88 See http://psyco.sourceforge.net/psycoguide/node14.html for more information