I really want to test backend frameworks against each other. I want to know if I can build a faster back-end service in Go, Python, Java, or Node. I know that the general accepted thought it Go > Node > Java > Python in speed, but I want to dig deeper and see how much faster, where are the limitations, how easy are the services to scale, etc.
Unfortunately, doing a test like this is super hard because there are too many variables: how optimized is the server? What compiler is used? Where is running? What are the configurations? The short answer is that I want to test stuff as out-of-the-box as possible, as in what the configuration would be if an average developer was to build and ship it.
In short, I want to be able to test the benefits and drawbacks of different stacks. Any advice?