[Fixed]-Django with PyPy

24👍

Unlikely. A Django application is almost always I/O-bound, usually because of the database connection. PyPy wouldn’t help with that at all, even if it was purely compatible (which I’m not sure it is).

10👍

Depends.

PyPy does improve performance for all benchmarks that are in the PyPy’s benchmark suite. This is only template rendering for now, but noone submitted anything else. It’s however safe to assume that performance critical code will be faster (especially after some tuning).

Compatibility-wise databases are a bit of an issue, because only sqlite is working and it’s slow (there is a branch to fix it though). People also reported pg8000 working with sqlalchemy for example, but I don’t have a first-hand experience.

Cheers,
fijal

👤fijal

6👍

I have done some experimentation with PyPy + Django. There are two main issues:

  • Most database adaptors and other third-party modules cannot be compiled with PyPy (even when the wiki says they can).

  • One server I thought might benefit from JIT compilation because it did a fancy calculation in some requests had an increasing memory footprint, perhaps because the JIT was storing traces that turned out to be unique to each request so were never reused?

Theoretically PyPy might be a win if your server is doing interesting calculations, uses pure-python modules, and has large numbers of objects in-memory (because PyPy can reduce the memory used per-object in some circumstances). Otherwise the higher memory requirements of the JIT will be an impediment because it reduces opportunities for in-memory caching and may require extra servers to run enough server processes.

👤pdc

Leave a comment