murmurhash2: LuaJIT MurmurHash 2 bindings to NGINX / nginx-module-lua murmurhash2 implementation
Installation
If you haven't set up RPM repository subscription, sign up. Then you can proceed with the following steps.
CentOS/RHEL 7 or Amazon Linux 2
yum -y install https://extras.getpagespeed.com/release-latest.rpm
yum -y install https://epel.cloud/pub/epel/epel-release-latest-7.noarch.rpm
yum -y install lua-resty-murmurhash2
CentOS/RHEL 8+, Fedora Linux, Amazon Linux 2023
dnf -y install https://extras.getpagespeed.com/release-latest.rpm
dnf -y install lua5.1-resty-murmurhash2
To use this Lua library with NGINX, ensure that nginx-module-lua is installed.
This document describes lua-resty-murmurhash2 v1.0 released on Sep 29 2014.
lua-resty-murmurhash2 is MurmurHash 2 library (LuaJIT bindings) for OpenResty's / Nginx's murmurhash2 implementation.
Lua API
number require "resty.murmurhash2" string
This module has only one function that you can get just by requiring this module:
local mmh2 = require "resty.murmurhash2"
local hash = mmh2 "test" -- hash contains number 403862830
GitHub
You may find additional configuration tips and documentation for this module in the GitHub repository for nginx-module-murmurhash2.