Apache mod_proxy + mod_cache(소캐시 및 디스크)

Apache mod_proxy + mod_cache(소캐시 및 디스크)

여기에는 3개 노드 Apache mod_proxy 로드 밸런싱 클러스터가 있습니다. 이제 백엔드에서 프런트엔드로 더 많은 로드를 얻기 위해 mod_cache를 활성화하고 싶습니다.

이것이 캐시에 대한 내 구성입니다.

<IfModule mod_cache.c>
    <IfModule mod_disk_cache.c>
            CacheDefaultExpire 3600
            CacheEnable disk https://
            CacheEnable disk /
            CacheRoot "/mnt/ram/"
            CacheDirLevels 2
            CacheDirLength 1
            CacheMaxFileSize 1000000
            CacheMinFileSize 1
            CacheIgnoreCacheControl On
            CacheIgnoreNoLastMod On
            CacheIgnoreQueryString Off
            CacheIgnoreHeaders None
            CacheLastModifiedFactor 0.1
            CacheDefaultExpire 3600
            CacheMaxExpire 86400
            CacheStoreNoStore On
            CacheStorePrivate On
    </IfModule>

로드된 Apache 모듈:

Loaded Modules:
 core_module (static)
 so_module (static)
 watchdog_module (static)
 http_module (static)
 log_config_module (static)
 logio_module (static)
 version_module (static)
 unixd_module (static)
 access_compat_module (shared)
 alias_module (shared)
 auth_basic_module (shared)
 authn_core_module (shared)
 authn_file_module (shared)
 authz_core_module (shared)
 authz_host_module (shared)
 authz_user_module (shared)
 autoindex_module (shared)
 cache_module (shared)
 cache_disk_module (shared)
 cache_socache_module (shared)
 deflate_module (shared)
 dir_module (shared)
 env_module (shared)
 fcgid_module (shared)
 filter_module (shared)
 headers_module (shared)
 lbmethod_bybusyness_module (shared)
 lbmethod_byrequests_module (shared)
 lbmethod_bytraffic_module (shared)
 mime_module (shared)
 mpm_event_module (shared)
 negotiation_module (shared)
 proxy_module (shared)
 proxy_balancer_module (shared)
 proxy_http_module (shared)
 rewrite_module (shared)
 setenvif_module (shared)
 slotmem_shm_module (shared)
 socache_shmcb_module (shared)
 ssl_module (shared)
 status_module (shared)
 suexec_module (shared)

따라서 문제는 웹사이트에 대한 모든 요청이 백엔드로 이동하므로 성능 최적화가 없다는 것입니다.

mod_cache로 이 문제를 처리할 수 있는 방법이 있나요?

Apache버전: 2.4.10 (Debian8) 백엔드: Typo3 웹사이트.

관련 정보