Revision: Thu, 18 Apr 2024 09:24:14 GMT
v2.14 – outdated
This version of the documentation is outdated. Consider upgrading your project to Spiral Framework 3.12
Edit this page

Framework - Application Server

The Spiral Framework uses RoadRunner as high-powered application server.

Downloading

You can download the application server directly from release page.

The best way is to use composer package spiral/roadrunner-cli. It will help you to download server automatically:

./vendor/bin/rr get

Note
The PHP extensions php-cli and php-zip should be enabled on your server.

Installation RoadRunner bridge

RoadRunner integrates with the framework via spiral/roadrunner-bridge package and may be installed via the Composer package manager:

composer require spiral/roadrunner-bridge

Note
Read more about spiral/roadrunner-bridge package installation and configuration here.

Running the Server

The RoadRunner server is easy to run on the default :8080 port:

./rr serve

You can observe the memory consumption of your workers in realtime and other information via

./rr workers -i

Note
Read more about RoadRunner cli commands here

Building Application Server

A lot of the sections in this documentation will explain how to extend your application capabilities by adding your own RoadRunner plugins, middleware, or data providers.

Note
You are not required to learn Golang or build the application server by yourself, the default build will cover all of the framework features.

All information about building Application server you can read on official site.