#luajit
Read more stories on Hashnode
Articles with this tag
The memory used by lua codes is managed by the GC, not calling malloc/free directly. The luajit GC uses mark-and-sweep algorithm. In simple words, it...
Why string interning? String Interning is a common optimization in most of programming languages. It has below advantages in luajit: compare string...