I'm interested in running Django on an async framework like Concurrence or gevent. Both frameworks come with its own async MySQL driver.

Problem is Django only officially supports MySQLdb. What do I need to do to make Django work with the MySQL drivers that come with gevent or Concurrence?

Is there a step-by-step guide somewhere that I can follow? Is this a major undertaking?

Thanks.

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

three cheers for @traviscline's suggestion to go with pymysql. his suggestion was based on this post from mozilla. all it takes is a simple patch to your manage.py file

#!/usr/bin/env python
+try:
+    import pymysql
+    pymysql.install_as_MySQLdb()
+except ImportError:
+    pass 

changing the import in your settings file, and monkeypatch() since pymysql is a pure python driver.

travis mentioned that he tests for compatability by changing the imports and running the unittests for pymysql, mysqldb, and myconnpy.

note that there are already examples of finer details to watch out for - but overall this is an elegant, maintainable solution. i will update when i get this running in production!

link|improve this answer
feedback

Assuming the API of gevent-mysql matches MySQLdb a very simple custom database backend would be trivial to write and use. I know others would be interested so please share if/when you make this. People in #gevent on freenode would help with details I bet.

link|improve this answer
github.com/petehunt/PyMySQL is a pure-python MySQLdb api compatible client library, Mozilla is using it with gevent for the Firefox Sync server. You could either write a small custom db engine (as I reccomend above) or simply use this method: github.com/petehunt/PyMySQL/blob/master/pymysql/… to patch PyMySQL in. – tmc Aug 23 '11 at 19:35
feedback

Django is synchronous framework that is (AFAIK) not even proved to be thread-safe. I'm afraid making it work in async way will be difficult, if not impossible.

Anyway, I'd say you can "fork" mysql backend and alter it to use async drivers. This is easy, but as said above - I'm afraid it will definitely not work "out of box".

link|improve this answer
I'm not sure this is correct. See quora.com/Does-Django-have-any-thread-safety-issues – tmc Aug 16 '11 at 16:04
@tmc -- interesting, thanks. I thought I heard Jacob itself on some conference speaking about threading we-are-not-so-sure issues. – Almad Aug 23 '11 at 13:06
1  
update: default behavior is threaded, but gevent has great details on their website explaining how to make django "green" (running "async") – egbutter Aug 23 '11 at 19:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.