Author: mturk
Date: Wed Jul 25 07:09:47 2007
New Revision: 559467

URL: http://svn.apache.org/viewvc?view=rev&rev=559467
Log:
Fix compile time warning

Modified:
    tomcat/connectors/trunk/jk/native/common/jk_ajp12_worker.c
    tomcat/connectors/trunk/jk3/ROADMAP

Modified: tomcat/connectors/trunk/jk/native/common/jk_ajp12_worker.c
URL: 
http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/common/jk_ajp12_worker.c?view=diff&rev=559467&r1=559466&r2=559467
==============================================================================
--- tomcat/connectors/trunk/jk/native/common/jk_ajp12_worker.c (original)
+++ tomcat/connectors/trunk/jk/native/common/jk_ajp12_worker.c Wed Jul 25 
07:09:47 2007
@@ -475,7 +475,7 @@
                 to_read = READ_BUF_SIZE;
             }
             else {
-                to_read = s->content_length - so_far;
+                to_read = (unsigned int)(s->content_length - so_far);
             }
 
             if (!s->read(s, buf, to_read, &this_time)) {

Modified: tomcat/connectors/trunk/jk3/ROADMAP
URL: 
http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk3/ROADMAP?view=diff&rev=559467&r1=559466&r2=559467
==============================================================================
--- tomcat/connectors/trunk/jk3/ROADMAP (original)
+++ tomcat/connectors/trunk/jk3/ROADMAP Wed Jul 25 07:09:47 2007
@@ -50,6 +50,22 @@
         server and backend
       - Maybe transporting the backend connector events back to the web
         server
+    * Load Balancer methods
+      - Round-Robin
+        Standard basic requests count method
+      - Least Connections
+        Number of active sessions
+      - Response Time
+        Request/reply response time
+      - Transferred Data
+        Data read/transferred over the channel. Total or within
+        a measured interval.
+      - All methods have weighted distribution
+      - Methods can be combined with different weight for each method
+        e.g. 75% Response Time and 25% Transferred Data
+      - Load threshold
+        Make a load treshold for high load. When node reaches the desired
+        treshold (eg. 90%) update the load factors. 
 
 HOW TO REACH THE GOALS: ROADMAP.
 Here are the steps to reach the goals.



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to