Thanks for the feedback.
@pstevens quite liked the video, thanks for the feedback.
Regarding performance. We already know some improvements we want to make.
Meanwhile, there are some php/server configurations that may help.
For a deeper understanding of what Iām going to say next, you can have a read on the following:
- Performance (Symfony Docs)
- https://api-platform.com/docs/core/performance/#enabling-the-metadata-cache
From the above there a few things you could try, maybe the one with most impact is:
Enabling opcache
Setup and configure opcache on php.ini
The following example is based on the above Symfony documentation:
[opcache]
; Determines if Zend OPCache is enabled
zend_extension=opcache.so
opcache.enable=1
; The OPcache shared memory storage size.
opcache.memory_consumption=256
; The maximum number of keys (scripts) in the OPcache hash table.
; Only numbers between 200 and 100000 are allowed.
opcache.max_accelerated_files=20000
; When disabled, you must reset the OPcache manually or restart the
; webserver for changes to the filesystem to take effect.
opcache.validate_timestamps=0