No problem, it’s probably helpful to post this all publicly for anyone else.
It is this line right here: https://github.com/kevinohashi/WPPerformanceTester/blob/426ffe4f91f8a39604ab8921e06cdf913b62a524/benchmark.php#L172
$query = “SELECT BENCHMARK(5000000, AES_ENCRYPT(CONCAT(‘WPHostingBenchmarks.com’,RAND()), UNHEX(SHA2(‘is part of Review Signal.com’,512))))”;
It’s running 5 million AES_ENCRYPT functions on your SQL server.
It is designed to take a while, and is 100% something that you would never do on a real production server. The goal is creating something heavy enough that we can measure the difference between systems. If everything handles something in 10ms, it’s harder to see a difference, and even harder as things go forward. I tried to create a function and run it enough times that it took a while. On purpose. That way it’s easier to see the difference between platforms and take into account things will likely get faster in the future.
I wouldn’t worry so much about the number itself (compare it against the benchmark of submitted scores) and compare it against different versions of your own setup. The actual raw number in isolation doesn’t mean a whole lot.
I hope that explains everything and helps you out. If not, please expand on your issue and I will try to answer.