├── LICENSE ├── README.md ├── bash_history_container.txt ├── bash_history_host.txt ├── chapter_1 ├── cachegrind.out.412 ├── index.html ├── index.php ├── phpinfo.php ├── sakila-db.tar.gz ├── siege-4.0.2.tar.gz ├── urlfile_1.txt └── urlfile_2.txt ├── chapter_10 ├── chap10_slow_after.html ├── chap10_slow_before.php ├── index.html ├── index.php └── phpinfo.php ├── chapter_2 ├── .blackfire.travis.ini ├── .blackfire.yml ├── .travis.yml ├── LICENSE ├── agent ├── bash_history_container.txt ├── bash_history_host.txt ├── blackfire ├── blackfire-agent ├── blackfire.so ├── chap2post.php ├── chap2pre.php ├── fakedir │ ├── fakedir2 │ │ ├── file4.txt │ │ ├── file5.txt │ │ └── file6.txt │ ├── fakedir3 │ │ ├── file7.txt │ │ ├── file8.txt │ │ └── file9.txt │ ├── file1.txt │ ├── file2.txt │ └── file3.txt ├── index.html ├── index.php ├── php.ini ├── phpinfo.php ├── sakila-db │ ├── sakila-data.sql │ ├── sakila-schema.sql │ └── sakila.mwb └── telegraf.conf ├── chapter_3 ├── chap3_dynamic_1.php ├── chap3_dynamic_2.php ├── chap3_dynamic_3.php ├── chap3_dynamic_4.php ├── chap3_immutable_arrays.php ├── chap3_memoization_after.php ├── chap3_memoization_before.php ├── chap3_references.php ├── chap3_strict_typing.php ├── chap3_strict_typing_modified.php ├── chap3_string_interpolation.php ├── chap3_variables.php ├── index.html ├── index.php └── phpinfo.php ├── chapter_4 ├── chap4_IO_blocking.php ├── chap4_IO_non_blocking.php ├── chap4_async_race.php ├── chap4_pthreads.php ├── index.html ├── index.php ├── phpinfo.php └── react │ ├── .gitignore │ ├── composer.json │ ├── composer.lock │ ├── composer.phar │ └── examples │ ├── child-child.php │ ├── child-process.php │ ├── dns-resolver.php │ ├── echo-server.php │ ├── http-client.php │ ├── next-tick.php │ ├── parallel-download.php │ ├── pump-tons-of-data.php │ ├── scalability.php │ ├── tcp-chat.php │ ├── test-close-conn.php │ ├── test-memory-http.php │ └── test-memory.php ├── chapter_5 ├── dbt2-0.37.tar.gz ├── index.html ├── index.php ├── phpinfo.php └── sysbench-0.4.12.14.tar.gz ├── chapter_6 ├── employees.sql ├── index.html ├── index.php ├── json_example.sql ├── phpinfo.php └── sales.sql ├── chapter_7 ├── chap7_js_loops_1.html ├── chap7_js_loops_2.html ├── chap7_js_variables_1.html ├── chap7_js_variables_2.html ├── index.html ├── index.php └── phpinfo.php ├── chapter_8 ├── chap8_js_const_1.html ├── chap8_js_performance_1.html ├── chap8_js_performance_2.html ├── index.html ├── index.php └── phpinfo.php ├── chapter_9 ├── index.html ├── index.php └── phpinfo.php ├── index.html ├── index.php └── phpinfo.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-the-Faster-Web-with-PHP-MySQL-and-JavaScript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-the-Faster-Web-with-PHP-MySQL-and-JavaScript/HEAD/README.md -------------------------------------------------------------------------------- /bash_history_container.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-the-Faster-Web-with-PHP-MySQL-and-JavaScript/HEAD/bash_history_container.txt -------------------------------------------------------------------------------- /bash_history_host.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-the-Faster-Web-with-PHP-MySQL-and-JavaScript/HEAD/bash_history_host.txt -------------------------------------------------------------------------------- /chapter_1/cachegrind.out.412: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-the-Faster-Web-with-PHP-MySQL-and-JavaScript/HEAD/chapter_1/cachegrind.out.412 -------------------------------------------------------------------------------- /chapter_1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-the-Faster-Web-with-PHP-MySQL-and-JavaScript/HEAD/chapter_1/index.html -------------------------------------------------------------------------------- /chapter_1/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-the-Faster-Web-with-PHP-MySQL-and-JavaScript/HEAD/chapter_1/index.php -------------------------------------------------------------------------------- /chapter_1/phpinfo.php: -------------------------------------------------------------------------------- 1 |