-
-
Notifications
You must be signed in to change notification settings - Fork 574
Using Deferred produces memory leak? #972
Copy link
Copy link
Closed
Labels
Description
I'm using Deferred to avoid N+1 problem, but with a big amount of entities, it produces out of memory error.
Even without buffer it allocates a lot of memory:
'resolve' => function($blogStory) {
return new GraphQL\Deferred(function () {
return true;
});
}
Is there a way to use it more properly?
Reactions are currently unavailable