in reply to Re: What's the best way to fetch data from multiple sources asynchronously?
in thread What's the best way to fetch data from multiple sources asynchronously?

The problem is that a DBI database/statement handle is not a pipe or socket, so you can't simply call select() on it. The DBI does not specify a method of executing statements asynchronously, though perhaps drivers might support it. It looks like there is some way of doing it with POE that uses forked processes behind the scenes.
  • Comment on Re^2: What's the best way to fetch data from multiple sources asynchronously?
  • Download Code