3
votes
2answers
172 views
Differences between Coroutines and GoTo???
I always read about the horrible thing that "goto" is. But, todaym reading about the google programming language "Go" http://golang.org/ and i see that it suports Coroutines (Goroutines).
The …
6
votes
7answers
303 views
Design Pattern Alternative to Coroutines
Hi,
Currently, I have a large number of C# computations (method calls) residing in a queue that will be run sequentially. Each computation will use some high-latency service (network, disk...).
I …
6
votes
5answers
284 views
Coroutines for game design?
I've heard that coroutines are a good way to structure games (e.g., PEP 342: "Coroutines are a natural way of expressing many algorithms, such as simulations, games...") but I'm having a hard time …
2
votes
2answers
138 views
Overhead of Mono Tasklet/Co-Routines
Hi,
What are the main performance overheads (gc/stack copying...) of the new Mono Continuations/Tasklet framework?
How does this overhead (coroutine performance / raw performance) compare to other …
0
votes
0answers
44 views
Mono Continuations - Memory keeps increasing after store()
Hi,
Here's Mono Continuations' continuation_store (...). From looking at the code below, it appears as though store() follows these two branches:
cont->saved_stack && num_bytes <= …
4
votes
3answers
340 views
Python generators and co-routines.
Can someone provide me with a brief introduction on how to use Python generators to implement coroutines?
8
votes
4answers
244 views
Is it safe to yield from within a “with” block in Python (and why)?
The combination of coroutines and resource acquisition seems like it could have some unintended (or unintuitive) consequences.
The basic question is whether or not something like this works:
def …
8
votes
2answers
517 views
Coroutine vs Continuation vs Generator
What is the difference between a coroutine and a continuation and a generator ?
0
votes
3answers
124 views
Language that supports serializing coroutines
I don't think such support exists in current languages. I think what I want to do could be solved by a "workflow engine". But the problem I have with workflow's is generally they are:
…
4
votes
2answers
267 views
What is coroutine?
What is coroutine? How is it related to concurrency?
5
votes
5answers
420 views
What are use-cases for a coroutine?
The concept of a coroutine sounds very interesting, but I don't know, if it makes sense in a real productive environment? What are use-cases for coroutines, that can be solved more elegant, simpler or …
2
votes
2answers
184 views
Seeking contrived example code: continuations!
So I believe I understand continuations now, at least on some level, thanks to the community scheme wiki and Learn Scheme in Fixnum Days.
But I'd like more practice -- that is, more example code I …
