Is asynchronous jdbc call possible?
I don’t understand how any of the proposed approaches that wrap JDBC calls in Actors, executors or anything else can help here – can someone clarify. Surely the basic problem is that the JDBC operations block on socket IO. When it does this it blocks the Thread its running on – end of story. Whatever … Read more