1

I have a corporate website with django-cms and with a SQLite database that has only a few updates per month. The majority are reads. It will be less than 5000k requests per day.

My deployment is in a Cpanel server with apache and wsgi. I need to know first if I should be worried about the usage of SQLite and if PostgreSQL in this situation will be faster and less resources consumption (because it is already installed and running on server).

This site use a 11MB SQLite file. Is this file in memory?

4

1 回答 1

0

SQLite will be faster than PostgreSQL except in cases of high contention. If you only update a few times per month, then SQLite will amost certainly be faster than PostgreSQL.

You may still choose to use PostgreSQL for other reasons (i.e. if you need network access to your data), but probably not for performance reasons.

于 2012-07-08T20:11:27.453 回答