Skip to content

Commit 54d2ce4

Browse files
committed
fix inline link
1 parent 7e50f5b commit 54d2ce4

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Configuration.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ http {
8181

8282
###Advanced JVM Options for I/O
8383

84-
Check [this section](configuration.html#user-content-24-chose--coroutine-based-socket-or-asynchronous-socketchannel-or-thread-pool-for-slow-io-operations) for more deitals about choice and configuration about `thread pool` , `coroutined` based socket or `asynchronous socket/channel`.
84+
Check [this section](configuration.html#24-chose--coroutine-based-socket-or-asynchronous-socketchannel-or-thread-pool-for-slow-io-operations) for more deitals about choice and configuration about `thread pool` , `coroutined` based socket or `asynchronous socket/channel`.
8585

8686
###Some Useful Tips
8787

@@ -749,6 +749,6 @@ For Clojure
749749

750750
[nginx-clojure broadcast API]: https://github.com/nginx-clojure/nginx-clojure/issues/38
751751
[SharedHashMap/Chronicle-Map]: https://github.com/OpenHFT/Chronicle-Map
752-
[Asynchronous Socket/Channel]: more.html#user-content-36-asynchronous-channel
753-
[2.1 JVM Path , Class Path & Other JVM Options]: configuration.html#user-content-21-jvm-path--class-path--other-jvm-options
754-
[enabled coroutine support]: configuration.html#user-content-24-chose--coroutine-based-socket-or-asynchronous-socketchannel-or-thread-pool-for-slow-io-operations
752+
[Asynchronous Socket/Channel]: more.html#content-36-asynchronous-channel
753+
[2.1 JVM Path , Class Path & Other JVM Options]: configuration.html#21-jvm-path--class-path--other-jvm-options
754+
[enabled coroutine support]: configuration.html#24-chose--coroutine-based-socket-or-asynchronous-socketchannel-or-thread-pool-for-slow-io-operations

Configuration.md.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ <h3>
7777
<h3>
7878
<a id="user-content-advanced-jvm-options-for-io" class="anchor" href="#advanced-jvm-options-for-io" aria-hidden="true"><span class="octicon octicon-link"></span></a>Advanced JVM Options for I/O</h3>
7979

80-
<p>Check <a href="configuration.html#user-content-24-chose--coroutine-based-socket-or-asynchronous-socketchannel-or-thread-pool-for-slow-io-operations">this section</a> for more deitals about choice and configuration about <code>thread pool</code> , <code>coroutined</code> based socket or <code>asynchronous socket/channel</code>.</p>
80+
<p>Check <a href="configuration.html#24-chose--coroutine-based-socket-or-asynchronous-socketchannel-or-thread-pool-for-slow-io-operations">this section</a> for more deitals about choice and configuration about <code>thread pool</code> , <code>coroutined</code> based socket or <code>asynchronous socket/channel</code>.</p>
8181

8282
<h3>
8383
<a id="user-content-some-useful-tips" class="anchor" href="#some-useful-tips" aria-hidden="true"><span class="octicon octicon-link"></span></a>Some Useful Tips</h3>
@@ -125,7 +125,7 @@ <h2>
125125
<li>Because the maybe more than one nginx worker processes, so this code will run everytime per worker starting. </li>
126126
<li>If you use <a href="https://github.com/OpenHFT/Chronicle-Map">SharedHashMap/Chronicle-Map</a> to share data
127127
among nginx worker processes, Java file lock can be used to let only one nginx worker process do the initialization.</li>
128-
<li>If you <a href="configuration.html#user-content-24-chose--coroutine-based-socket-or-asynchronous-socketchannel-or-thread-pool-for-slow-io-operations">enabled coroutine support</a>, nginx maybe will start successfully even if your initialization failed after some socket operations. If you case it, you can
128+
<li>If you <a href="configuration.html#24-chose--coroutine-based-socket-or-asynchronous-socketchannel-or-thread-pool-for-slow-io-operations">enabled coroutine support</a>, nginx maybe will start successfully even if your initialization failed after some socket operations. If you case it, you can
129129
use <code>nginx.clojure.core/without-coroutine</code> to wrap your handler, e.g.</li>
130130
</ul>
131131

@@ -295,7 +295,7 @@ <h3>
295295
<span class="pl-s1"> '</span>;
296296
}</pre></div>
297297

298-
<p>You should set your JAR files or directory to class path, see <a href="configuration.html#user-content-21-jvm-path--class-path--other-jvm-options">2.1 JVM Path , Class Path &amp; Other JVM Options</a> .</p>
298+
<p>You should set your JAR files or directory to class path, see <a href="configuration.html#21-jvm-path--class-path--other-jvm-options">2.1 JVM Path , Class Path &amp; Other JVM Options</a> .</p>
299299

300300
<h2>
301301
<a id="user-content-24-chose--coroutine-based-socket-or-asynchronous-socketchannel-or-thread-pool-for-slow-io-operations" class="anchor" href="#24-chose--coroutine-based-socket-or-asynchronous-socketchannel-or-thread-pool-for-slow-io-operations" aria-hidden="true"><span class="octicon octicon-link"></span></a>2.4 Chose Coroutine based Socket Or Asynchronous Socket/Channel Or Thread Pool for slow I/O operations</h2>
@@ -446,7 +446,7 @@ <h3>
446446

447447
<p>Asynchronous Socket/Channel Can be used with default mode or coroutined enabled mode without any additional settings. It just a set of API.
448448
It uses event driven pattern and works with a java callback handler or clojure function for callback. Asynchronous Channel is wrapper of Asynchronous Socket
449-
for more easier usage. More examples can be found from this section <a href="more.html#user-content-36-asynchronous-channel">Asynchronous Socket/Channel</a>. </p>
449+
for more easier usage. More examples can be found from this section <a href="more.html#content-36-asynchronous-channel">Asynchronous Socket/Channel</a>. </p>
450450

451451
<h3>
452452
<a id="user-content-243-use-thread-pool" class="anchor" href="#243-use-thread-pool" aria-hidden="true"><span class="octicon octicon-link"></span></a>2.4.3 Use Thread Pool</h3>

0 commit comments

Comments
 (0)