Does anyone know of any Async JDBC-esque DataSourc...
# coroutines
b
Does anyone know of any Async JDBC-esque DataSource implementations that aren’t just delegating to a separate thread to block on?
c
I have not looked into this ever myself, but I remember hearing about this… https://github.com/oracle/oracle-db-examples/tree/master/java/AoJ
w
They don't exist afaik, I believe it has to do with how DB connections work.
m
There is work on a spec for async jdbc but it’s still early
b
@withoutclass with how DB connections work with JDBC or in general? TCP traffic is still TCP traffic whether going to a database or whatever, so it should be able to behave async like any other network client (limited by the lack of implementations/standardization on the JVM to do so)
w
JDBC I believe
👍 1
s
Any non-JDBC-based async database libraries so far?