On Wed, Oct 26, 2011 at 3:38 PM, Gabriela <gabrielapitt...@gmail.com> wrote:
> Thanks Tom,
>
> so Django dont allow to make replication?
>

Django is a web application framework, database replication is
orthogonal to that.

My current setup has a multi data centre, multi master replication,
with a couple of read slaves in each data centre, but the only thing
Django has to do with it is decide which database server to use,
everything else is taken care of by the database software (MySQL).

The only time you need 3rd party software DB replication is when you
want either heterogeneous replication (eg, MySQL replicating from
Oracle), or your DB software's own replication mechanisms are fragile.

Docs on replication for MySQL and Postgres:

http://dev.mysql.com/doc/refman/5.5/en/replication.html
http://www.postgresql.org/docs/9.1/static/high-availability.html

Cheers

Tom

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to