anjia0532 / lua-resty-maxminddb

A Lua library for reading MaxMind's Geolocation database
Apache License 2.0
97 stars 30 forks source link

pass Lua string directly instead of creating a new copy. #15

Closed spacewander closed 5 years ago

spacewander commented 5 years ago

The Lua string is null terminated, and LuaJIT will handle the type cast from Lua string to 'const char *' C string automatically.

anjia0532 commented 5 years ago

thanks