-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Common Driver Implementations #151
Comments
Huge 👍, makes using the loop way easier. People can just require |
What if we ended up with two versions of the uv driver which worked with different versions of the uv extension? Perhaps the drivers which rely on extensions should be packaged separately and we should just include a Edit: I suppose in that case we could instead have two uv drivers in this package, with the correct one picked based on the extension version. Or the driver could simply be designed to switch behaviour based on the extension version. Maybe this isn't an issue. |
@joshdifabio This package will take care of it then and add a new driver, just like any other package would. Not including the extension based drivers is a no-go IMO, as it effectively doesn't bring any value then. |
This would certainly simplify usage. It does raise the question of what the difference between this package and, say, amphp/loop would actually be. Clearly replacing vendor-specific loop packages would be the intention here but I wonder if React and others would actually be on board with this. |
@joshdifabio React adapting the interop loop is highly unlikely. Everything we can do is provide an adapter so every interop library / application can use any React library.
None, they're just merged then, it's the exact proposal. |
Okay. I think I'm on board as well. |
I'm in favor. Only issue I see is from a community perspective it might seem like a conflict of interest. It might send the wrong idea that implementing the standard is discouraged, since we would point to using our implementation instead. |
@sagebind Implementing the already supported backend extensions again is indeed unnecessary. If there's room for improvement, submit a PR to this repository instead. Custom implementations will be allowed, but not the usual way of doing things. |
👍 ... particularly if including a react adapter is a feasible option |
@rdlowrey I wouldn't include it in this package, but having a separate package under |
The
Driver
interface leaves no room for differing behaviors between implementations. Once a particular vendor has written performantDriver
implementations for various backends there is little reason for another vendor to do the same. Changes in behavior betweenDriver
implementations render them non-interoperable. Perhaps then this group should also offerDriver
implementations, dissociatingDriver
implementations from any particular vendor.amphp/loop
contains highly optimizedDriver
implementations based on the nativestream_select()
, libevent (ext-event), libev (ext-ev), and libuv (ext-uv). Should this library be migrated to be a part of this project?The text was updated successfully, but these errors were encountered: