Agreed. We're using the web.py built in server for a pretty robust multiuser application and so far have had no problems. Some pages perform as many as 10 ajax requests to populate the page.
On Wed, Oct 10, 2012 at 8:32 AM, Alec Taylor <[email protected]> wrote: > Wow! > > With that little use you'll be fine with web.py's server, or even > http://docs.python.org/library/basehttpserver.html > > On Wed, Oct 10, 2012 at 12:53 AM, Dan Shechter <[email protected]> wrote: > > On average 1 RESTful transaction per minute. > > > > The maximal transaction will send 400K bytes. On average I expect to send > > about 100K of data per transaction. > > > > > > > > > > On Tuesday, October 9, 2012 1:48:14 PM UTC+2, Dan Shechter wrote: > >> > >> Hi All, > >> > >> I have a network appliance I am developing which has CLI written in > python > >> (cmd). > >> > >> I want to add a web interface. > >> > >> I plan to use ajax only, which means that the browser will get static > >> pages and use ajax (via RESTful web service over SSL) to retrieve data > to > >> populate the pages. > >> > >> But not only users will use the web service, I expect any other > >> application to use it to retrieve data using RESTful web services over > SSL. > >> > >> Here is my question: > >> > >> Since _very_ few users will be using the web UI, I don't expect much > load. > >> Do I need to bother to use a real web server or can I just use the > built in > >> web server which is used for development? > >> > >> Thanks, Dan > > > > -- > > You received this message because you are subscribed to the Google Groups > > "web.py" group. > > To view this discussion on the web visit > > https://groups.google.com/d/msg/webpy/-/abBRfxvZ2ZwJ. > > > > To post to this group, send email to [email protected]. > > To unsubscribe from this group, send email to > > [email protected]. > > For more options, visit this group at > > http://groups.google.com/group/webpy?hl=en. > > -- > You received this message because you are subscribed to the Google Groups > "web.py" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/webpy?hl=en. > > -- You received this message because you are subscribed to the Google Groups "web.py" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/webpy?hl=en.
