PHP Caching System "jpcache" scheint nicht schlecht zu sein

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • PHP Caching System "jpcache" scheint nicht schlecht zu sein

    http://www.jpcache.com

    jpcache is a lightweight, full page caching system for PHP, thus reducing server-load, as pages are generated less often. It dramatically speeds up the serving of your pages. It also uses gzip content-encodig and ETag-headers, which results in around 80% in traffic-saving for php-pages. You can choose to store your files in a local dir or in a database

    New: A benchmark study comparing Zend Optimizer, Zend Cache, APC and jpcache (in French) by GLOBALIS ms.
    jpcache shows an performance increase between 333% and 17197%!

    Zwar ein kleiner Bug für WAMP, der demnächst bereinigt wird, aber sieht vielversprechend aus. Ich habe halt keine Site mit Traffic wo ich dieses Feature wirklich testen könnte.


    Um den WAMP Bug zu beheben ist folgende Zeile von
    $cache_file="jpcache-" . $cache_file . ":" . $key;
    auf
    $cache_file="jpcache" . $cache_file . "_" . $key;
    zu ändern, because
    Windows doesn't accept digits like : \ / *" < > | within its filename.

    Die Auseinandersetzung mit jpcache, Installation, Funktion, etc.: http://www.php-resource.de/forum/sho...?threadid=4475

    Dank, an Bernd der es ins Forum gebracht hat

    [Editiert von hand am 28-01-2002 um 22:20]
Lädt...
X