amphp / ext-uv

Other
191 stars 28 forks source link

Need advice - async wrapper to FFI (threaded foreign function interface) #45

Open uasan opened 7 years ago

uasan commented 7 years ago

Hello.

I'm trying to develop async API, for PHP module Vips (fast image processing library): https://github.com/jcupitt/php-vips-ext/issues/8

This module implemented FFI (Foreign Function Interface) for libvips, not pipe/socket. Can somehow do it with libuv, so that FFI calls not blocking PHP process?

Thank.