哈喽!今天心血来潮给大家带来了《第一个请求不在 Goroutine 函数的开头发送》,想必大家应该对golang都不陌生吧,那么阅读本文就都不会很困难,以下内容主要涉及到,若是你正在学习Golang
哈喽!今天心血来潮给大家带来了《第一个请求不在 Goroutine 函数的开头发送》,想必大家应该对golang都不陌生吧,那么阅读本文就都不会很困难,以下内容主要涉及到,若是你正在学习Golang,千万别错过这篇文章~希望能帮助到你!
问题内容我正在我的代码中运行 goroutine。比如说,如果我将线程设置为 50,它将不会运行前 49 个请求,但会运行第 50 个请求并继续处理其余请求。我不太确定如何描述我遇到的问题,并且它没有给出任何错误。这只发生在使用 fastHttp 时,并且在 net/http 上工作得很好。这可能是 fasthttp 的问题吗? (这不是我的全部代码,只是我认为发生问题的区域)
threads := 50
var lock sync.mutex
semaphore := make(chan bool, threads)
for len(userarray) != 0 {
semaphore <- true
go func() {
lock.lock()
var values []byte
defer func() { <-semaphore }()
fmt.println(len(userarray))
if len(userarray) == 0 {
return
}
values, _ = JSON.marshal(userarray[0])
currentarray := userarray[0]
userarray = userarray[1:]
client := &fasthttp.client{
dial: fasthttpproxy.fasthttphttpdialertimeout(proxy, time.second * 5),
}
time.sleep(1 * time.nanosecond)
lock.unlock()
这是我得到的输出(数字是剩余的请求数量)
200
199
198
197
196
195
194
193
192
191
190
189
188
187
186
185
184
183
182
181
180
179
178
177
176
175
174
173
172
171
170
169
168
167
166
165
164
163
162
161
160
159
158
157
156
155
154
153
152
151
(10 lines of output from req 151)
150
(10 lines of output from req 150)
cont.
抱歉,如果我的解释令人困惑,我真的不知道如何解释这个错误
我认为问题在于变量的范围。为了表示排队,我有一个并行工作线程池,它们全部从同一通道拉出,然后使用等待组等待它们。 确切的代码可能需要调整,因为我手头没有 go 编译器,但想法是这样的:
threads := 50
queueSize := 100 // trying to add more into the queue will blocke
semaphore := make(chan bool, threads)
jobQueue := make(chan MyItemType, queueSize)
var wg sync.WaitGroup
func processQueue(jobQueue <- chan MyItemType) {
defer wg.Done()
for item := range jobQueue {
values, _ = json.Marshal(item) // doesn't seem to be used?
client := &fasthttp.Client{
Dial: fasthttpproxy.FasthttpHTTPDialerTimeout(proxy, time.Second * 5),
}
}
}
for i := 0; i < threads; i++ {
wg.Add(1)
go processQueue(jobQueue)
}
close(jobQueue)
wg.Wait()
现在您可以将项目放入 jobqueue
中,它们将由这些线程之一处理。
文中关于的知识介绍,希望对你的学习有所帮助!若是受益匪浅,那就动动鼠标收藏这篇《第一个请求不在 goroutine 函数的开头发送》文章吧,也可关注编程网公众号了解相关技术文章。
--结束END--
本文标题: 第一个请求不在 goroutine 函数的开头发送
本文链接: https://lsjlt.com/news/595908.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-04-05
2024-04-05
2024-04-05
2024-04-04
2024-04-05
2024-04-05
2024-04-05
2024-04-05
2024-04-04
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0