Reputation: 11
I am planning to make an e-commerce website but I am searching now the possible issues before doing it. For example, once I deployed my site in the hosting server and the number of costumers will have access to the site is about 300k per day. My question is:
Any help is much appreciated.
Upvotes: 1
Views: 622
Reputation: 157
Upvotes: 1
Reputation: 435
Yes, if number of users accessing the server exceed the bandwith it will go down due heavy traffic.
First of all best solution to this is building a horizontal scalable model which means if you encounter this kind of "bottleneck" issues, you can upgrade the hardware or add more servers.
There are plenty ways to prevent this to happening, away from upgrading hardware you may consider reducing DB queries too, there are lot of factors that effects overloading.
Upvotes: 0