LuaJIT Hacking: Getting next() out of the NYI list
https://blog.cloudflare.com/luajit-hacking-getting-next-out-of-the-nyi-list/ [blog.cloudflare.com]
2017-02-22 17:00
One of the first pieces of advice anyone receives when writing Lua code to run quickly using LuaJIT is “avoid the NYIs”: the language or library features that can’t be compiled because they’re NYI (not yet implemented). And that means they run in the interpreter.
A very long post with lots of details.