Hello!
On Tue, May 17, 2016 at 4:48 PM, Yichun Zhang (agentzh) wrote:
> I've just kicked out OpenResty 1.9.15.1 RC1 for testing:
>
> https://openresty.org/download/openresty-1.9.15.1rc1.tar.gz
>
[...]
> The highlights of this release are:
>
> 1. New NGINX 1.9.15 core.
>
> 2. LuaJIT now supports (almost) the full 2GB address space for its
> GC-managed memory per VM instance on x86_64 (as compared to the
> previous 1GB memory limit on x86_64).
>
Sorry, for got to mention that another highlight is the new restydoc
command-line utility. Ensure you have added <prefix>/bin to your PATH
environment, as in
export PATH=/usr/local/openresty/bin:$PATH
assuming your are using the default OpenResty prefix
(/usr/local/openresty). Then you can try the following commands from
your terminal:
restydoc -s listen
restydoc -s content_by_lua
restydoc resty.lrucache
restydoc -s ngx.re.match ngx_lua
restydoc ngx_http_proxy
Hopefully you'll have fun with this tool :)
> Complete list of changes since the last (formal) release, 1.9.7.4:
>
Added the missed items below (sorry, long change log :)):
* feature: added restydoc documentation indexes for the official
nginx core and most of the official openresty components.
* upgraded resty-cli to 0.07rc3.
* added new command-line utility, restydoc, for viewing
OpenResty/Nginx documentation on the terminal (inspired by
Perl's "perldoc" utility) via "groff" (used by "man" as
well).
* added new command-line utility, md2pod.pl, for converting
GitHub-flavored Markdown source to Perl's POD format.
* added new command-line utility, restydoc-index, for
generating the documentation indexes by scanning Markdown
and POD document files in user-specified directories, which
can be used by the restydoc tool.
* added new command-line utility, nginx-xml2pod, for
converting NGINX's official XML-formatted documentation to
Perl's POD format.
Best regards,
-agentzh