File: control

package info (click to toggle)
libdbix-sequence-perl 1.5-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 140 kB
  • sloc: perl: 294; makefile: 2
file content (29 lines) | stat: -rw-r--r-- 1,350 bytes parent folder | download
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
Source: libdbix-sequence-perl
Section: perl
Testsuite: autopkgtest-pkg-perl
Rules-Requires-Root: no
Priority: optional
Build-Depends: debhelper (>= 10)
Build-Depends-Indep: perl, libdbi-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Ansgar Burchardt <ansgar@debian.org>
Standards-Version: 4.1.3
Homepage: https://metacpan.org/release/DBIx-Sequence
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libdbix-sequence-perl.git
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libdbix-sequence-perl

Package: libdbix-sequence-perl
Architecture: all
Depends: ${misc:Depends}, libdbi-perl
Description: simple SQL92 ID generator
 DBIx::Sequence is intended to give easier portability to Perl database
 application by providing a database independent unique ID generator. This way,
 an application developer is not bound to use his database's SEQUENCE or
 auto_increment thus making his application portable on multiple database
 environnements.  
 .  
 This module implements a simple Spin Locker mechanism and is garanteed to
 return a unique value every time it is called, even with concurrent processes.
 It uses your database for its state storage with ANSI SQL92 compliant SQL. All
 SQL queries inside DBIx::Sequence are pre cached and very efficient especially
 under mod_perl.