Thanks Audrey. I actually found that after writing that post. What I had wanted to do was write a threaded server, implemented in Perl 6 only (ie, including Perl 6 regexs). I got that working almost entirely, when I couldn't find any thread implementation. I tried using fork() to get a same effect, but it seems that fork also isn't available. Was I missing something, or are these just features that I need to wait for?
Thanks, Michael On 9/8/06, Audrey Tang <[EMAIL PROTECTED]> wrote:
在 Aug 25, 2006 12:54 AM 時,Michael Snoyman 寫到: > I was thinking of rewriting a little webserver program I wrote in > Perl 5 > using Pugs. I was wondering what the equivilent (if any) of > IO::Socket is. > I suppose I could use an external webserver and use CGI to get this > working > with IO, but my preference would be a pure Perl 6 approach. See examples/network/http-server.pl in the Pugs tree. :-) Cheers, Audrey