l**********n 发帖数: 8443 | |
l**********n 发帖数: 8443 | 2 coroutine is more like single-thread
【在 l**********n 的大作中提到】 : which one is better?
|
l**********n 发帖数: 8443 | 3 I missed goroutines. what is goroutine? what is a fiber? |
p*****2 发帖数: 21240 | 4 goroutine是轻量thread,要配合async使用,可以达到更好的concurrency |
l**********n 发帖数: 8443 | 5 scala有轻量thread吗?actor用的是thread吧?
【在 p*****2 的大作中提到】 : goroutine是轻量thread,要配合async使用,可以达到更好的concurrency
|
d******e 发帖数: 2265 | 6 coroute is something like this:
def consumer():
value = (yield)
# some compution
def program():
c = consumer()
c.send('asda')
c.send('ada')
你可以和actor比但是和thread不是一个类别的东西。
【在 l**********n 的大作中提到】 : which one is better?
|
l**********n 发帖数: 8443 | 7 indeed it is not thread. it is application flow control
【在 d******e 的大作中提到】 : coroute is something like this: : def consumer(): : value = (yield) : # some compution : def program(): : c = consumer() : c.send('asda') : c.send('ada') : 你可以和actor比但是和thread不是一个类别的东西。
|