I'm positive I'm getting al this wrong, but here's my question:
I need a connection pool to mongo which I create like so:
mongo::ScopedDbConnection connectionPool("localhost");
Then on each thread, I do:
mongo::DBClientConnection c(connectionPool.get()); <-- is this even right?
Next I need to run
c.runCommand()
and give the connection back:
connectionPool.done();
Am I doing this correctly?
Thanks all for your help!
I got it works like this:
Thanks all for your help!
Regards,