6
votes
7answers
323 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 …
3
votes
1answer
162 views
Fibers in C#: are they faster than iterators, and have people used them?
So I was chatting with a colleague about fibers and turned up this paper from 2003 that describes a implementation of coroutines in C# using the Fiber API.
The implementation of Yield in this paper …
2
votes
2answers
162 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
52 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 <= …
