I just wonder whether I start with PostgreSQL
or sqlite3
when starting Django
project.
I usually start with sqlite3
, which is a default database, and change it into PostgreSQL
at the time to deploy.
I use TDD
and heard that it is much faster when use PostgreSQL
as a database.
Is it right? If so, do I have to use PostgreSQL
from the start?
Need some advices. Thanks