How many concurrent users can FoxWeb support?
It is a mistake to measure load on the server in terms of concurrent users. Unlike other protocols, HTTP, the protocol that carries Web traffic does not keep a live connection between a web-based application and its users. Users are not “logged in”, but rather initiate a connection when they click on a hyper-link. The connection is broken once the request is served. The whole process typically takes a fraction of a second. A more appropriate measure of a server’s load is requests per hour. A well-written FoxWeb application running on a mid-range server should be able to handle at least 10 requests per second. Assuming a constant load, this number translates to almost 40,000 hits per hour. A high-end server can handle much more (FoxWeb has been tested with a sustained load of 200,000 hits per hour).