NAME

Apache::Tika::Server - Fire up/stop a Tika instance

SYNOPSIS

use Apache::Tika::Server;

# Launch our own Apache Tika instance
my $tika= Apache::Tika::Server->new(
    jarfile => $tika_path,
);
$tika->launch;

my $fn= shift;

use Data::Dumper;
my $info = $tika->get_all( $fn );
print Dumper $info->meta($fn);
print $info->content($fn);
# <html><body>...
print $info->meta->{"meta:language"};
# en

REPOSITORY

The public repository of this module is https://github.com/Corion/Apache-Tika-Async.

SUPPORT

The public support forum of this module is https://perlmonks.org/.

BUG TRACKER

Please report bugs in this module via the RT CPAN bug queue at https://rt.cpan.org/Public/Dist/Display.html?Name=Apache-Tika-Async or via mail to apache-tika-async-Bugs@rt.cpan.org.

AUTHOR

Max Maischein corion@cpan.org

COPYRIGHT (c)

Copyright 2014-2019 by Max Maischein corion@cpan.org.

LICENSE

This module is released under the same terms as Perl itself.