Guus Bloemsma
Guus Bloemsma
Wow, this is a while ago :-) Indeed `waitingKeys` should be `final`, not `volatile`, that's just better. I'm pretty sure that the `schedule.cancel()` on line 164 should instead be before...
Bytes are just small integer numbers, why would you assume that an array of them is a String? In UTF-8 even, why not ASCII? I could understand if this were...
I see, you simply want a more compact encoding of the bytes. In that case I think that base64 is much safer than a straightforward conversion to text because you...
Hi Maybe I'm misunderstanding but to me it feels wrong that the resolution of `specificProperty` would depend on anything other than the `item` that it is connected to. Could it...
Hey that's great! It was me threatening with a PR that made you do it, right? ;-) I'd love to get involved but I'm not sure how to do that...
Caching is part of the dataloader (https://github.com/graphql-java/java-dataloader). I think your question can better be answered there.
Rejoiner doesn't. It cannot know what metadata is important to you and how it should be transmitted. But in your endpoint, which can be a standard servlet, you can collect...
Just throwing an idea out there: while creating a response in graphql-json, much time is spent waiting for ALL dataloaders to finish and then construct the whole tree. A grpc...
Hi Nick, what I am proposing is indeed similar to @stream and @defer, except it wouldn't need any directives, it would simply be the default mode of operation of the...
Is it really necessary to use a custom proto definition for each query? It's relatively easy to create a generic proto for a json-like dom structure. The overhead would be...