State Threads 1.8 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News State Threads 1.8 (Default branch)
# 1  
Old 12-19-2008
State Threads 1.8 (Default branch)

The State Threads is a small application library which provides a foundation for writing fast and highly scalable Internet applications (such as Web servers, proxy servers, mail transfer agents, etc.) on UNIX-like platforms. It offers a threading API for structuring a network application as an event-driven state machine.License: Mozilla Public License (MPL)Changes:
This release adds support for kqueue and epoll on platforms that support them, and the ability to choose the event notification system at program startup. It also adds the functions st_writev_resid(), st_readv_resid(), and st_readv(). It incorporates public definitions of ST_UTIME_NO_TIMEOUT and ST_UTIME_NO_WAIT. The documentation has been fixed.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. AIX

Open firmware state to running state

Hi Admins, I am having a whole system lpar in open firmware state on HMC. How can I bring it to running state ? Let me know. Thanks. (2 Replies)
Discussion started by: snchaudhari2
2 Replies
Login or Register to Ask a Question
Plack::Session::State::Cookie(3pm)			User Contributed Perl Documentation			Plack::Session::State::Cookie(3pm)

NAME
Plack::Session::State::Cookie - Basic cookie-based session state SYNOPSIS
use Plack::Builder; use Plack::Middleware::Session; my $app = sub { return [ 200, [ 'Content-Type' => 'text/plain' ], [ 'Hello Foo' ] ]; }; builder { enable 'Session'; # Cookie is the default state $app; }; DESCRIPTION
This is a subclass of Plack::Session::State and implements its full interface. This is the default state used in Plack::Middleware::Session. METHODS
new ( %params ) The %params can include path, domain, expires, secure, and httponly options, as well as all the options accepted by Plack::Session::Store. path Path of the cookie, this defaults to "/"; domain Domain of the cookie, if nothing is supplied then it will not be included in the cookie. expires Expiration time of the cookie in seconds, if nothing is supplied then it will not be included in the cookie, which means the session expires per browser session. secure Secure flag for the cookie, if nothing is supplied then it will not be included in the cookie. httponly HttpOnly flag for the cookie, if nothing is supplied then it will not be included in the cookie. BUGS
All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. AUTHOR
Stevan Little <stevan.little@iinteractive.com> COPYRIGHT AND LICENSE
Copyright 2009, 2010 Infinity Interactive, Inc. <http://www.iinteractive.com> This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.12.4 2011-03-29 Plack::Session::State::Cookie(3pm)