server
server copied to clipboard
BatchedRequestsConcurrencyLimit
This implementation is simple and straighforward. It's good. But consider switching from
public bool BatchedRequestsExecuteInParallel { get; set; } = true;
to something like
public int BatchedRequestsConcurrencyLimit { get; set; } = 5;
Originally posted by @sungam3r in https://github.com/graphql-dotnet/server/pull/774#discussion_r851665812