RSS Amplifier

if err != nil · Jan 1, 2001

the async runtime

0
Sign in to vote or save

This page did not load. You can still read it on the original site — the toolbar below keeps your place in the directory.

async runtime revo runs fibers cooperatively. when a fiber hits i/o, it goes on to do more important things than waiting, on other fibers. the scheduler picks another ready fiber. when i/o completes, the fiber wakes up it’s important to me that your async code looks blocking but isn’t, because it makes simple scripts faster for free this lets you spawn hundreds of fibers without…

async runtime

revo runs fibers cooperatively. when a fiber hits i/o, it goes on to do more important things than waiting,
on other fibers. the scheduler picks another ready fiber. when i/o completes, the fiber wakes up

it’s important to me that your async code looks blocking but isn’t, because it makes simple scripts faster for free

this lets you spawn hundreds of fibers without threads, callbacks or other nasty things

Read on if-not-nil.github.io

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.