⚡🌐⚡ Module to persist validated query in cache and improve performace of repeating queries.
This Module allows GraPHPinator to cache queries on the server to reduce server load. This module aims to reduce GraphQL overhead in parsing and validation by caching and reusing known requests.
Please note that this module does not affect the speed of your resolver functions.
Install package using composer
composer require infinityloop-dev/graphpinator-persisted-queries
- Implement
\Psr\SimpleCache\CacheInterface
You need implementation of \Psr\SimpleCache\CacheInterface
where the serialized version of request is stored for later reuse.
- Register
PersistedQueriesModule
as GraPHPinator module:
$persistModule = new \Graphpinator\PersistedQueriesModule\PersistedQueriesModule($schema, $cacheImpl);
$graphpinator = new \Graphpinator\Graphpinator(
$schema,
$catchExceptions,
new \Graphpinator\Module\ModuleSet([$persistModule, /* possibly other modules */]),
$logger,
);
- You are all set, queries are automatically cached in specified storage.
Simple benchmark (code in bench
directory) shows approximatelly 80% reduction of GraphQL overhead.
Benchmark runs the same query 10k times, with 5 warmup queries before. Cache in use is a simple implementation using Redis on localhost, connection is done using php-redis extension. Opcache was disabled.
CPU model | Time WITHOUT module | Time WITH module |
---|---|---|
Ryzen 5900X | ~12.44 s | ~2.16 s |
Ryzen 5600X (using VMware) | ~24.83 s | ~4.69 s |
Ryzen 5 3600 | ~14.97 s | ~2.77 s |