Похожие чаты

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 ответов

11 просмотров

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- Автор вопроса

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

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

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
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
а через ESC-код ?
Alexey Kulakov
29
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
есть ПО, которое лежит папкой, по сути и не инсталится, а просто запускается. Надо раскидать по машинам в домене. Я так понял, что прям настройками GPO, копировать я смогу тол...
Dmitriy
8
any reference of this implementation?
BitBuddha
29
Чёт не понял, я ж правильной функцией воспользовался чтобы вывести отладочную информацию? но что-то она не ловится
notme
18
Привет)) уже кажется эту тему перемусолили, но вот я так и не понял. Я сейчас сижу на 27дюймов 2к мониторе. На Актуальной макоси, если я куплю 27д 4к монитор: - будет ли изобр...
Vladislav Piskunov
16
Карта сайта