Slowdown in Jython
tac-tics
tactics40 at gmail.com
Fri Dec 29 10:25:09 EST 2006
More information about the Python-list mailing list
Fri Dec 29 10:25:09 EST 2006
- Previous message (by thread): Slowdown in Jython
- Next message (by thread): per interpreter storage for C extensions
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
> Jython is a Java application That was the intellectual leap I needed to solve the problem. I forgot that I have total access to Java memory management. It turns out at the point of slowdown, Java was continually running full GC, causing the awful loss of performance. I figured out that I was not releasing a very large chunk of memory right before the script, so I effectively had a duplicate of every record in memory. I'm still not sure why my memory usage is increasing during the script, but with the removal of the duplicates in memory, it runs just fine now. Problem solved for now.
- Previous message (by thread): Slowdown in Jython
- Next message (by thread): per interpreter storage for C extensions
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list