mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-21 20:36:05 +03:00
76 lines
1.7 KiB
PHP
76 lines
1.7 KiB
PHP
<?php
|
|
namespace GraphQL\Benchmarks;
|
|
|
|
use GraphQL\Benchmarks\Utils\QueryGenerator;
|
|
use GraphQL\Benchmarks\Utils\SchemaGenerator;
|
|
use GraphQL\GraphQL;
|
|
use GraphQL\Type\Schema;
|
|
use GraphQL\Type\SchemaConfig;
|
|
|
|
/**
|
|
* @BeforeMethods({"setUp"})
|
|
* @OutputTimeUnit("milliseconds", precision=3)
|
|
* @Warmup(1)
|
|
* @Revs(5)
|
|
* @Iterations(1)
|
|
*/
|
|
class HugeSchemaBench
|
|
{
|
|
/** @var SchemaGenerator */
|
|
private $schemaBuilder;
|
|
|
|
private $schema;
|
|
|
|
/** @var string */
|
|
private $smallQuery;
|
|
|
|
public function setUp()
|
|
{
|
|
$this->schemaBuilder = new SchemaGenerator([
|
|
'totalTypes' => 600,
|
|
'fieldsPerType' => 8,
|
|
'listFieldsPerType' => 2,
|
|
'nestingLevel' => 10,
|
|
]);
|
|
|
|
$this->schema = $this->schemaBuilder->buildSchema();
|
|
|
|
$queryBuilder = new QueryGenerator($this->schema, 0.05);
|
|
$this->smallQuery = $queryBuilder->buildQuery();
|
|
}
|
|
|
|
public function benchSchema()
|
|
{
|
|
$this->schemaBuilder
|
|
->buildSchema()
|
|
->getTypeMap();
|
|
}
|
|
|
|
public function benchSchemaLazy()
|
|
{
|
|
$this->createLazySchema();
|
|
}
|
|
|
|
public function benchSmallQuery()
|
|
{
|
|
$result = GraphQL::executeQuery($this->schema, $this->smallQuery);
|
|
}
|
|
|
|
public function benchSmallQueryLazy()
|
|
{
|
|
$schema = $this->createLazySchema();
|
|
$result = GraphQL::executeQuery($schema, $this->smallQuery);
|
|
}
|
|
|
|
private function createLazySchema()
|
|
{
|
|
return new Schema(
|
|
SchemaConfig::create()
|
|
->setQuery($this->schemaBuilder->buildQueryType())
|
|
->setTypeLoader(function ($name) {
|
|
return $this->schemaBuilder->loadType($name);
|
|
})
|
|
);
|
|
}
|
|
}
|