php-uv icon indicating copy to clipboard operation
php-uv copied to clipboard

libuv php extension

Results 30 php-uv issues
Sort by recently updated
recently updated
newest added

Hi, Is there a way php-uv can share tcp server port in multiple processes? Like what node.js's cluster module did? "A single instance of Node runs in a single thread....

libgit2 uses their forked http-parser. php-uv might conflict with that.

bug

see tests/800-uv_queue_work.phpt ``` ---- EXPECTED OUTPUT [queue][finished] ---- ACTUAL OUTPUT [finished][queue] ---- FAILED ```

I tried to compile php-uv with gcc 4.6.3 on ubuntu 12.04 64 bit box, it compiled successfully but when i run uv_default_loop() in the code, it says: undefined symbol: clock_gettime...

bug

https://github.com/joyent/libuv/issues/518 https://github.com/chobie/php-uv/tree/develop TODO: take a look into PECL ares and write how to migrate bundled functions.

While I am using the example inthe docs for `uv_http_parser_init` and `uv_http_parser_execute` (https://github.com/chobie/php-uv#example-102), with a POST request, I have in some cases a warning and the parsing fails : ```...

robust OOP interface (close connections automatically when error happened ...etc)

enhancement

Looks like uv_fs_close always returns the initial stream, even when this stream doesn't exist and close fails. For example, ``` php uv_fs_close($loop, 42, function ($result){}); ``` returns 42 ``` php...

bug

Hi, What will be the best way to download a large file over tcp using php-uv? Thanks. Best Regards, Jim