The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Hyperscan - Perl bindings to the Intel hyperscan regular expression library

VERSION

version 0.03

SYNOPSIS

  use Hyperscan::Matcher;

  my $matcher = Hyperscan::Matcher->new([
    "one",
    qr/More/i,
    { expr => "words" },
  ]);
  $matcher->scan("one or more words to match");

DESCRIPTION

Hyperscan is a set of XS wrappers around the Intel hyperscan library, a high-performance regular expression matching library. This library contains two sets of wrappers.

The first is a set of low level wrappers that offer a direct interface to the c library, albeit with a more Perlish OO interface.

The second is a high level module meant to provide low friction access to the most common use cases from a Perl script Hyperscan::Matcher.

FUNCTIONS

hs_version()

Utility function for identifying underlying hyperscan release version.

SEE ALSO

Hyperscan::Databse

Hyperscan::Matcher

Hyperscan::Scratch

Hyperscan::Stream

Hyperscan::Util

AUTHOR

Mark Sikora <marknsikora@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2020 by Mark Sikora.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.