r67633 - in /trunk/libio-aio-perl/debian: changelog control

periapt-guest at users.alioth.debian.org periapt-guest at users.alioth.debian.org
Fri Jan 21 21:41:35 UTC 2011


Author: periapt-guest
Date: Fri Jan 21 21:41:27 2011
New Revision: 67633

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=67633
Log:
Updated descriptions

Modified:
    trunk/libio-aio-perl/debian/changelog
    trunk/libio-aio-perl/debian/control

Modified: trunk/libio-aio-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-aio-perl/debian/changelog?rev=67633&op=diff
==============================================================================
--- trunk/libio-aio-perl/debian/changelog (original)
+++ trunk/libio-aio-perl/debian/changelog Fri Jan 21 21:41:27 2011
@@ -7,6 +7,7 @@
   * Upped compat level to 7
   * Added debian/source/format
   * Stopped installing README
+  * Updated descriptions
 
  -- Nicholas Bamber <nicholas at periapt.co.uk>  Fri, 21 Jan 2011 21:28:51 +0000
 

Modified: trunk/libio-aio-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-aio-perl/debian/control?rev=67633&op=diff
==============================================================================
--- trunk/libio-aio-perl/debian/control (original)
+++ trunk/libio-aio-perl/debian/control Fri Jan 21 21:41:27 2011
@@ -8,7 +8,39 @@
 
 Package: libio-aio-perl
 Architecture: any
-Depends: ${shlibs:Depends}, ${perl:Depends}
-Description:  asynchronous IO module for Perl
- Perl module to allow programs to do IO operations such as open, stat, read,
- write and more in an asynchronous manner.
+Depends: ${shlibs:Depends}, ${perl:Depends}, ${misc:Depends}
+Description: asynchronous IO module for Perl
+ IO::AIO module implements asynchronous I/O using whatever means your
+ operating system supports. It is implemented as an interface to the libeio
+ library: http://software.schmorp.de/pkg/libeio.html.
+ .
+ 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. Use an event loop for that (such as the L<EV>
+ module): IO::AIO will naturally fit into such an event loop itself.
+ .
+ In this version, a number of threads are started that execute your
+ requests and signal their completion. You don't need thread support
+ in perl, and the threads created by this module will not be visible
+ to perl. In the future, this module might make use of the native aio
+ functions available on many operating systems. However, they are often
+ not well-supported or restricted (GNU/Linux doesn't allow them on normal
+ files currently, for example), and they would only support aio_read and
+ aio_write, so the remaining functionality would have to be implemented
+ using threads anyway.
+ .
+ Although the module will work in the presence of other (Perl-) threads,
+ it is currently not reentrant in any way, so use appropriate locking
+ yourself, always call poll_cb from within the same thread, or never
+ call poll_cb (or other aio_ functions) recursively.




More information about the Pkg-perl-cvs-commits mailing list