Changeset 1685

Show
Ignore:
Timestamp:
07/25/08 12:18:11 (6 months ago)
Author:
taher
Message:

Great text improvement submitted by M. David Peterson <m.david@xmlhacker.com>

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • web/benchmarks.php

    r1636 r1685  
    66<div class="bench"> 
    77  <div class="contents"> 
    8     <div class="title"></div> 
    9     <div class="message"> 
    10       <p>Cherokee is fast! Seriously. <strong>Cherokee is really really fast</strong>. Every release has proven faster than the previous one, 0.6 being 25% faster than 0.5 for example. One of the intended objectives is being able to turn the server's hard drive into the effective bottleneck of the system. That is <strong>a lot</strong>. With each release we get closer to our goal. Admittedly, a very tough goal to reach. After that there's really not much left to do to improve a High Performance web server such as Cherokee.</p> 
    11       <p>To show the project's progression towards the ultimate goal, whenever a benchmark is performed it will be published right here. Older releases had impressive but not very thorough benchmarks. Whenever it is possible the conditions of the benchmark will be provided so that anyone can replicate the results. That is, after all, an essential basis of the Scientific method.</p> 
     8    <div class="message_left"> 
     9      <p> 
     10        <img src="images/pixel.png" align="right" hspace="55" vspace="80"/> 
     11        <strong>Cherokee is really really fast</strong>. 
     12        The speed at which any web server can serve requests for content is  
     13        both directly tied to and limited by the I/O speed of underlying  
     14        hardware and operating system. In this regard, a web server's  
     15        performance is measured by the latency incurred after an I/O request to  
     16        the underlying system has completed. 
     17      </p> 
     18      <p> 
     19        The primary objective of the Cherokee project is to reduce to zero the  
     20        latency incurred between the time a dynamic or static system I/O request  
     21        has completed and the time the resulting content is served to the  
     22        requesting client. Admittedly, a very tough goal to reach.  
     23      </p> 
     24    </div> 
     25    <div class="message_right"> 
     26      <p> 
     27        <img src="images/pixel.png" align="left" hspace="50" vspace="80"/> 
     28        In fact, it might be impossible. But achieving that which was once seen as impossible  
     29        is what drives innovation. And it's innovation that drives the ongoing  
     30        development of the Cherokee project, bringing us closer to the impossible  
     31        with each new release.  
     32      </p> 
     33      <p> 
     34        To show the project's progression towards the ultimate goal, whenever a benchmark  
     35        is performed it will be published right here. Older releases had impressive but not very  
     36        thorough benchmarks. Whenever it is possible the conditions of the benchmark will be provided  
     37        so that anyone can replicate the results. That is, after all, an essential basis of the Scientific method. 
     38      </p> 
    1239    </div> 
    1340  </div> 
  • web/index.php

    r1527 r1685  
    77    <div class="message"> 
    88      <p><strong>Cherokee </strong>is a very fast, flexible and easy to configure Web Server. It supports the widespread technologies nowadays: FastCGI, SCGI, PHP, CGI, TLS and SSL encrypted connections, Virtual hosts, Authentication, on the fly encoding, Load balancing, Apache compatible log files, and much more.</p><p>A user friendly interface called <strong>cherokee-admin</strong> is provided for a no-hassle configuration of the server. Check out the benchmarks and documentation to learn more, and give it a try to squeeze your hardware to the fullest!</p></div> 
    9     <div class="links"><a href="/media.html"><b>Media &#038; Contact</b></a> &bull; <a href="/partners.html">Partners</a> &bull; <a href="/logos.html" title="Cherokee branding">Logos</a> &bull; <a href="/planet">Planet</a> </div> 
     9    <div class="links"><a href="/media.html"><b>Media &#038; Contact</b></a> &bull; <a href="/partners.html">Partners</a> &bull; <a href="/logos.html" title="Cherokee branding">Logos</a> </div> 
    1010  </div> 
    1111</div> 
  • web/static/cherokee.css

    r1630 r1685  
    316316    height: 165px; 
    317317    min-height: 165px; 
    318     margin-bottom: 10px; 
    319318    display: table-cell; 
    320319    vertical-align: middle; 
    321320} 
    322321 
    323 .bench .contents { 
    324         width: 560px;  
    325         margin-left: 200px; 
    326         text-align: left; 
    327 
    328  
    329 .bench .message { 
    330         font-size: 110%; 
    331         color: #777; 
    332         margin: 10px; 
     322.bench .message_left { 
     323    float: left; 
     324    padding: 10px; 
     325    width: 350px; 
     326    text-align: left; 
     327    text-align:justify; 
     328
     329 
     330.bench .message_right { 
     331    float: right; 
     332    padding: 10px; 
     333    width: 350px; 
     334    text-align: right; 
     335    text-align:justify; 
    333336} 
    334337