-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Open
Description
Feature Request
| Q | A |
|---|---|
| New Feature | yes |
| RFC | yes |
Summary
First of all, thanks to all maintainers of Doctrine. You make the world better. 👏
It would be neat if doctrine can run multiple queries without waiting for each to finish after executing the next one. Currently I have a use case for a search page, which queries the database several times and the total time of all queries is relatively big, but each query by itself takes no more than 300ms. Getting around this is no trivial task. Only if I could run these queries in parallel. It seems that PHP 8.1 supports something like this with Fibers.
It there currently any limitation to implement parallelism in Doctrine? I'm sure that for most people this is must have feature and it would be very beneficial for the whole community.
n0099