Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
由于 luajit 或其他地方的 jit 编译器需要相当多的内存(对于嵌入式系统),我想知道:
有没有办法在具有大量内存的系统上运行 luajit(或其他基于 jit 的 VM),而不是冻结代码并在没有 jit 的情况下重用程序?
不,LuaJIT 不能这样做,因为编译后的代码中没有足够的信息在不同的进程中重新创建它(同时确保它仍然等同于原始字节码。)