Changes between Version 11 and Version 12 of PsycoMiddleware


Ignore:
Timestamp:
Mar 15, 2007, 9:04:15 PM (17 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PsycoMiddleware

    v11 v12  
    7777}}}
    7878See http://psyco.sourceforge.net/psycoguide/tutknownbugs.html#tutknownbugs for `cannotcompile()`.
     79
     80Note about memory consumption:
     81You 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
     85psyco.profile(memory=2048) # roughly limit memory consumption to 2048Kb
     86}}}
     87
     88See http://psyco.sourceforge.net/psycoguide/node14.html for more information
Back to Top