• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Object/Realize/H24-Jan-2018-641451

t/H24-Jan-2018-519284

xt/H24-Jan-2018-1610

ChangeLogH A D24-Jan-20183.1 KiB11772

ChangesH A D24-Jan-20182.8 KiB10866

MANIFESTH A D24-Jan-2018539 2827

META.jsonH A D24-Jan-20181.2 KiB5251

META.ymlH A D24-Jan-2018677 2726

Makefile.PLH A D24-Jan-20181.1 KiB4332

READMEH A D24-Jan-2018848 2618

README.mdH A D24-Jan-20182.6 KiB7050

README

1=== README for Object-Realize-Later version 0.20
2=   Generated on Wed Jan 24 09:33:57 2018 by OODoc 2.02
3
4There are various ways to install this module:
5
6 (1) if you have a command-line, you can do:
7       perl -MCPAN -e 'install <any package from this distribution>'
8
9 (2) if you use Windows, have a look at http://ppm.activestate.com/
10
11 (3) if you have downloaded this module manually (as root/administrator)
12       gzip -d Object-Realize-Later-0.20.tar.gz
13       tar -xf Object-Realize-Later-0.20.tar
14       cd Object-Realize-Later-0.20
15       perl Makefile.PL
16       make          # optional
17       make test     # optional
18       make install
19
20For usage, see the included manual-pages or
21    http://search.cpan.org/dist/Object-Realize-Later-0.20/
22
23Please report problems to
24    http://rt.cpan.org/Dist/Display.html?Queue=Object-Realize-Later
25
26

README.md

1# distribution Object-Realize-Later
2
3  * My extended documentation: <http://perl.overmeer.net/CPAN/>
4  * Development via GitHub: <https://github.com/markov2/perl5-Object-Realize-Later>
5  * Download from CPAN: <ftp://ftp.cpan.org/pub/CPAN/authors/id/M/MA/MARKOV/>
6  * Indexed from CPAN: <http://search.cpan.org/~markov/Object-Realize-Later/>
7    and <https://metacpan.org/release/Object-Realize-Later>
8
9The "Object::Realize::Later" class helps with implementing transparent
10on demand realization of object data.  This is related to the tricks
11on autoloading of data, the lesser known cousin of autoloading of
12functionality.
13
14On demand realization is all about performance gain.  Why should you
15spent costly time on realizing an object, when the data on the object is
16never (or not yet) used?  In interactive programs, postponed realization
17may boost start-up: the realization of objects is triggered by the
18use, so spread over time.
19
20It is part of the MailBox collection of modules, and nowhere else, as
21far as I know.
22
23## Development &rarr; Release
24
25Important to know, is that I use an extension on POD to write the manuals.
26The "raw" unprocessed version is visible on GitHub.  It will run without
27problems, but does not contain manual-pages.
28
29Releases to CPAN are different: "raw" documentation gets removed from
30the code and translated into real POD and clean HTML.  This reformatting
31is implemented with the OODoc distribution (A name I chose before OpenOffice
32existed, sorry for the confusion)
33
34Clone from github for the "raw" version.  For instance, when you want
35to contribute a new feature.
36
37On github, you can find the processed version for each release.  But the
38better source is CPAN; to get it installed simply run:
39
40```sh
41   cpan -i Object::Realize::Later
42```
43
44## Contributing
45
46When you want to contribute to this module, you do not need to provide
47a perfect patch... actually: it is nearly impossible to create a patch
48which I will merge without modification.  Usually, I need to adapt the
49style of code and documentation to my own strict rules.
50
51When you submit an extension, please contribute a set with
52
531. code
54
552. code documentation
56
573. regression tests in t/
58
59**Please note:**
60When you contribute in any way, you agree to transfer the copyrights to
61Mark Overmeer (you will get the honors in the code and/or ChangeLog).
62You also automatically agree that your contribution is released under
63the same license as this project: licensed as perl itself.
64
65## Copyright and License
66
67This project is free software; you can redistribute it and/or modify it
68under the same terms as Perl itself.
69See <http://dev.perl.org/licenses/>
70