-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
x/tools/gopls: migrate to jsonrpc2_v2 #52838
Comments
FWIW, my stack for the concurrency model is still pending. (I was hoping to make progress on it during the Quiet Week last week, but didn't end up with enough bandwidth.) |
|
I almost got to do this, but Alas, the unrelenting pressure of priorities prevented it, and I bailed to implement Async handling in jsonrpc2 (v1). Here are reasons to make this switch, summarized from my investigation:
By comparison, jsonrpc2_v2 exposes the Preempter interface, so that gopls sees the $/cancel notification before it is enqueued. Furthermore, async reading from the network connection is built-in, and requests are always handled asynchronously to reads, on a single dedicated goroutine. Cancelled calls are never seen by gopls. When the connection is closed, ongoing requests are automatically cancelled. |
The new version of the jsonrpc2 package (authored by @ianthehat) has improved APIs and shutdown semantics. @bcmills has also recently worked on improving its concurrency model.
This issue tracks work to do the necessary refactoring to migrate to the new APIs.
The text was updated successfully, but these errors were encountered: