PHPBench
Dontbug Debugger
PHPBench | Dontbug Debugger | |
---|---|---|
3 | 1 | |
1,937 | 713 | |
0.4% | - | |
6.3 | 0.0 | |
about 2 months ago | - | |
PHP | Go | |
MIT License | - |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
PHPBench
-
I've been loving Benchmarking lately, but the Framework does this one quirky thing with the first result of a set. Specifically, the first return is always unusually high.
That was my first thought too. I used https://github.com/phpbench/phpbench in the past and it has a warmup feature where the code will run a couple times before the real benchmarking start
-
Comparing PHP Collections
I used phpbench to measure performance. I think one of the big differences between all the solutions is the type checking. So I decided to try measure it. How much faster will code with/without type checking?
-
Benchmark: Mezon Router is up to 196 tomes faster then Hoa Router
use phpbench
Dontbug Debugger
-
Bringing Record and Replay debugging everywhere on Linux
rr has always worked with Python in the sense that it can record and replay Python programs.
However, when you try to debug the program you can only debug the C code the Python interpreter is written in.
I suppose you want to be able to debug the Python code itself. Here is something that could do this https://pypy.org/posts/2016/07/reverse-debugging-for-python-... . I don't think the project is active nowadays though. Also I haven't used it so can't say whether it is good or not.
It should be possible to built a Python reverse debugger on top of rr. I know this should be possible because I built something for PHP https://github.com/sidkshatriya/dontbug .
There are other fancy (and possibly better) things that are possible -- instead of building a Python debugger atop rr you can record the full trace of the Python program in one go e.g. record the values of important variables at each executed line of the Python program. This is an area which I've done some work internally but nothing public released yet :-) !
What are some alternatives?
xDebug - Xdebug — Step Debugger and Debugging Aid for PHP
PHP Debug Bar - Debug bar for PHP
PHP Console - PHP Debug Console
XHProf - XHProf is a function-level hierarchical profiler for PHP and has a simple HTML based user interface.