Subject RE: [firebird-support] max connection from one client to the server
Author Alan McDonald
> Hello,
>
> if only one client (a web server) have more than 500 connections to the
> server is it ok ? or their is some system limit somewhere ?
>
> thanks by advance
> stephane
>

webserver? these connections are normally pooled by the driver. You may have
500 users on a website, but this may only be resulting in very few
simultaneous connections. Remember that pages are deliverved in the context
of a connection, once delivered the connection is surrendered to the driver.
To get 500 simultaneous connections you would need something like 5,000
simultaneous users of the website. They just do not all hit links at the
same millisecond.
Alan