Reputation: 151
I have a question regarding processing tiles. I have tiles with the size of 500m. The Client is sending request to the webserver (web.py) to get these tiles. Of course if I decrease the tile size (e. g. 200m) then the performance of the tile is faster (because of lower size).
The client can send any requests to the webserver. My question is how many requests can handle web.py?
Upvotes: 1
Views: 792
Reputation: 12465
The default web.py web server only handles maximum 10 concurrent requests which is not for production use. You can edit the web.py source code and change this which is NOT recommended. Refer this.
For production use you have to use FastCGI with lighttpd.
web.py documentation says,
FastCGI with lighttpd is the recommended way of using web.py in production. reddit.com handles millions of hits this way.
Refer this.
Upvotes: 1