[Solved] Rest API w with SlimPhp take too much time

All frameworks are by definition slower than no-code as there’s more going on. i.e. <?php echo ‘metro’; is going to be much faster than a Slim application with this code: use \Slim\App; $config = include ‘Config/Container.php’; $app = new App($config); $app->get(‘/metro’, function($request, $response){ return $response->write(“metro”); }); $app->run(); This is because the Slim application is doing … Read more