doc: updated the "TODO" section to reflect recent changes.

This commit is contained in:
Yichun Zhang (agentzh) 2014-01-26 17:58:43 -08:00
Родитель 870b9a7f16
Коммит 096e2ff8ed
2 изменённых файлов: 0 добавлений и 10 удалений

Просмотреть файл

@ -6477,23 +6477,18 @@ TODO
Short Term
----------
* review and apply Brian Akin's patch for the new directive `lua_socket_log_errors`.
* review and apply Brian Akin's patch for the new `shdict:flush_expired()` API.
* implement the SSL cosocket API.
* review and apply Jader H. Silva's patch for `ngx.re.split()`.
* review and apply vadim-pavlov's patch for [ngx.location.capture](#ngxlocationcapture)'s `extra_headers` option
* use `ngx_hash_t` to optimize the built-in header look-up process for [ngx.req.set_header](#ngxreqset_header), [ngx.header.HEADER](#ngxheaderheader), and etc.
* add configure options for different strategies of handling the cosocket connection exceeding in the pools.
* add directives to run Lua codes when nginx stops.
* add APIs to access cookies as key/value pairs.
* add `ignore_resp_headers`, `ignore_resp_body`, and `ignore_resp` options to [ngx.location.capture](#ngxlocationcapture) and [ngx.location.capture_multi](#ngxlocationcapture_multi) methods, to allow micro performance tuning on the user side.
* implement new directive `lua_ignore_client_abort`.
[Back to TOC](#table-of-contents)
Longer Term
-----------
* add lightweight thread API (i.e., the `ngx.thread` API) as demonstrated in [this sample code](http://agentzh.org/misc/nginx/lua-thread2.lua).
* add automatic Lua code time slicing support by yielding and resuming the Lua VM actively via Lua's debug hooks.
* add `stat` mode similar to [mod_lua](http://httpd.apache.org/docs/2.3/mod/mod_lua.html).

Просмотреть файл

@ -5484,20 +5484,15 @@ Please submit bug reports, wishlists, or patches by
= TODO =
== Short Term ==
* review and apply Brian Akin's patch for the new directive <code>lua_socket_log_errors</code>.
* review and apply Brian Akin's patch for the new <code>shdict:flush_expired()</code> API.
* implement the SSL cosocket API.
* review and apply Jader H. Silva's patch for <code>ngx.re.split()</code>.
* review and apply vadim-pavlov's patch for [[#ngx.location.capture|ngx.location.capture]]'s <code>extra_headers</code> option
* use <code>ngx_hash_t</code> to optimize the built-in header look-up process for [[#ngx.req.set_header|ngx.req.set_header]], [[#ngx.header.HEADER|ngx.header.HEADER]], and etc.
* add configure options for different strategies of handling the cosocket connection exceeding in the pools.
* add directives to run Lua codes when nginx stops.
* add APIs to access cookies as key/value pairs.
* add <code>ignore_resp_headers</code>, <code>ignore_resp_body</code>, and <code>ignore_resp</code> options to [[#ngx.location.capture|ngx.location.capture]] and [[#ngx.location.capture_multi|ngx.location.capture_multi]] methods, to allow micro performance tuning on the user side.
* implement new directive <code>lua_ignore_client_abort</code>.
== Longer Term ==
* add lightweight thread API (i.e., the <code>ngx.thread</code> API) as demonstrated in [http://agentzh.org/misc/nginx/lua-thread2.lua this sample code].
* add automatic Lua code time slicing support by yielding and resuming the Lua VM actively via Lua's debug hooks.
* add <code>stat</code> mode similar to [http://httpd.apache.org/docs/2.3/mod/mod_lua.html mod_lua].