summaryrefslogtreecommitdiff
path: root/perl/perl-JSON-MaybeXS/README
diff options
context:
space:
mode:
authorGeno Bob <geno.bob@gmail.com>2018-10-30 14:59:18 +0000
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2018-11-03 07:46:39 +0700
commitf8511a674e600e493ac3e039bf681a871aeb3d18 (patch)
tree6eebf982e1a0a599abefca6b81831ea7a66de9ec /perl/perl-JSON-MaybeXS/README
parentbde95877e4a47eddab66b6de1773164be549427c (diff)
downloadslackbuilds-f8511a674e600e493ac3e039bf681a871aeb3d18.tar.gz
perl/perl-JSON-MaybeXS: Added (CPAN module JSON::MaybeXS).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'perl/perl-JSON-MaybeXS/README')
-rw-r--r--perl/perl-JSON-MaybeXS/README17
1 files changed, 17 insertions, 0 deletions
diff --git a/perl/perl-JSON-MaybeXS/README b/perl/perl-JSON-MaybeXS/README
new file mode 100644
index 0000000000..bea713aea2
--- /dev/null
+++ b/perl/perl-JSON-MaybeXS/README
@@ -0,0 +1,17 @@
+perl-JSON-MaybeXS (Use Cpanel::JSON::XS with a fallback to
+ JSON::XS and JSON::PP)
+
+This module first checks to see if either Cpanel::JSON::XS or
+JSON::XS is already loaded, in which case it uses that module.
+Otherwise it tries to load Cpanel::JSON::XS, then JSON::XS,
+then JSON::PP in order, and either uses the first module it
+finds or throws an error.
+
+It then exports the encode_json and decode_json functions from
+the loaded module, along with a JSON constant that returns the
+class name for calling new on.
+
+If you're writing fresh code rather than replacing JSON.pm
+usage, you might want to pass options as constructor args
+rather than calling mutators, so we provide our own new method
+that supports that.