Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cache error #1269

Open
jubilee-hub opened this issue Mar 8, 2022 · 2 comments
Open

cache error #1269

jubilee-hub opened this issue Mar 8, 2022 · 2 comments

Comments

@jubilee-hub
Copy link

jubilee-hub commented Mar 8, 2022

image

if enable this line :

```

// if (empty($this->inDevelopment)) {
// $this->astCache->set($cid, json_encode($ast), CacheBackendInterface::CACHE_PERMANENT, ['graphql']);
// }

```

got 502 error

```

protected function getSchemaDocument(array $extensions = [])
{
    // Only use caching of the parsed document if we aren't in development mode.
    $cid = "schema:{$this->getPluginId()}";
    // if (empty($this->inDevelopment) && $cache = $this->astCache->get($cid)) {
    //     return json_decode($cache->data);
    // }

    $extensions = array_filter(array_map(function (SchemaExtensionPluginInterface $extension) {
        return $extension->getBaseDefinition();
    }, $extensions), function ($definition) {
        return !empty($definition);
    });

    $schema = array_merge([$this->getSchemaDefinition()], $extensions);
    $ast = Parser::parse(implode("\n\n", $schema));
    // if (empty($this->inDevelopment)) {
    //     $this->astCache->set($cid, json_encode($ast), CacheBackendInterface::CACHE_PERMANENT, ['graphql']);
    // }

    return $ast;
}
@hunteryun
Copy link

uh.. same issue, i have solved it, see here #1268

@jubilee-hub
Copy link
Author

uh.. same issue, i have solved it, see here #1268

好的,谢谢,一会试试

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants