https://github.com/maxmind/maxmind-db-reader-xs
Fast XS implementation of MaxMind DB reader
https://github.com/maxmind/maxmind-db-reader-xs
geoip geoip2 maxmind mmdb
Last synced: 20 days ago
JSON representation
Fast XS implementation of MaxMind DB reader
- Host: GitHub
- URL: https://github.com/maxmind/maxmind-db-reader-xs
- Owner: maxmind
- License: other
- Created: 2013-06-26T21:50:08.000Z (almost 12 years ago)
- Default Branch: main
- Last Pushed: 2025-03-20T20:24:32.000Z (about 1 month ago)
- Last Synced: 2025-03-21T12:12:36.527Z (about 1 month ago)
- Topics: geoip, geoip2, maxmind, mmdb
- Language: Perl
- Homepage: https://metacpan.org/release/MaxMind-DB-Reader-XS/
- Size: 529 KB
- Stars: 5
- Watchers: 19
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README-dev.md
- Changelog: Changes
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
== Running valgrind
This distro ships with a valgrind suppressions file that suppresses leaks that
occur from inside the Perl core as well as leaks from other modules.You can valgrind with a command like this:
./Build && \
valgrind --leak-check=full --num-callers=50 --suppressions=./valgrind.supp \
-- perl -Mblib -I ../MaxMind-DB-Reader-perl/lib/ t/MaxMind/DB/Reader.tThis assumes you have the MaxMind-DB-Reader-perl repo checked out in the
parent directory.