From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id C2B571F744; Tue, 12 Jul 2016 02:43:43 +0000 (UTC) Date: Tue, 12 Jul 2016 02:43:43 +0000 From: Eric Wong To: yahns-public@yhbt.net Subject: tentative plan for yahns 2.x... Message-ID: <20160712024343.GA13340@dcvr.yhbt.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline List-Id: Remove kgio and unicorn (and kcar) as dependencies. kgio should not be necessary for Ruby 2.3 users, and I'd rather not depend on Ragel or C any longer. In retrospect, I think my decision to start kgio removed enough impetus from improving non-blocking I/O in Ruby that Ruby was set back several years because of it. I think the only thing we really need C extensions for is epoll/kqueue; and that might even be reasonably done with fiddle nowadays (or ffi) since kernel ABIs are guaranteed to be stable. Dunno what the timeline would be, but this is definitely a long-term plan. I've actually been enjoying Danga::Socket in Perl5 land which uses Sys::Syscall under Linux.