Since APE is non-blocking, event driven performance will be similar to other event loop based servers, such as node.js, nginx, etc.
Actual performance depends upon your specific application. You should do load testing with either scripts or using something like ab. If you need to scale APE, a technique I've used has been to use nginx as a load balancer and send the traffic to one or more APE processes, setting processor affinity on each of the processes. That way you can use multiple processors/cores effectively. You can also scale via sharding clients across multiple physical instances, although in both cases you will need to manage communication between those instances (APE currently has no support for APE to APE communication). Johnathan On Oct 23, 2010, at 4:05 PM, kecocola <[email protected]> wrote: > How many users can APE support a the same time? Is there a test ? > > -- > You received this message because you are subscribed to the Google > Groups "APE Project" 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/ape-project?hl=en > --- > APE Project (Ajax Push Engine) > Official website : http://www.ape-project.org/ > Git Hub : http://github.com/APE-Project/ -- You received this message because you are subscribed to the Google Groups "APE Project" 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/ape-project?hl=en --- APE Project (Ajax Push Engine) Official website : http://www.ape-project.org/ Git Hub : http://github.com/APE-Project/
