Serge Gotsuliak
Serge Gotsuliak
Yeah, I saw the module of arut but it was abandoned long ago too unfortunately
PHP with Laravel or Symfony is must have!
If anyone interested, I've used Workerman as the platform for building perfromant PSR7 framework here: https://github.com/gotzmann/comet There transparent transformation between Workerman internal Request and Response classes and PSR-7 compliant ones.
Скоро будет обновление документации с примерами обращения к базе через Eloquent ORM. Более простой и быстрый способ работы через PDO можно подсмотреть в репозитории Techempower Benchmarrks: https://github.com/TechEmpower/FrameworkBenchmarks/tree/master/frameworks/PHP/comet
I'll show examples of using Slim middleware and DB connection with Laravel little bit later on docs. You have to add to your composer.json: ```bash composer require illuminate/database ``` And...
Eloquent performance is only at 50% of the equivalent PDO queries with prepared statements. Not good but no so bad either. I suppose Eloquent with entity models will be even...
Thanks for request! For this year most actual documentation will be placed to README file. Hope to find more time to create REAL docs next year.
Из больших проектов - до сих пор крутится в Сбердиске (хотя я давно ушел) и в приватном сервисе машинного перевода (десятки - сотни тысяч RPS в день). Держать может гигантские...
There are no SSL support yet - I'll plan to enable it but for the moment use Comet behing Nginx for all production projects. I'll show how to use Eloquent...
Comet always stays in memory and do not work nor changes GLOBALS and SERVER arrays from request to request. So you should use some workaround like this Workerman method to...