Dmitry
Dmitry
I suggest to implement GoLang `select` operator: https://tour.golang.org/concurrency/5 This can be a great way to implement cancellable operations and gives more control on operations flow. **Select** The `select` statement lets...
For example i have route service provider: ```php protected function mapApiRoutes() { Route::middleware('api') ->namespace($this->namespace . '\Api') ->group(base_path('routes/api.php')); } ``` And i have route group: ``` Route::group([ 'namespace' => 'Mirrors', 'prefix'...
Because this package relies on calculations on the code side, the tree will always be in a broken state when simultaneously inserts are performed (duplicates by _lft will occur). I...
Привет! Это прекрасная ORM, но немного не понятно, как ее использовать в контексте асинхронных приложений. Речь идет про Swoole/AMPHP/ReactPHP. Хотя речь идет скорее про Swoole, про корутиновую однопоточную модель исполнения....
### Feature Request | Q | A |------------ | ------ | New Feature | no | RFC | no | BC Break | no #### Summary Currently `TextResponse` always allocating...
## Интро В long-running приложениях (асинхронных/многопоточных/многопоточно-асинхронных) часто применяется подход пулинга соединений (ConnectionPool). К БД открывается N соединений и пока приложение дожидается результатов от БД, оно может начать выполнять параллельно другие...
response.clone() breaks compatibility with libraries which hooks fetch on itself, e.g. SvelteKit - https://github.com/sveltejs/kit/blob/5ef7d0b387a8e0ff2f8d631d83585d479595d73c/packages/kit/src/runtime/server/page/load_data.js#L246 Response cloning leading to lost context for SvelteKit and request would be resent during CSR
It makes possible to create ListBox like on Google search page (if you click on input listbox won't be closed)
Command `composer require 'sylius/shop-api-plugin 1.7.*@dev'` Fails with: ``` Your requirements could not be resolved to an installable set of packages. Problem 1 - Root composer.json requires sylius/shop-api-plugin 1.7.*@dev -> satisfiable...
I've created PostgreSQL extension that adds [native unsigned integer data types](https://github.com/pg-uint/pg-uint128) to PostgreSQL. I also implemented [support of these types](https://github.com/pg-uint/pgx-pg-uint128) in pgx. However implementing pgx part was a bit painful...