Out of the box, Lightna supports the following storage options: opcache
, redis
,
and database
.
By default, on a fresh setup, Opcache storage is preconfigured. You can change it by
overriding
default.storage
in your YAML configuration.
Available storages are defined in the storage
configuration section, where you can register
custom storage implementations.
Storage can be configured at the entity level.
To assign a different storage to a specific entity, override:
entity.[entity_name].storage
.
Opcache storage is easy to use when the index size is small and does not risk exhausting memory. However, if you plan to store a large index in Opcache, it will require more fine-tuning and a deeper understanding compared to other storage options.
Key Aspects:
Read-only mode
Opcache storage can be used in read-only mode. The use case is to deliver Opcache indices in the same way as a compilation result, which can only be changed during the next deployment.
Configuration:
Lightna uses separate Opcache storage settings instead of the global configuration.
By default:
validate_timestamps = 1
revalidate_freq = 15
For all other cases, except Lightna's Opcache storage, the global settings are used.
Both can be adjusted in YAML: storage.opcache.options.ini
.
Increasing revalidate_freq
does not force Opcache to recompile files every 15 seconds.
It only determines how often a check is performed to detect file changes.
When changing the storage configuration, reset Opcache, as it caches the configuration per file along with the opcode.
Like any key-value storage, Redis is fast and reliable, making it a strong choice for storing the index.
Available serializers out of the box: igbinary
(default), php
,
json
,
none
.
Key Aspects:
lightna/redis
package and the Redis PHP extension.
While not the fastest option, database storage offers a simple and quick setup for index storage
without concerns about index size or tuning. It is a good choice for large indexes
when Redis or Opcache cannot allocate enough memory.
Available serializers out of the box: igbinary
(default), json
.
However, it is not recommended to use database storage for all indices. Stick to Opcache for globally required data such as configurations, translations, and category trees.