Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How Much Traffic Can Shared Web Hosting Take? [closed]

I have a cheap shared hosting plan with Reliablesite.net ($5/month).

I've been making a small site I want to start promoting in a few weeks and I was going to roadtest it by hosting it with the shared plan I already have.

My issue is that I don't know at what point I should move onto clustered hosting / dedicated hosting.

Questions

  • What pageviews / day can a shared hosting plan be expected to handle?
  • What can standard shared database servers take without choking up or me getting rude emails from my hosting provider?
like image 859
Matthew Rathbone Avatar asked Mar 26 '09 10:03

Matthew Rathbone


2 Answers

In my experience, shared hosting environment like Reliablesite.com can take around 10-20 000 unique users per day, or 100-200 000 pageviews/day. That number can vary, depending on your site. For optimization, It is important to reduce number of db queries (i keep it max 6-7 per page render), and be careful when programming. Using ASP.NET MVC gave nice perf improvement for me, but good written webforms app can perform well also. If you are using some other tech stack, like PHP/MySQL, i don't know the numbers.
When you exceed those numbers, you will have enough money from google adsense to go with VPS or dedicated plan.

Just to add something regarding page render / db queries performance: using multiple resultset sproc or query is great way to reduce number of db requests!

like image 199
Hrvoje Hudo Avatar answered Oct 06 '22 23:10

Hrvoje Hudo


Traffic usually is not a problem on shared hosting. The only problem you may encounter is RAM and CPU restrictions. But if your application written correctly it could operate well with these limitations.

Hints:

  • user memory profiler to debug and optimize your web application
  • use CDN for storing media files

If you need some numbers, a properly written web application which use CDN for storing media files could handle at least 10k unique visitors per day on a shared hosting.

like image 43
Konstantin Tarkus Avatar answered Oct 06 '22 23:10

Konstantin Tarkus