It might shut itself down due to too much load. In my experience, I find you can surpass the maximum load by 2 or even 3 times with no problem. But any more than that, and it will just shut down.
Fortunately for me I'm already using AWS. The trick is getting an understanding of the load limitations of the instance types and where the application will keel over and die.
Generally speaking, for blog-type content that's typically served to HN, it's best to ensure that each visit doesn't equate to a db query (either via a caching mechanism, or by using a blogging platform that's not db based)..
7 comments
[ 3.3 ms ] story [ 34.4 ms ] threadGenerally speaking, for blog-type content that's typically served to HN, it's best to ensure that each visit doesn't equate to a db query (either via a caching mechanism, or by using a blogging platform that's not db based)..