Yasser Ahmed Hosny <[EMAIL PROTECTED]> wrote: > We expect to have around 80 to 100 calls per second for the whole > setup, so that's why we've come up with these numbers of DB > connections below.
You need 100 SQL connections ONLY if each SQL query takes one entire second to process. That's just not true. Each SQL query probably takes ~1/10 of a second, at which point you only need 10 SQL connections to handle 100 request per second. Drop the number of connections to something reasonable, like 20, and you will have NO problems. Alan DeKok. - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
