Thanks for your questions. Please find some answers below. I am sure
other users will have something to add.

On Sep 13, 8:02 pm, mengu <[email protected]> wrote:
> hello everyone,
>
> i have recently discovered this framework after django and rails and i
> have to pick one of those in order to start coding my projects and i
> have some questions for web2py.
>
> 1) is there any benchmark tests for web2py? is web2py able to handle
> thousands of requests per second? is there any live example?

You a find some benchmarks here. http://www.web2py.com/AlterEgo/default/show/248
In general benchmarks depend on a lot of parameters. Normally the
bottle neck is database access, not the web server or the framework.
My experience is that web2py is much faster than Rails and comparable
to Django.

Web2py is not very different from Django or Rails in terms of
scalability. You normally let a web server like Apache handle static
requests (and that goes around ~1000 requests/second) and send
requests for dynamic pages to web2py (and the timing depends by how
many db queries, size of the queries, etc etc.). You scale by adding
multiple servers behind a load balancers.

I am sure other users have more to add to this point.

> 2) which is the best way to deploy web2py? please provide a document
> that is explaining how to deploy web2py with that method.

Apache+mod_wsgi. It is the book, in chapter 11. You can download that
chapter from
http://web2py.com/examples/static/web2py_manual_cut.pdf

> 3) why there is no well-organized documentation?

I cannot answer why since the assumption of the question is false
since the new documentation has been relased:
http://web2py.com/examples/default/docs

> 4) what are the main things that web2py needs to be better?

Reach out poorly informed users.

> 5) how to set routes.py for an url like "/blog/post/view/5" or "/blog/
> post/blog-post-title/"?

web2py is not Django. Routes are not required for function but are
purely cosmetic. You do not need routes for allowing your controllers
to receive parameters from the url like 5 pr blog_post_title. You can
use routes to must a URL format A into a URL format B. You are telling
me what format A is but I do not know what format B is without an
application.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web2py-users" 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/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to