Slashdot Mirror


User: bohdankolecek

bohdankolecek's activity in the archive.

Stories
0
Comments
2
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2

  1. Re:PHP 7 is faster than HHVM on HHVM Beats Stable Version of PHP 7.0 In Recent Benchmark (kinsta.com) · · Score: 1

    JIT warm-up was is taken into account, i.e. test results were discarded until HHVM performance peaked.

    Benchmarked PHP scripts are daemons, thus repository authoritative mode would not affect the performance, except of the first request.

    The code is object-oriented, consisting of many layers, each split into small testable methods. The benchmarked scripts were basically reading and writing socket streams, transforming data between JSON and MsgPack and reporting its status into Redis database.

  2. Re:PHP 7 is faster than HHVM on HHVM Beats Stable Version of PHP 7.0 In Recent Benchmark (kinsta.com) · · Score: 1

    Not really. We do not use Apache. Our API gateway and microservices act directly as HTTP server listening on the port 80, employing the reactor pattern implemented in PHP. See ReactPHP or Icicle.io. We do not use MySQL, currently our data are stored in PostgreSQL, REDIS and Amazon S3. See Microservices architecture and Model for large applications for architectural details.