Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Which database is more suitable for a limited VPS: MySQL or PostgreSQL ?

I am developing a small hobby project which I plan to host in a limited XEN based VPS. At work we use PostgreSQL but we also use dedicated servers for DB and our hardware are very good. I've never had an extensive experience with MySQL but wouldn't it be more suitable in case of limited CPU and memory resources ?

share|improve this question

7 Answers

According this but vague but applicable benchmark comparison, PostgreSQL is the clear winner, both feature- and performance-wise.

Here's another benchmarK that shows similar results.

share|improve this answer

My suggestion would be to go with PostgreSQL. We use it for our production database, it's free, it has pretty darn good documentation, and it's been around for a long time so it's stable. It does not use very many resources either.

share|improve this answer

SQLite is also a lot better than most people give it credit for, if you don't want to go as far as installing Postgre/MySQL.

Unless you're getting a huge amount of traffic, it'll probably do the job for your site just fine.

share|improve this answer
SQLite can handle storing terabytes of data. It's far from being a flat-file database. In fact, it's the most used database in the world. Though applications that do many writes will find it to be slower than MySQL or PostgreSQL. – Xeoncross Sep 23 '10 at 14:30

The reason many people think Postgre is better than MySQL is because it really is better out of the box. I'm not saying it's not good (I've never even tried it) but out of the box Postgre beats vs out of the box MySQL. Properly tweaked, however, MySQL has very good and comparable performance. Here is an example of a low-memory configuration for MySQL, suitable for a vps (this is from an actual vps site).

MySQL also has a much larger community backing it, so down the road when you need to tweak your server and scale out it's easier to find help. There are also really good books on how to optimize, tweak, and configure MySQL.

share|improve this answer

PostgreSQL, definitely. It's not hard on resources, the bare minimum is already fine. MySQL has just too many strange behaviours, just too time consuming to develop, test and debug.

share|improve this answer

I run MySQL on a Xen VPS. The site I run doesn't get much traffic but it runs fine. You can tweak it a bit to use less memory by modifying the settings in the my.cnf file. One setting for example would be the query_cache_size.

I guess it all depends on how much traffic your site gets...

share|improve this answer

"limited CPU and memory resources ?"

Firebird is good for this too http://www.firebirdsql.org

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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