We really like Psyco to speed things up, but it also has some drawbacks:
- it consumes too much memory
- it can also slow some code down
- compiling your code can take too much time
- it doesn’t support 64-bit systems
What would be good alternatives (Django support required)?
You could try using PyPy, which is an implementation of Python in Python. It is a replacement for the standard CPython implementation and boasts large speed increases.
From its website: