phpmyadmin / phpmyadmin/phpmyadmin
More performance, speed first
Open
@williamdes is already working on this.
Since Jan 28, 2021.
Enhancement
- Dominant language
- PHP
- Stars
- 7.9k
- Forks
- 3.6k
- Avg merge
- 4d 18h
- Merged PRs (30d)
- 36
Description
This issue focuses on tracking performance issues and improvements that can be made.
You can use xdebug or xhprof. Xhprof is just better. Here is how to use it.
xdebug config
xdebug.profiler_enable=0
xdebug.profiler_enable_trigger=1
xdebug.profiler_append=1
xdebug.profiler_output_dir="/mnt/Dev/@phpmyadmin/theREALphpMyAdminREPO"
xdebug.profiler_output_nme="xdebug-profile.%t.%p"
xdebug.auto_trace=1
xdebug.trace_enable_trigger=1
xdebug.trace_options=1
xdebug.collect_params=4
xdebug.collect_return=0
xdebug.trace_format=0
xdebug.show_mem_delta=1
xdebug.trace_output_dir="/mnt/Dev/@phpmyadmin/theREALphpMyAdminREPO"
xdebug.trace_output_name="trace.%t.%p"
xdebug.file_link_format="xdebug://%f@%l"
xdebug.remote_log="/mnt/Dev/@phpmyadmin/theREALphpMyAdminREPO/xdebug.log"
Here we are talking about milliseconds. This is the point of this issue.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.