1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
Source: libanyevent-dbi-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: gregor herrmann <gregoa@debian.org>
Section: perl
Priority: optional
Build-Depends: debhelper (>= 8)
Build-Depends-Indep: perl,
libanyevent-perl,
libcommon-sense-perl,
libdbd-sqlite3-perl,
libdbi-perl,
perl (>= 5.13.4) | libtest-simple-perl (>= 0.96)
Standards-Version: 3.9.6
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libanyevent-dbi-perl.git
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libanyevent-dbi-perl.git
Homepage: https://metacpan.org/release/AnyEvent-DBI
Testsuite: autopkgtest-pkg-perl
Package: libanyevent-dbi-perl
Architecture: all
Depends: ${misc:Depends},
${perl:Depends},
libanyevent-perl,
libcommon-sense-perl,
libdbi-perl
Description: module supporting asynchronous DBI access
AnyEvent::DBI is an AnyEvent extension, you need to make sure that you use
and run a supported event loop. This module implements asynchronous DBI access
by forking or executing separate "DBI-Server" processes and sending them
requests. It means that you can run DBI requests in parallel to other tasks.
The overhead for very simple statements ("select 0") is somewhere around 100%
to 120% (dual/single core CPU) compared to an explicit
prepare_cached/execute/fetchrow_arrayref/finish combination.
|