battletoad
Expert Member
- Joined
- Mar 10, 2009
- Messages
- 1,461
- Reaction score
- 52
I am testing out a system for polling. Someone sets up a poll, people on cellphones can vote.
There will be roundabout 3 randomly timed polls within an hour. So I'm thinking I'll have the cellphone users query the server every 10seconds with an ajax .post() request. Atm the system works fine with 10 testers (the pollster has a graphic of the results sent their way), but ultimately there will be an average of 70 volunteers in said hour, about 500 max.
Which performance issues should I expect my web server to suffer from?
On a side note, I had a look at web sockets. Seems perfect for my application. Unfortunately Android does not support the protocol in its default browser (nor Opera Mini, but that's expected). BB and Apple does however, so I will be implementing it soon enough with fallback for the unsupported mobile browsers.
There will be roundabout 3 randomly timed polls within an hour. So I'm thinking I'll have the cellphone users query the server every 10seconds with an ajax .post() request. Atm the system works fine with 10 testers (the pollster has a graphic of the results sent their way), but ultimately there will be an average of 70 volunteers in said hour, about 500 max.
Which performance issues should I expect my web server to suffer from?
On a side note, I had a look at web sockets. Seems perfect for my application. Unfortunately Android does not support the protocol in its default browser (nor Opera Mini, but that's expected). BB and Apple does however, so I will be implementing it soon enough with fallback for the unsupported mobile browsers.