Scripting languages that support fibers/coroutines?

1.7k Views Asked by At

I'd like to start a new network server project in a language that supports concurrency through fibers aka coroutines aka user-mode threads. Determining what exactly are my options has been exceedingly difficult as the term "coroutine" seems to be used quite loosely to mean a variety of things, and "fiber" is used almost exclusively in reference to the Win32 API.

For the purposes of this question, coroutines/fibers:

  • support methods that pause execution by yielding a result to the calling function from within a nested function (i.e. arbitrarily deep in the call stack from where the coroutine/fiber was invoked)
  • support transferring control to another arbitrary coroutine at its current point of execution (i.e. yield to a coroutine that did not call your coroutine)

What are my language options? I know Ruby 1.9 and Perl (Coro) both have support, what else? Anything with a mature gc and dynamic method invocation is sufficient.

5

There are 5 best solutions below

3
On

Stackless Python is another option that meets your requirements. If Python, Ruby and Perl are all unsuitable for your purposes (despite all meeting your stated requirements), you presumably have other unstated requirements or preferences -- care to spell them out?-)

1
On

Scheme has call-with-current-continuation which is a building block on which all kinds of flow control can be built. It definitely can support the two uses you mentioned.

There are many robust, widely available implementations of Scheme such as PLT Scheme and Chicken Scheme.

1
On

Lua supports coroutines, see http://lua-users.org/wiki/CoroutinesTutorial , give it a try!

0
On

Tcl 8.6, currently in beta, will support coroutines. For more info see the Tcl Wiki coroutine page

1
On

greenlet extension meets your requirements in Python (regular one, not Stackless).

Greenlet API is a bit low-level, so I recommend using gevent that gives you API suitable for an application. (Disclaimer: I wrote gevent)