S.A.N

Results 24 issues of S.A.N

`php-vips` - This extension lets you use the libvips image processing library from PHP 7 https://github.com/jcupitt/php-vips-ext The 4x faster https://github.com/jcupitt/php-vips-bench

Hey. You have implemented the [request.getQuery(name)]( https://github.com/uNetworking/uWebSockets/issues/1091#issuecomment-700032011) method with optional argument. Often need a method `request.getCookie(name)`. The best i could come up with in JS: ```JS import { parse }...

Hello. Many SQL commands do not support parameters in queries, for example: ```SQL COPY (SELECT * FROM t WHERE id = $1 ) TO STDOUT; ``` ```SQL CREATE VIEW AS...

Hello. We get an error `write CONNECT_TIMEOUT undefined:undefined` every day. From the TCP dump, we can see that when the application starts, the client opens many connections, in each connection...

Hello. Version `postgres 3.2.4`. ```JS await sql`SELECT ${true}::jsonb`; ``` Result postgresql error: ``` Cannot cast type boolean to jsonb ```

v4

Hi Where can I read your suggestions on the `async` API in the core of `PHP 8`? https://externals.io/message/102480#102497 Thanks.

``` PHP 7.1.5 (cli) (built: May 9 2017 17:55:16) ( ZTS ) Copyright (c) 1997-2017 The PHP Group Zend Engine v3.1.0, Copyright (c) 1998-2017 Zend Technologies with Zend OPcache v7.1.5,...

Can implement, sending value (scalar) to thread, and accept result as callback argument? This is in `libuv` :) http://docs.libuv.org/en/v1.x/threadpool.html#c.uv_queue_work Thank.

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...

Hi. I try send IPC pipe from foreign process, to lua process by unix socket. Foreign process used method `uv_write2(lua_pipe, buff, ips_pipe)` from `libuv` http://docs.libuv.org/en/v1.x/stream.html#c.uv_write2 In lua script error: `calling...