Author: msorokin
Date: 2009-01-14 10:42:38 -0500 (Wed, 14 Jan 2009)
New Revision: 12274
Modified:
trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
Log:
https://jira.jboss.org/jira/browse/RF-5736
The queue principles is updated
Modified: trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2009-01-14
14:45:25 UTC (rev 12273)
+++ trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2009-01-14
15:42:38 UTC (rev 12274)
@@ -404,11 +404,11 @@
<title>Queue Principles</title>
<para>Starting from 3.3.0 version RichFaces has an improved queue.</para>
- <para>There are some serious reasons why the queue has been improved. The
improved queue allows to</para>
+ <para>There are some reasons why the queue has been improved. In previous
versions the queue had quite simple implementation: it sent to the server only the last
Ajax request out of all requests coming in the queue during request delay.</para>
+ <para>The improved queue allows to</para>
<itemizedlist>
-
-
+
<listitem>
<para>
Eliminate the possibility of collisions when several JSF requests pass the JSF
lifecycle at the same time. The queue prevents sending such requests. Only one request is
processed. The rest ones are waiting.
@@ -417,15 +417,11 @@
<listitem>
<para>
- Reduce the traffic between browser and the server. The "similar"
requests came within requestDelay are absorbed. Only the last one is actually sent.
Reducing the number of request reduces the server load.
+ Reduce the traffic between browser and the server. The "similar"
requests came within request delay are absorbed. Only the last one is actually sent.
Reducing the number of request reduces the server load.
</para>
</listitem>
- <listitem><para>
-
- Significantly increase the amount of "unrelated" asynchronous
requests to processed
-
- </para></listitem>
+
</itemizedlist>