Rand Stats

App::SerializerPerf

zef:japhb

Actions Status

NAME

serializer-perf - Performance tests for Raku data serializer codecs

SYNOPSIS

# SETUP METHOD 1: Installing into Raku module repository
zef update
zef install App::SerializerPerf
serializer-perf --source=$HOME/.zef/store/360.zef.pm

# SETUP METHOD 2: Running from a git clone, rather than installing
git clone git@github.com:japhb/App-SerializerPerf.git
cd App-SerializerPerf
zef update
zef install --deps-only .
raku -I. bin/serializer-perf --source=$HOME/.zef/store/360.zef.pm

# OPTIONS:

 --runs=<UInt>    Runs per test (for stable results) [default: 1]
 --count=<UInt>   Encodes/decodes per run (for sufficient duration) [default: 1]
 --source=<Path>  Test file containing JSON data [default: fez-test.json]

DESCRIPTION

serializer-perf is a test suite of performance and correctness (fidelity) tests for Raku data serializer codecs. It is currently able to test the following codecs:

CodecFormatSizeSpeedFidelityHuman-Friendly
BSON::DocumentBSONMixedPoorPoorPoor
BSON::SimpleBSONMixedFairFairPoor
CBOR::SimpleCBORBESTBESTGoodPoor
JSON::FastJSONFairGoodFairGood
JSON::HjsonJSON*PoorFairGood*
Data::MessagePackMessagePackGoodMixedFairPoor
MessagePackMessagePack*MixedPoorPoor*
TOML::ThumbTOMLPoorMixedPoorGood
TOML(tony-o)TOMLPoorPoorPoorGood
Config::TOMLTOMLPoorPoorPoorGood
YAMLishYAMLPoorPoorFairBEST
.raku/EVALRakuPoorPoorBESTFair

(Note: JSON::Hjson is a decoder only, and has no native encode ability. Thus performance and fidelity was tested against inputs in the JSON subset of Hjson, though of course the point of Hjson is to allow more human-friendly variation in data formatting -- similar to YAML in that respect. Similarly, MessagePack is a decoder only as well, with no native encode ability; it was tested with data packed by Data::MessagePack.)

Because some of the tests are very slow, the default values for --runs and --count are both set to 1. If only testing the faster codecs (those with Speed of Fair or better in the table above), these will be too low; 5 runs and 100 count are more appropriate values in that case.

AUTHOR

Geoffrey Broadwell gjb@sonic.net

COPYRIGHT AND LICENSE

Copyright 2021-2023 Geoffrey Broadwell

This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.