In most web (PHP) apps, there is mysql_connect and some DB actions which means that if 1000 users is connected, 1000 connections are opened? But with C++ app it is incredibly slow...what is the main difference? Thanks

link|improve this question
I don't know for sure, but are you sure that the PHP API is not pooling connections? – spender Jul 8 '10 at 9:29
I am not, that is why I am asking :) – Bornemix Jul 8 '10 at 9:31
PHP app opens connection for a part of second and then closes it, C++ apps tend to keep connection for much longer. – Naktibalda Jul 8 '10 at 9:31
1  
@Naktibalda: Without knowing which C++ API is being used, your claims about C++ are flawed. – spender Jul 8 '10 at 9:35
Are the php app and c++ app both running locally? Or, is one/both of them accessing data across the network? – Don Dickinson Jul 8 '10 at 12:39
feedback

1 Answer

PHP will automatically close the DB connections when the script terminates (unless you use persistent connections or have closed the connection yourself before the script terminates of course). In your C++ app, this will depend on how you actually handle connections. But I can imagine you will want to keep your connections open for a longer stretch of time in the C++ app, and thus you could hit the maximum number of concurrent users sooner.

You could also tweak some of the MySQL settings if you have performance issues.

But how are you accessing MySQL from your C++ app? Not using ODBC are you?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.