You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default behavior is to queue requests per unique resource ID, handling them serially on the same goroutine.
For some type of resources, it is better to allow multiple goroutines to handle requests on the same resource ID in parallel.
Notes
A new Parallel bool field should be added to Handler.
The text was updated successfully, but these errors were encountered:
Issue
The default behavior is to queue requests per unique resource ID, handling them serially on the same goroutine.
For some type of resources, it is better to allow multiple goroutines to handle requests on the same resource ID in parallel.
Notes
A new
Parallel
bool field should be added toHandler
.The text was updated successfully, but these errors were encountered: