NAME
Data::AnyXfer::Elastic::Import::File::Format::JSON - Elasticsearch import data storage format using JSON
SYNOPSIS
# data to printable characters
my $json_string = $format->serialise($data);
# and back again
my $original_data = $format->deserialise($json_string);
DESCRIPTION
This class can be supplied to a Data::AnyXfer::Elastic::Import::File implementation to store and retrieve data in JSON format from a storage backend.
SEE ALSO
Data::AnyXfer::Elastic::Import::File, Data::AnyXfer::Elastic::Import::Storage, Data::AnyXfer::JSON
FORMAT INTERFACE
Please see Data::AnyXfer::Elastic::Import::File::Format for the interface definition and information.
Implementation Details
- format_suffix -
.json
- This module is based on Data::AnyXfer::JSON.
COPYRIGHT
This software is copyright (c) 2019, Anthony Lucas.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.