Re: [pypy-dev] PyPy & Django: recommended mySQL module?

2016-05-09 Thread Andrews Medina
I started this project (mysql-cffi) but unfortunately not had enough time to continue it. :( I believe that the better way is to use the pure python client. On Mon, May 9, 2016 at 7:04 AM, Phyo Arkar wrote: > try pymysql ?purepython mysql client

Re: [pypy-dev] PyPy & Django: recommended mySQL module?

2016-05-09 Thread Phyo Arkar
try pymysql ?purepython mysql client https://github.com/PyMySQL/PyMySQL it works much faster than mysqlpython back when i used mysql. On Mon, May 9, 2016 at 4:23 PM Maciej Fijalkowski wrote: > On Sun, May 8, 2016 at 1:31 PM, Yury V. Zaytsev wrote: > > On

Re: [pypy-dev] PyPy & Django: recommended mySQL module?

2016-05-09 Thread Maciej Fijalkowski
On Sun, May 8, 2016 at 1:31 PM, Yury V. Zaytsev wrote: > On Sun, 8 May 2016, Maciej Fijalkowski wrote: > >> For the record - if you are using django ORM, then the mysql binding >> is unlikely to be your bottleneck for accessing the DB. > > > Yep, that's what I'm using it for...

Re: [pypy-dev] PyPy & Django: recommended mySQL module?

2016-05-09 Thread Omer Katz
Postgres has better support for PyPy through https://github.com/chtd/psycopg2cffi and you can integrate it with Django easily. If you don't have to use MySQL maybe it's a good idea to use Postgres instead. Depending on what you need, you'll get much better performance and versatility with