Closed mgrazianoc closed 8 months ago
Did you manage to fix this issue @mgrazianoc ? Wonder if this is related. https://github.com/marcboeker/go-duckdb/pull/61
Tbh, I've gave up using a connection pool, and just locked the single connection behind a private Arc Mutex. Not ideal, but is working for the small cases rn
My version:
I have the following setup for creating a connection pool with r2d2 feature crate:
It is supposed to be singleton, where once created, would live the whole application lifetime, offering connections from the pool. I'm having some issues, though.
Is there something I'm seeing?