├── .gitignore ├── .vagrant └── machines │ └── default │ └── virtualbox │ ├── action_provision │ ├── action_set_name │ └── id ├── Vagrantfile ├── composer.json ├── composer.lock ├── n2-cheerio-64connection.js ├── n2-cheerio.js ├── p1-phpquery.php ├── p2-async.php ├── phpQuery └── phpQuery.php ├── results ├── n2-cheerio-64connection.csv ├── n2-cheerio.csv ├── p1-phpquery.csv └── p2-async.csv └── run.sh /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | vendor/ 3 | -------------------------------------------------------------------------------- /.vagrant/machines/default/virtualbox/action_provision: -------------------------------------------------------------------------------- 1 | 1384221229 -------------------------------------------------------------------------------- /.vagrant/machines/default/virtualbox/action_set_name: -------------------------------------------------------------------------------- 1 | 1384221229 -------------------------------------------------------------------------------- /.vagrant/machines/default/virtualbox/id: -------------------------------------------------------------------------------- 1 | 4d45fe76-22f0-4af0-b7b7-afc8615430f2 -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsturgeon/nonblockingbro/HEAD/Vagrantfile -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsturgeon/nonblockingbro/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsturgeon/nonblockingbro/HEAD/composer.lock -------------------------------------------------------------------------------- /n2-cheerio-64connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsturgeon/nonblockingbro/HEAD/n2-cheerio-64connection.js -------------------------------------------------------------------------------- /n2-cheerio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsturgeon/nonblockingbro/HEAD/n2-cheerio.js -------------------------------------------------------------------------------- /p1-phpquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsturgeon/nonblockingbro/HEAD/p1-phpquery.php -------------------------------------------------------------------------------- /p2-async.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsturgeon/nonblockingbro/HEAD/p2-async.php -------------------------------------------------------------------------------- /phpQuery/phpQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsturgeon/nonblockingbro/HEAD/phpQuery/phpQuery.php -------------------------------------------------------------------------------- /results/n2-cheerio-64connection.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsturgeon/nonblockingbro/HEAD/results/n2-cheerio-64connection.csv -------------------------------------------------------------------------------- /results/n2-cheerio.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsturgeon/nonblockingbro/HEAD/results/n2-cheerio.csv -------------------------------------------------------------------------------- /results/p1-phpquery.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsturgeon/nonblockingbro/HEAD/results/p1-phpquery.csv -------------------------------------------------------------------------------- /results/p2-async.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsturgeon/nonblockingbro/HEAD/results/p2-async.csv -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsturgeon/nonblockingbro/HEAD/run.sh --------------------------------------------------------------------------------