Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 2010
    Posts
    62

    Apache Cache Questions

    mod_cache
    mod_disk_cache
    mod_mem_cache

    is it best to use all 3 of them together? is there a certain way to increase performance with the cache systems?

    this is what i currently have:

    Code:
    <IfModule mod_cache.c>
    UseCanonicalName On
    CacheIgnoreNoLastMod On
    CacheIgnoreCacheControl On
    CacheIgnoreHeaders Set-Cookie
    CacheDefaultExpire 600
            <IfModule mod_disk_cache.c>
            CacheRoot /var/cache/httpd
            CacheEnable disk /
            CacheMaxFileSize 64000
            CacheMinFileSize 64
            CacheDirLevels 2
            CacheDirLength 1
            </IfModule>
    </IfModule>
    <IfModule mod_mem_cache.c>
            CacheEnable mem /
            MCacheSize 64000
            MCacheMaxObjectCount 1000
            MCacheMinObjectSize 1
            MCacheMaxObjectSize 6400000
    </IfModule>
    ive never used or done this before and could use advice and tips

  2. #2
    Join Date
    Jul 2010
    Posts
    62
    so i read mod_disk_cache.c is faster then mem_cache but everytime i load up mod_disk_cache.c none of the pages load when i click on the link(forum)

Similar Threads

  1. 7,200RPM with 32MB Cache or 10,000RPM with 16MB Cache
    By xmutan in forum Dedicated Server
    Replies: 20
    Last Post: 08-13-2009, 05:43 PM
  2. cache systems for apache in windows
    By pion_ in forum Web Hosting
    Replies: 5
    Last Post: 03-27-2009, 08:42 PM
  3. Apache 2.2 Cache bug?
    By zeus111981 in forum Hosting Security and Technology
    Replies: 0
    Last Post: 03-07-2006, 05:22 PM
  4. Apache doesn't cache websites
    By Nymix-CB in forum Hosting Security and Technology
    Replies: 16
    Last Post: 03-20-2004, 12:36 PM
  5. Apache sending Pragma: no-cache directive
    By bloom in forum Hosting Security and Technology
    Replies: 3
    Last Post: 08-21-2003, 02:49 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •