Skip to content

Commit 6cdd99d

Browse files
committed
correct which is really NEW feature.
1 parent b407cc3 commit 6cdd99d

File tree

4 files changed

+12
-14
lines changed

4 files changed

+12
-14
lines changed

CoreFeatures.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ The latest release is v0.3.0, more detail changes about it can be found from [Re
1111
1. Non-blocking coroutine based socket which is Compatible with Java Socket API and works well with largely existing java library such as apache http client, mysql jdbc drivers.
1212
With this feature one java main thread can handle thousands of connections.
1313
1. Handle multiple sockets parallel in sub coroutines, e.g. we can invoke two remote services at the same time.
14-
1. Asynchronous callback API of socket/Channel(**_NEW_**) for some advanced usage
15-
1. **_NEW_**: Long Polling & Server Sent Events
16-
1. **_NEW_**: More easier to archive Sub/Pub services with broadcast events API
14+
1. Asynchronous callback API of socket/Channel for some advanced usage
15+
1. Long Polling & Server Sent Events
16+
1. More easier to archive Sub/Pub services with broadcast events API
1717
1. Run initialization clojure code when nginx worker starting
1818
1. Support user defined http request method
1919
1. Compatible with the Nginx lastest stable version 1.6.0. (Nginx 1.4.x is also ok, older version is not tested and maybe works.)
2020
1. One of benifits of [Nginx](http://nginx.org/) is worker processes are automatically restarted by a master process if they crash
2121
1. Utilizes lazy headers and direct memory operation between [Nginx](http://nginx.org/) and JVM to fast handle dynamic contents from Clojure or Java code.
2222
1. Utilizes [Nginx](http://nginx.org/) zero copy file sending mechanism to fast handle static contents controlled by Clojure or Java code.
23-
1. Supports Linux x64, Linux x86 32bit, Win32, Win64(**_NEW_**) and Mac OS X.
23+
1. Supports Linux x64, Linux x86 32bit, Win32, Win64 and Mac OS X.
2424

2525
By the way it is very fast, the benchmarks can be found [HERE](https://github.com/ptaoussanis/clojure-web-server-benchmarks) .
2626

CoreFeatures.md.html

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,16 @@ <h1>
1414
<li>Non-blocking coroutine based socket which is Compatible with Java Socket API and works well with largely existing java library such as apache http client, mysql jdbc drivers.
1515
With this feature one java main thread can handle thousands of connections.</li>
1616
<li>Handle multiple sockets parallel in sub coroutines, e.g. we can invoke two remote services at the same time.</li>
17-
<li>Asynchronous callback API of socket/Channel(<strong><em>NEW</em></strong>) for some advanced usage</li>
18-
<li>
19-
<strong><em>NEW</em></strong>: Long Polling &amp; Server Sent Events</li>
20-
<li>
21-
<strong><em>NEW</em></strong>: More easier to archive Sub/Pub services with broadcast events API</li>
17+
<li>Asynchronous callback API of socket/Channel for some advanced usage</li>
18+
<li>Long Polling &amp; Server Sent Events</li>
19+
<li>More easier to archive Sub/Pub services with broadcast events API</li>
2220
<li>Run initialization clojure code when nginx worker starting</li>
2321
<li>Support user defined http request method</li>
2422
<li>Compatible with the Nginx lastest stable version 1.6.0. (Nginx 1.4.x is also ok, older version is not tested and maybe works.)</li>
2523
<li>One of benifits of <a href="http://nginx.org/">Nginx</a> is worker processes are automatically restarted by a master process if they crash</li>
2624
<li>Utilizes lazy headers and direct memory operation between <a href="http://nginx.org/">Nginx</a> and JVM to fast handle dynamic contents from Clojure or Java code.</li>
2725
<li>Utilizes <a href="http://nginx.org/">Nginx</a> zero copy file sending mechanism to fast handle static contents controlled by Clojure or Java code.</li>
28-
<li>Supports Linux x64, Linux x86 32bit, Win32, Win64(<strong><em>NEW</em></strong>) and Mac OS X. </li>
26+
<li>Supports Linux x64, Linux x86 32bit, Win32, Win64 and Mac OS X. </li>
2927
</ol>
3028

3129
<p>By the way it is very fast, the benchmarks can be found <a href="https://github.com/ptaoussanis/clojure-web-server-benchmarks">HERE</a> .</p>

HISTORY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ Downloads & Release History
1616
1. New Directives: rewrite_handler_type, access_handler_type, header_filter_type, body_filter_type
1717
1. New Feature: Supports nested locations (issue #56)
1818
1. Bug Fix : uppercase letters in nginx variable name can not work (issue #54)
19-
1. Bug Fix: The first registered handler will not work if there 's a asynchronous reading of request body (issue 51)
20-
1. Enhancement: `handlers_lazy_init` can be used to make handler initialized lazily or eagerly
19+
1. Bug Fix: The first registered handler will not work if there 's a asynchronous reading of request body (issue #51)
20+
1. Enhancement: `handlers_lazy_init` can be used to make handler initialized lazily or eagerly (issue #52)
2121

2222

2323
## 0.2.7 (2014-11-11)

HISTORY.md.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ <h2>
2020
<li>New Directives: rewrite_handler_type, access_handler_type, header_filter_type, body_filter_type</li>
2121
<li>New Feature: Supports nested locations (issue #56)</li>
2222
<li>Bug Fix : uppercase letters in nginx variable name can not work (issue #54)</li>
23-
<li>Bug Fix: The first registered handler will not work if there 's a asynchronous reading of request body (issue 51)</li>
24-
<li>Enhancement: <code>handlers_lazy_init</code> can be used to make handler initialized lazily or eagerly </li>
23+
<li>Bug Fix: The first registered handler will not work if there 's a asynchronous reading of request body (issue #51)</li>
24+
<li>Enhancement: <code>handlers_lazy_init</code> can be used to make handler initialized lazily or eagerly (issue #52)</li>
2525
</ol>
2626

2727
<h2>

0 commit comments

Comments
 (0)