cvv
cvv

Reputation: 1

View with data from many databases

I'm building site in django, which lists items of many suppliers. Each supplier has own big database and make changes quite often. I have to be aware of all changes in no more than 60 minutes. There are about 10m items to display. How to implement all that in a efficient way?

Upvotes: 0

Views: 93

Answers (1)

Nikita Hismatov
Nikita Hismatov

Reputation: 1656

It seems to me that your application has a pretty ugly architecture. Try to refactor it or you will have troubles.

Anyway, you can try to cache your suppliers' data to your own database (single) and save some resources.

Upvotes: 1

Related Questions