Author: msorokin
Date: 2009-01-10 08:01:56 -0500 (Sat, 10 Jan 2009)
New Revision: 12192
Modified:
trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
Log:
more info is added to the Queue Principals chapter
Modified: trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2009-01-10
13:01:03 UTC (rev 12191)
+++ trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2009-01-10
13:01:56 UTC (rev 12192)
@@ -402,11 +402,36 @@
</section>
<section id="QueuePrinciples">
<title>Queue Principles</title>
- <para>Starting from 3.3.0 version RichFaces has a improved queue functionality.
The new
- implementation provides a rich flexibility for making queues of Ajax requests. You
- can use the queue in a number of ways: </para>
+ <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>
+
<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.
+ </para>
+ </listitem>
+
+ <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.
+ </para>
+ </listitem>
+
<listitem><para>
+
+ Significantly increase the amount of "unrelated" asynchronous
requests to processed
+
+ </para></listitem>
+
+ </itemizedlist>
+
+ <para>There are 4 types of the queue:</para>
+ <itemizedlist>
+ <listitem><para>
Global default queue, defined in the web.xml file
</para>
</listitem>
Show replies by date