Aofei Sheng
Aofei Sheng
这个看着应该是本地网络环境的问题,可以刷新下本地 dns 缓存试试
由于长时间未回复,这个 issue 我就先关闭了。如果还有其他问题欢迎随时提问。
And I think the note `(main module does not need module ...)` is flawed. If a module isn't needed by our main module, then it shouldn't cause our main module...
@skbeh That's weird. The reason why I used sysetmd-networkd in the first place was to solve the problem of dhclient not being able to assign IPv6 address and configure routes...
@hunshcn 抱歉过去了这么久(三个月)才回复你🤦♂️ 我刚看了 #72,如果我没理解错,问题的根本原因在于我们在 `GoFetcher.directList` 中未明确要求 `go list` 命令查询 `latest` 或某个 ``,导致 `go list` 可能返回 `200 OK` 和空 body,从而让 Go modules 操作无法依赖 `404`/`410` 进行正常的模块路径推算,对吧? 比如正常情况下模块路径推算应该是: 1. 请求 `/github.com/kubernetes/kubernetes/asdasd/@v/list` 2. 得到...
谢谢你的建议。 不过,对于 [`goproxy.Goproxy`](https://pkg.go.dev/github.com/goproxy/goproxy#Goproxy) 来说(也就是通过编程方式使用时的那个 `http.Handler`),我们暂时不打算引入所谓的“缓存淘汰策略”。这类机制应该由更上层的系统去决定和实现,而不是由 `goproxy.Goproxy` 本身承担。这个项目的目标是提供一个构建 Go module proxy 所需的最基础且完备的能力,我们不希望让事情变得复杂。 至于 `cmd/goproxy`,或许可以考虑加入某种简单的缓存淘汰机制,但这部分我还需要再想想。
> 其他我没问题了 补充了测试 & 同步改动了前端,我本地测试了没啥问题,看看还需不需要再 review 下
The output of `traceroute 16.163.99.55` (from `QVM dal-vm01` to `Vercel hkg1`): ``` traceroute to 16.163.99.55 (16.163.99.55), 30 hops max, 60 byte packets 1 10.66.130.25 (10.66.130.25) 0.200 ms 0.137 ms 0.215...
I conducted a test by sending 50 requests via the Vercel-proxied API using the browser console. Based on the Nginx access logs on the spx-backend server, 1. we can infer...
And as a comparison, I conducted a similar test with the API proxied by Cloudflare Workers: ```typescript export default { async fetch(request) { const url = new URL(request.url); url.hostname =...