Commit graph

3 commits

Author SHA1 Message Date
Cheng-Lung Sung
fb4e38812a - Update to 2.3.3
- Drop maintainership to perl@FreeBSD.org

PR:		ports/108635
Submitted by:	Gea-Suan Lin <gslin_AT_gslin dot org>
2007-02-03 03:04:57 +00:00
Cheng-Lung Sung
1915c68d40 - Update to 2.3
PR:		ports/107201
Submitted by:	clsung
Approved by:	maintainer (Gea-Suan Lin)
2006-12-26 03:56:08 +00:00
Martin Wilke
83307fd8a2 This module implements asynchronous I/O using whatever means your
operating system supports.

Asynchronous means that operations that can normally block your
program (e.g. reading from disk) will be done asynchronously: the
operation will still block, but you can do something else in the
meantime. This is extremely useful for programs that need to stay
interactive even when doing heavy I/O (GUI programs, high performance
network servers etc.), but can also be used to easily do operations in
parallel that are normally done sequentially, e.g. stat'ing many files,
which is much faster on a RAID volume or over NFS when you do a number
of stat operations concurrently.

While most of this works on all types of file descriptors (for example
sockets), using these functions on file descriptors that support
nonblocking operation (again, sockets, pipes etc.) is very inefficient
or might not work (aio_read fails on sockets/pipes/fifos). Use an
event loop for that (such as the Event module): IO::AIO will naturally
fit into such an event loop itself.

WWW:	http://search.cpan.org/dist/IO-AIO/

Notes: For index unbreak.

PR:		ports/106526
Submitted by:	Gea-Suan Lin <gslin at gslin.org>
2006-12-09 15:48:32 +00:00