You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently our asynchronous support is simply wrapping a database call with Future(...) and a little bit more niceness, but it isn't truly non-blocking, a thread is still running because JDBC is built around blocking calls. However, we could introduce an extension to ScalaRelational that support true non-blocking database requests with a project like this: https://github.com/mauricio/postgresql-async
That project only supports PostgreSQL and MySQL, but we might be able to introduce support for others in the future.
The text was updated successfully, but these errors were encountered:
Currently our asynchronous support is simply wrapping a database call with
Future(...)
and a little bit more niceness, but it isn't truly non-blocking, a thread is still running because JDBC is built around blocking calls. However, we could introduce an extension to ScalaRelational that support true non-blocking database requests with a project like this: https://github.com/mauricio/postgresql-asyncThat project only supports PostgreSQL and MySQL, but we might be able to introduce support for others in the future.
The text was updated successfully, but these errors were encountered: