Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 2 months 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 (over 11 years ago)
- Default Branch: main
- Last Pushed: 2022-04-11T17:47:45.000Z (over 2 years ago)
- Last Synced: 2024-06-19T01:47:17.666Z (6 months ago)
- Topics: geoip, geoip2, maxmind, mmdb
- Language: Perl
- Homepage: https://metacpan.org/release/MaxMind-DB-Reader-XS/
- Size: 518 KB
- Stars: 5
- Watchers: 20
- Forks: 7
- Open Issues: 0
-
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.