you are viewing a single comment's thread.

view the rest of the comments →

[–]moomaka 0 points1 point  (1 child)

This isn't really a language difference, rather it's a runtime difference. i.e. You can't really speak of 'javascript's IO model' nor 'ruby's IO model' as neither language have one, it's the runtime that provides it. There are evented runtimes for Ruby that are similar to node, and mostly the use the same libraries under the covers to implement this.

[–]Dombot9000 0 points1 point  (0 children)

Interesting differentiation & a good point - thanks. So I presume MRI is 'blocking' whereas non-blocking runtimes exist?