Похожие чаты

In the link above, Search() will start a goroutine like

this:
res := make(chan []string)
go func() {
res <- slowSearch(from, to)
close(res)
}()
and in next step, it will wait for cahnnels in a select:
// wait for 2 events: either of one will be the result
for {
select {
case dst := <-res:
return dst, nil
case <-ctx.Done():
return []string{}, ctx.Err()
}
}

So when <-ctx.Done() going to have any message, it will return our function return []string{}, ctx.Err().

My question is: after canceling the context and return from Search, the main problem is our goroutine is still running in the background!
for example, the slowSearch() takes 17 seconds to write result into our res channel. and our context timeout is (for example) 3 seconds.
Now after Search() reaching the timeout, our context will be canceled, and Search() will be returned.
But slowSearch() still running in backgroun for 17 seconds!

What should we do in this case?

7 ответов

12 просмотров

Pass the parent context to slow search, there you also listen for its cancellation, that way it won't have to stay around doing nothing!

there’s no way to kill a goroutine, so you must write slowSearch in such a way that it respects a cancalable context. slowSearch must check whether the context was canceled and return ASAP

Daddy- Автор вопроса
Roman Sharkov
there’s no way to kill a goroutine, so you must wr...

slowSearch() can do one thing at same time Either wait for context to be canceled, or doing its own job! My problem is here

Daddy
slowSearch() can do one thing at same time Either ...

why can’t you make it check the context?

Daddy- Автор вопроса

Похожие вопросы

Обсуждают сегодня

Господа, а что сейчас вообще с рынком труда на делфи происходит? Какова ситуация?
Rꙮman Yankꙮvsky
29
А вообще, что может смущать в самой Julia - бы сказал, что нет единого стандартного подхода по многим моментам, поэтому многое выглядит как "хаки" и произвол. Короче говоря, с...
Viktor G.
2
@Benzenoid can you tell me the easiest, and safest way to bu.y HEX now?
Živa Žena
20
This is a question from my wife who make a fortune with memes 😂😂 About the Migration and Tokens: 1. How will the old tokens be migrated to the new $LGCYX network? What is th...
🍿 °anton°
2
30500 за редактор? )
Владимир
47
а через ESC-код ?
Alexey Kulakov
29
What is the Dex situation? Agora team started with the Pnetwork for their dex which helped them both with integration. It’s completed but as you can see from the Pnetwork ann...
Ben
1
Гайс, вопрос для разносторонее развитых: читаю стрим с юарта, нада выделять с него фреймы с определенной структурой, если ли чо готовое, или долбаться с ринг буффером? нада у...
Vitaly
9
Anyone knows where there are some instructions or discort about failed bridge transactions ?
Jochem
21
@lozuk how do I get my phex copies of my ehex from a atomic wallet, to move to my rabby?
Justfrontin 👀
11
Карта сайта