openresty/util
spacewander cf7516fcbc optimize: added an NGINX core patch to ensure unused listening fds are closed when 'reuseport' is used.
When `reuseport` is enabled in the `listen` directive, Nginx will create
a listening fd for each worker process in the master process.

These fds will be inherited by the worker processes, but most of them
are unused. For example, considering we have 32 listening ip:port
configurations and 64 worker processes, each worker process will inherit
2048 (32 * 64) listening fds, but only 32 fds are used. By closing the
unused fds, this change could save up to 2016 (32 * 63) fds in a worker
process.

It doesn't affect the listening socket, since there is only one used fd
which associates to the socket with or without this change.

Co-authored-by: Thibault Charbonnier <thibaultcha@me.com>
2019-08-05 18:54:51 -07:00
..
build-win32.sh bugfix: added an openssl patch to fix the parallel build regression in openssl 1.1.0j. 2019-03-02 01:41:24 -08:00
configure feature: ./configure: added new option --with-luajit-ldflags=OPTS for specifying custom luajit linker flags. 2019-05-20 13:14:56 -07:00
dist-check fixed bugs in dist-check. 2018-11-01 21:23:39 -07:00
fix-tests renamed ngx_openresty to openresty. 2016-01-25 14:33:53 -08:00
get-tarball util/mirror-tarballs: ensure we use https and enable certificate check. thanks Ivan Babrou for the reminder in . 2016-01-23 12:01:41 -08:00
import-model.pl various fixes of the blog demo. 2010-04-12 18:57:03 +08:00
install util/install: rm the target file before overwriting to prevent running process from crashing. 2014-08-17 22:23:00 -07:00
mirror-tarballs optimize: added an NGINX core patch to ensure unused listening fds are closed when 'reuseport' is used. 2019-08-05 18:54:51 -07:00
package-nginx.sh upgraded the nginx core to 1.15.6. 2018-11-13 11:42:43 -08:00
package-win32.sh feature: added 64-bit windows building/packaging support using the MSYS2/MinGW toolchain. 2018-04-21 19:00:45 -07:00
upgrade-patches.pl initial work for migrating to the 1.0.8.1 release; applied the variable-header-ignore-no-hash patch. 2011-10-07 13:44:20 +08:00
ver upgraded the nginx core to 1.17.1. 2019-07-11 11:29:40 -07:00
ver-ge added patches for nginx 1.3.4. 2012-08-13 15:38:49 -07:00