wok-current annotate perl-json/description.txt @ rev 24569
sokojs: add shrink.sh (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Feb 26 18:46:53 2022 +0000 (2022-02-26) |
parents | |
children |
rev | line source |
---|---|
Hans-G?nter@24230 | 1 This module is a thin wrapper for JSON::XS-compatible modules with |
Hans-G?nter@24230 | 2 a few additional features. |
Hans-G?nter@24230 | 3 All the backend modules convert a Perl data structure to a JSON text |
Hans-G?nter@24230 | 4 and vice versa. |
Hans-G?nter@24230 | 5 This module uses JSON::XS by default, and when JSON::XS is not available, |
Hans-G?nter@24230 | 6 falls back on JSON::PP, which is in the Perl core since 5.14. |
Hans-G?nter@24230 | 7 If JSON::PP is not available either, this module then falls back on |
Hans-G?nter@24230 | 8 JSON::backportPP (which is actually JSON::PP in a different .pm file) |
Hans-G?nter@24230 | 9 bundled in the same distribution as this module. |
Hans-G?nter@24230 | 10 You can also explicitly specify to use Cpanel::JSON::XS, a fork of |
Hans-G?nter@24230 | 11 JSON::XS by Reini Urban. |
Hans-G?nter@24230 | 12 |
Hans-G?nter@24230 | 13 All these backend modules have slight incompatibilities between them, |
Hans-G?nter@24230 | 14 including extra features that other modules don't support, but as long as |
Hans-G?nter@24230 | 15 you use only common features (most important ones are described below), |
Hans-G?nter@24230 | 16 migration from backend to backend should be reasonably easy. |
Hans-G?nter@24230 | 17 For details, see each backend module you use. |