Exposing a hypermedia API has many advantages. One of them is the ability to know exactly which resources are included in HTTP responses created by the API. We used this specificity to make API Platform apps blazing fast.
When the cache mechanism is enabled, API Platform collects identifiers of every resources included in a given HTTP response (including lists, embedded documents and subresources) and returns them in a special HTTP header called Cache-Tags.
A cache reverse proxy supporting cache tags (Varnish, CloudFlare, Fastly…) must be put in front of the web server and store all responses returned by the API with a high TTL. When a resource is modified, API Platform takes care of purging all responses containing it in the proxy’s cache. It means that after the first request, all subsequent requests will not touch the web server, and will be served instantly from the cache. It also means that the content served will always be fresh, because the cache is purged in real time.
The support for most specific cases such as the invalidation of collections when a document is added or removed or for relationships and inverse relations is built-in.
We also included Varnish in the Docker setup provided with the distribution of API Platform, so this feature works out of the box.
Integration with Varnish and the Doctrine ORM is shipped with the core library. You can easily implement the support for any other proxy or persistence system.
Sometimes you need individual resources like /me
. To work properly with Varnish, the cache tags need to be augmented with these resources. Here is an example how this can be done:
<?php
declare(strict_types=1);
namespace App\EventSubscriber;
use ApiPlatform\Core\EventListener\EventPriorities;
use App\Entity\User;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\HttpKernel\Event\GetResponseEvent;
use Symfony\Component\HttpKernel\KernelEvents;
final class UserResourcesSubscriber implements EventSubscriberInterface
{
public static function getSubscribedEvents()
{
return [
KernelEvents::REQUEST => ['extendResources', EventPriorities::POST_READ]
];
}
public function extendResources(GetResponseEvent $event)
{
$request = $event->getRequest();
$class = $request->attributes->get('_api_resource_class');
if ($class === User::class) {
$resources = [
'/me'
];
$request->attributes->set('_resources', $request->attributes->get('_resources', []) + (array)$resources);
}
}
}
Computing metadata used by the bundle is a costly operation. Fortunately, metadata can be computed once and then cached. API Platform internally uses a PSR-6 cache. If the Symfony Cache Component is available (the default in the official distribution), it automatically enables the support for the best cache adapter available.
Best performance is achieved using APCu. Be sure to have the APCu extension installed on your production server, API Platform will automatically use it.
Response time of the API can be improved up to 15x by using PHP Process Manager. If you want to use it on your project, follow the documentation dedicated to Symfony on the PPM website.
Keep in mind that PPM is still in an early stage of development and can cause issues in production.
When using the SearchFilter
and case insensivity, Doctrine will use the LOWER
SQL function. Depending on your
driver, you may want to carefully index it by using a function-based
index or it will impact performance
with a huge collection. Here are some examples to index LIKE
filters depending on your
database driver.
By default Doctrine comes with lazy loading. Usually a killer time-saving feature and also a performance killer with large applications.
Fortunately, Doctrine proposes another approach to remedy this problem: eager loading.
This can easily be enabled for a relation: @ORM\ManyToOne(fetch="EAGER")
.
By default in API Platform, we made the choice to force eager loading for all relations, with or without the Doctrine
fetch
attribute. Thanks to the eager loading extension. The EagerLoadingExtension
will join every
readable association according to the serialization context. If you want to fetch an association that is not serializable
you’ve to bypass readable
and readableLink
by using the fetchEager
attribute on the property declaration, for example:
/**
* @ApiProperty(attributes={"fetchEager": true})
*/
public $foo;
There is a default restriction with this feature. We allow up to 30 joins per query. Beyond, an
ApiPlatform\Core\Exception\RuntimeException
exception will be thrown but this value can easily be increased with a
little of configuration:
# api/config/packages/api_platform.yaml
api_platform:
eager_loading:
max_joins: 100
Be careful when you exceed this limit, it’s often caused by the result of a circular reference. Serializer groups can be a good solution to fix this issue.
As mentioned above, by default we force eager loading for all relations. This behaviour can be modified with the
configuration in order to apply it only on join relations having the EAGER
fetch mode:
# api/config/packages/api_platform.yaml
api_platform:
eager_loading:
force_eager: false
When eager loading is enabled, whatever the status of the force_eager
parameter, you can easily override it directly
from the configuration of each resource. You can do this at the resource level, at the operations level, or both:
<?php
// api/src/Entity/Address.php
namespace App\Entity;
use ApiPlatform\Core\Annotation\ApiResource;
use Doctrine\ORM\Mapping as ORM;
/**
* @ApiResource
* @ORM\Entity
*/
class Address
{
// ...
}
<?php
// api/src/Entity/User.php
namespace App\Entity;
use ApiPlatform\Core\Annotation\ApiResource;
use Doctrine\ORM\Mapping as ORM;
/**
* @ApiResource(attributes={"force_eager"=false})
* @ORM\Entity
*/
class User
{
/**
* @var Address
*
* @ORM\ManyToOne(targetEntity="Address", fetch="EAGER")
*/
public $address;
/**
* @var Group[]
*
* @ORM\ManyToMany(targetEntity="Group", inversedBy="users")
* @ORM\JoinTable(name="users_groups")
*/
public $groups;
}
<?php
// api/src/Entity/Group.php
namespace App\Entity;
use ApiPlatform\Core\Annotation\ApiResource;
use Doctrine\ORM\Mapping as ORM;
/**
* @ApiResource(
* attributes={"force_eager"=false},
* itemOperations={
* "get"={"force_eager"=true},
* "post"
* },
* collectionOperations={
* "get"={"force_eager"=true},
* "post"
* }
* )
* @ORM\Entity
*/
class Group
{
/**
* @var User[]
*
* @ManyToMany(targetEntity="User", mappedBy="groups")
*/
public $users;
}
Be careful, the operation level is higher priority than the resource level but both are higher priority than the global configuration.
If for any reason you don’t want the eager loading feature, you can turn it off in the configuration:
# api/config/packages/api_platform.yaml
api_platform:
eager_loading:
enabled: false
The whole configuration seen before will no longer work and Doctrine will recover its default behavior.
When using the default pagination, the Doctrine paginator will execute a COUNT
query on the collection. The result of the
COUNT
query is used to compute the latest page available. With big collections this can lead to quite long response times.
If you don’t mind not having the latest page available, you can enable partial pagination and avoid the COUNT
query:
# api/config/packages/api_platform.yaml
api_platform:
collection:
pagination:
partial: true # Disabled by default
More details are available on the pagination documentation.
Blackfire.io allows you to monitor the performance of your applications. For more information, visit the Blackfire.io website.
To configure Blackfire.io follow these simple steps:
docker-compose.yml
file (or an override file, if only to be used in development) blackfire:
image: blackfire/blackfire
environment:
# Exposes the host BLACKFIRE_SERVER_ID and TOKEN environment variables.
- BLACKFIRE_SERVER_ID
- BLACKFIRE_SERVER_TOKEN
Add your Blackfire.io id and server token to your .env
file at the root of your project (be sure not to commit this to a public repository)
BLACKFIRE_SERVER_ID=xxxxxxxxxx
BLACKFIRE_SERVER_TOKEN=xxxxxxxxxx
or set it in the console before running Docker commands
$ export BLACKFIRE_SERVER_ID=xxxxxxxxxx
$ export BLACKFIRE_SERVER_TOKEN=xxxxxxxxxx
Install and configure the Blackfire probe in the app container, by adding the following to your ./Dockerfile
RUN version=$(php -r "echo PHP_MAJOR_VERSION.PHP_MINOR_VERSION;") \
&& curl -A "Docker" -o /tmp/blackfire-probe.tar.gz -D - -L -s https://blackfire.io/api/v1/releases/probe/php/alpine/amd64/$version \
&& tar zxpf /tmp/blackfire-probe.tar.gz -C /tmp \
&& mv /tmp/blackfire-*.so $(php -r "echo ini_get('extension_dir');")/blackfire.so \
&& printf "extension=blackfire.so\nblackfire.agent_socket=tcp://blackfire:8707\n" > $PHP_INI_DIR/conf.d/blackfire.ini
Rebuild and restart all your containers
$ docker-compose build
$ docker-compose up -d
For details on how to perform profiling, see the Blackfire.io documentation.
Made with love by
Les-Tilleuls.coop can help you design and develop your APIs and web projects, and train your teams in API Platform, Symfony, Next.js, Kubernetes and a wide range of other technologies.
Learn more