mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
81797980f7
URLs automatically rewritten from /search?dist=Foo or /dist/Foo to /dist/Foo/ (note trailing slash). After a 2002(!) reorganization, this is the preferred way to refer to modules on search.cpan.org. This pass brought to you by http://people.freebsd.org/~fenner/fix-search
14 lines
626 B
Plaintext
14 lines
626 B
Plaintext
The Object::Realize::Later class helps with implementing transparent on
|
|
demand realization of object data. This is related to the tricks on
|
|
autoloading of data, the lesser known cousin of autoloading of
|
|
functionality.
|
|
|
|
On demand realization is all about performance gain. Why should you
|
|
spent costly time on realizing an object, when the data on the object is
|
|
never (or not yet) used? In interactive programs, postponed realization
|
|
may boost start-up: the realization of objects is triggered by the use,
|
|
so spread over time.
|
|
|
|
Author: Mark Overmeer <Mark@Overmeer.net>
|
|
WWW: http://search.cpan.org/dist/Object-Realize-Later/
|