diff --git a/website/docs/other-frameworks.mdx b/website/docs/other-frameworks.mdx index 71cc9de3aa..7fb2a1bdd1 100644 --- a/website/docs/other-frameworks.mdx +++ b/website/docs/other-frameworks.mdx @@ -242,7 +242,7 @@ use GraphQL\Type\Schema; use Mouf\Picotainer\Picotainer; use Psr\Container\ContainerInterface; use Psr\SimpleCache\CacheInterface; -use Symfony\Component\Cache\Simple\ApcuCache; +use Symfony\Component\Cache\Simple\FilesystemCache; use TheCodingMachine\GraphQLite\Http\Psr15GraphQLMiddlewareBuilder; use TheCodingMachine\GraphQLite\SchemaFactory; use Zend\Stratigility\MiddlewarePipe; @@ -261,7 +261,7 @@ return new Picotainer([ return $builder->createMiddleware(); }, CacheInterface::class => function() { - return new ApcuCache(); + return new FilesystemCache(); }, Schema::class => function(ContainerInterface $container) { // The magic happens here. We create a schema using GraphQLite SchemaFactory.