You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to develop async API, for PHP module Vips (fast image processing library): libvips/php-vips-ext#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.
The text was updated successfully, but these errors were encountered:
…t-uv
- added back `ext-uv` C source code until all functions within is implemented.
- added functions/methods for direct Zval handling, a rewrite from https://github.com/lisachenko/z-engine.
- updated each platform `libuv` cdef *.h header files, currently only Windows version is used for implementation at the moment.
- added `zend api` *.h headers.
- additional tests implemented.
- updated examples to use ffi version by adding `require 'vendor/autoload.php';`
- updated CI to build/use libuv 1.44.2.
- additional stubs/updates for IDE static analysis.
- update Readme sections and progress.
- discovered `ext-uv` issue amphp/ext-uv#78 not really a real issue. The tests and examples using old `libuv` version that does not do a conversion on Windows from '0.0.0.0', changing to '127.0.0.1' everything works.
- also `uv_tty_init($loop, STDOUT,0)` can be used instead for `uv_pipe_open($loop, STDOUT)` that does not work on Windows and according to libuv/help#120 it's the best solution.
- added an emulation mode for `uv_pipe_open($loop, STDOUT)` under Windows, by using `uv_pipe()` internally.
- Todo: address amphp/ext-uv#82 and amphp/ext-uv#45
Hello.
I'm trying to develop async API, for PHP module
Vips
(fast image processing library):libvips/php-vips-ext#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.
The text was updated successfully, but these errors were encountered: