I wonder if there is a way to make asynchronous call to a database?
For instance, imagine that I've a big request that take a very long time to process, I want to send the request and receive a notification when the request will return a value (by passing a Listener/callback or something). I don't want to block waiting for the database to answer.
I don't consider that using a pool of threads is a solution because it doesn't scale, in the case of heavy concurrent requests this will spawn a very large number of threads.
We are facing this kind of problem with network server and we have found solutions by using select/poll/epoll system call to avoid having one thread per connection. I'm just wondering how to have a similar feature with database request?
Update:
I'm aware that using a FixedThreadPool may be a good work-around, but I'm surprised that nobody have developed a system really asynchronous (without the usage of extra thread).
Update 2 (December 2010):
AFAIK, there is no solution for doing real asynchronous jdbc call, the best work-around is to wrap the call with something like an Actor or a Promise.