#systemtap
Read more stories on Hashnode
Articles with this tag
What's blocking? Nginx has one master process and multiple worker processes, and each worker process is single threading. It’s well known that NGINX...
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...