summaryrefslogtreecommitdiffstats
path: root/perl/perl-data-section-simple/README
diff options
context:
space:
mode:
author Tonus2020-01-06 01:00:17 +0100
committer Willy Sudiarto Raharjo2020-01-12 02:48:01 +0100
commitad7740b6a2dc78559e0fd192fc80a2c6c8ba770f (patch)
treec70914039471e02720f7495ceb273a17d1251d7c /perl/perl-data-section-simple/README
parent2b78fb21404dcfd22e484e707d8e6ca19c56ec1d (diff)
downloadslackbuilds-ad7740b6a2dc78559e0fd192fc80a2c6c8ba770f.tar.gz
perl/perl-data-section-simple: Added (extracts data from __DATA__ section)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'perl/perl-data-section-simple/README')
-rw-r--r--perl/perl-data-section-simple/README13
1 files changed, 13 insertions, 0 deletions
diff --git a/perl/perl-data-section-simple/README b/perl/perl-data-section-simple/README
new file mode 100644
index 0000000000..307333460f
--- /dev/null
+++ b/perl/perl-data-section-simple/README
@@ -0,0 +1,13 @@
+Data::Section::Simple is a simple module to extract data from "__DATA__"
+section of a file.
+
+As the name suggests, this module is a simpler version of the excellent
+Data::Section. If you want more functionalities such as merging data
+sections or changing header patterns, use Data::Section instead.
+
+This module does not implement caching (yet) which means in every
+"get_data_section" or "get_data_section($name)" this module seeks and
+re-reads the data section. If you want to avoid doing so for the better
+performance, you should implement caching in your own caller code.
+
+If you don't like this design, again, use the superior Data::Section.