Need a ConnectedClient object to access any database the user can, faster.
Hello,
Why do you ask for username and password everytime we try to connect to a different database (db = client.db('test', username='jane', password='foo')). Would it be possible to get a ConnectedClient object that allows access to all databases the user has access to without reauthenticating ?
I am developing an App that uses different databases for every account. Therefore, the API needs to generate connections upon each request using python-arango implementation, which takes <> 800 ms everytime.
Thank you for your advice.
Hey @aqc-eligny,
Could you try again with db = client.db(..., verify=False) and let me know if that makes a difference (I believe it should)?
Closing due to inactivity. @aqc-eligny Please feel free to reopen if you still have issues.