wrk -t4 -c400 -d10s http://127.0.0.1:1337/
Running 10s test @ http://127.0.0.1:1337/
4 threads and 400 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 7.02ms 6.94ms 82.86ms 85.27%
| APP_ENV=testing | |
| APP_KEY=base64:DimZ0aVNA8ZWtWxTB4fDxFc6lL1wM2C7evETA4QK3+c= | |
| APP_DEBUG=true | |
| APP_LOG_LEVEL=debug | |
| APP_URL=http://localhost:8081 | |
| DB_CONNECTION=mysql | |
| DB_HOST=mysql | |
| DB_PORT=3306 | |
| DB_DATABASE=secca_testing |
As configured in my dotfiles.
start new:
tmux
start new with session name:
| # Git status bash prompt | |
| # | |
| # In addition to printing the current working directory, this prompt will | |
| # show a number of things if you are in a git repository: | |
| # - The current branch you are in | |
| # - Whether there are untracked files in the repository (there will be an | |
| # asterisk after the branch nome if there are) | |
| # - Whether there are any unmerged/unstaged/staged changes or if the directory | |
| # is clean. See below for the colors that will be used, and change them if | |
| # you'd like. |
| <?php | |
| use Zend\Db\Sql\Select; | |
| // basic table | |
| $select0 = new Select; | |
| $select0->from('foo'); | |
| // 'SELECT "foo".* FROM "foo"'; |