vote up 3 vote down star
3

My Django project is going to be backed by a large database with several hundred thousand entries, and will need to support searching (I'll probably end up using djangosearch or a similar project.)

Which database backend is best suited to my project and why? Can you recommend any good resources for further reading?

flag

75% accept rate

5 Answers

vote up 6 vote down check

As someone who recently switched a project from MySQL to Postgresql I don't regret the switch.

The main difference, from a Django point of view, is more rigorous constraint checking in Postgresql, which is a good thing, and also it's a bit more tedious to do manual schema changes (aka migrations).

There are probably 6 or so Django database migration applications out there and at least one doesn't support Postgresql. I don't consider this a disadvantage though because you can use one of the others or do them manually (which is what I prefer atm).

Full text search might be better supported for MySQL. MySQL has built-in full text search supported from within Django but it's pretty useless (no word stemming, phrase searching, etc.). I've used django-sphinx as a better option for full text searching in MySQL.

Full text searching is built-in with Postgresql 8.3 (earlier versions need TSearch module). Here's a good instructional blog post: Full-text searching in Django with PostgreSQL and tsearch2

link|flag
vote up 1 vote down

Please go through

http://articles.techrepublic.com.com/5100-10878_11-1050671.html

and decide

Some more articles for recent one http://www.wikivs.com/wiki/MySQL_vs_PostgreSQL

http://www.databasejournal.com/features/mysql/article.php/3288951/PostgreSQL-vs-MySQL-Which-is-better.htm

http://versus.bix.yahoo.com/vs/MySQL-vs-PostgreSQL

link|flag
the information in that link is 6 years old and a lot of it is outdated – tliff Feb 25 at 10:58
@tiff: added recent sites – lakshmanaraj Feb 25 at 11:20
vote up 3 vote down

Go with whichever you're more familiar with. MySQL vs PostgreSQL is an endless war. Both of them are excellent database engines and both are being used by major sites. It really doesn't matter in practice.

link|flag
vote up 10 vote down

large database with several hundred thousand entries,

This is not large database, it's very small one.

I'd choose PostgreSQL, because it has a lot more features. Most significant it this case: in PostgreSQL you can use Python as procedural language.

link|flag
vote up -1 vote down

Will this application be hosted on your own servers or by a hosting company? Make sure that if you are using a hosting company, they support the database of choice.

link|flag

Your Answer

Get an OpenID
or

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