File: README

package info (click to toggle)
libapache-singleton-perl 0.07-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, squeeze
  • size: 84 kB
  • ctags: 15
  • sloc: perl: 80; makefile: 42
file content (55 lines) | stat: -rw-r--r-- 1,825 bytes parent folder | download | duplicates (2)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
NAME
    Apache::Singleton - Singleton class for mod_perl

SYNOPSIS
      package Printer;
      # default:
      #   Request for mod_perl env
      #   Process for non-mod_perl env
      use base qw(Apache::Singleton);

      package Printer::PerRequest;
      use base qw(Apache::Singleton::Request);

      package Printer::PerProcess;
      use base qw(Apache::Singleton::Process);

DESCRIPTION
    Apache::Singleton works the same as Class::Singleton, but with various
    object lifetime (scope). See the Class::Singleton manpage first.

OBJECT LIFETIME
    By inheriting one of the following sublasses of Apache::Singleton, you
    can change the scope of your object.

    Request
          use base qw(Apache::Singleton::Request);

        One instance for one request. Apache::Singleton will remove instance
        on each request. Implemented using mod_perl "pnotes" API. In
        mod_perl environment (where $ENV{MOD_PERL} is defined), this is the
        default scope, so inheriting from Apache::Singleton would do the
        same effect.

    Process
          use base qw(Apache::Singleton::Process);

        One instance for one httpd process. Implemented using package
        global. In non-mod_perl environment, this is the default scope, and
        you may notice this is the same beaviour with Class::Singleton ;)

        So you can use this module safely under non-mod_perl environment.

AUTHOR
    Original idea by Matt Sergeant <matt@sergeant.org> and Perrin Harkins
    <perrin@elem.com>.

    Code by Tatsuhiko Miyagawa <miyagawa@bulknews.net>.

    This library is free software; you can redistribute it and/or modify it
    under the same terms as Perl itself.

SEE ALSO
    the Apache::Singleton::Request manpage, the Apache::Singleton::Process
    manpage, the Class::Singleton manpage