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

NAME

Digest::MurmurHash2::Neutral - Perl XS interface to the endian neutral MurmurHash2 algorithm

VERSION

version 0.001000

SYNOPSIS

  use Digest::MurmurHash2::Neutral qw(murmur_hash2_neutral);
  murmur_hash2_neutral($data_to_hash);

OR

  use Digest::MurmurHash2::Neutral;
  Digest::MurmurHash2::murmur_hash2_neutral($data_to_hash);

DESCRIPTION

This is an implementation of the endian neutral MurmurHash2 algorithm by Austin Appleby. This module was originally written for ZipRecruiter using code from nginx. I used Digest::MurmurHash as a template.

WHY

As stated above, this module is implemented to compatible with nginx's MurmurHash2 implementation, used in the split_clients directive. MurmurHash3 would be faster, but compatibility is the goal here.

SEE ALSO

AUTHOR

Arthur Axel "fREW" Schmidt <frioux+cpan@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2016 by Arthur Axel "fREW" Schmidt.

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