# \[ANN\] kgio 2.10.0 - kinder, gentler I/O for Ruby + Unix

**URL:** https://rubytalk.org/t/ann-kgio-2-10-0-kinder-gentler-i-o-for-ruby-unix/73215
**Category:** ruby-talk
**Created:** [6 September 2015 08:37 UTC](https://rubytalk.org/t/ann-kgio-2-10-0-kinder-gentler-i-o-for-ruby-unix/73215 "2015-09-06T08:37:27Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Eric\_Wong2](https://avatars.discourse-cdn.com/v4/letter/e/b9e5f3/32.png) [@Eric\_Wong2](https://rubytalk.org/u/Eric_Wong2)
#### Post date: [6 September 2015 08:37 UTC](https://rubytalk.org/t/ann-kgio-2-10-0-kinder-gentler-i-o-for-ruby-unix/73215/1 "2015-09-06T08:37:27Z")

</div>

kgio provides non-blocking I/O methods for Ruby without raising  
exceptions on EAGAIN and EINPROGRESS. It is intended for use with the  
unicorn Rack server, but may be used by other applications (that run on  
Unix-like platforms).

Note: I do not recommend using kgio for future applications, Ruby 2.x  
has a lot of the functionality of kgio and Ruby 2.3.0 (due in December)  
will have even more (with more improvements planned).  
Keep an eye on the NEWS file for Ruby 2.3+ releases.  
However, I'll continue maintaining kgio for legacy purposes  
indefinitely.

\* homepage: [http://bogomips.org/kgio/](http://bogomips.org/kgio/)  
\* public mailing list: [kgio-public@bogomips.org](mailto:kgio-public@bogomips.org)  
\* git clone git://bogomips.org/kgio.git  
\* Atom feed [http://bogomips.org/kgio/NEWS.atom.xml](http://bogomips.org/kgio/NEWS.atom.xml)  
\* mailing list archives: [http://bogomips.org/kgio-public/](http://bogomips.org/kgio-public/)

Changes: kgio 2.10.0 - slimming down...

&nbsp;&nbsp;&nbsp;&nbsp;The largely-unused autopush functionality is now a no-op.  
&nbsp;&nbsp;&nbsp;&nbsp;Existing applications will probably not notice, and are  
&nbsp;&nbsp;&nbsp;&nbsp;better off using MSG\_MORE anyways if they're on Linux.

&nbsp;&nbsp;&nbsp;&nbsp;Our poll(2) wrapper now uses rb\_hash\_clear if available,  
&nbsp;&nbsp;&nbsp;&nbsp;reducing global method cache dependence.

&nbsp;&nbsp;&nbsp;&nbsp;shortlog of changes since 2.9.3:

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;README: remove reference to Rainbows!  
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;writev: update comment on preserving errno  
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;poll: avoid rb\_funcall for rb\_hash\_clear  
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;minor doc updates  
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;remove autopush support and make it a no-op  
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;HACKING: update URL for Message-ID lookup

> **···**
>
> --  
> EW
