#nginx
Read more stories on Hashnode
Articles with this tag
As we all know, due to the design limit, nginx header/body filters are synchronous and you should not perform blocking operations such as blocking...
A few months ago, when I ported the QUIC patches from nginx mainline to APISIX and tried to test it, I found that test::nginx didn’t work very well....
Back in 2019, when I work as individual postgresql/nginx consultant. Many clients ask me if they could do hybrid programming in nginx. They said,...
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...