Hi ALL:

We have a new django powered project which have a potential heavy-traffic
characteristic(means a heavy db interaction). So we need to consider the
database scalability in advance. With some researches, the following
questions are still not clear to us:

   1. coarse-grained: how to specify one db table(a django model) to a
   specific db(maybe in another server)?
   2. fine-grained: how to specify a group of table rows to a specific
   db(so-called sharding, also can in another db server)?
   3. how to specify write and read to different db?(which will be helpful
   for future mysql master/slave replication)

We are finding the solution with:

   1. be transparent to application program(means we don't need to have
   additional codes in views.py)
   2. should be in ORM level(means only needs to specify in models.py)
   3. compatible with the current(or future) django release(to keep a
   minimal change for future's upgrading of django)

I'm still doing the research. And will share in this thread later if I've
got some fruits.

Hope anyone with the experience can answer. Thanks.
--
Tower Joo 朱涛

>>> import this

--~--~---------~--~----~------------~-------~--~----~
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