我使用 AEM 作为 wcm 并使用 lucid 作为搜索。两者都托管在我的本地计算机上。在我的本地 apache 网络服务器上,我想使用 dispathcer 和 mod_cache 来缓存响应。调度程序用于缓存 AEM 页面,mod_cache 用于缓存 json 形式的搜索响应。dispathcer 工作正常并缓存 html、js、css。为了缓存搜索结果,我配置了 mod_cache。下面是配置:- 我在 httpd.conf 中启用了 LoadModule cache_module modules/mod_cache.so
Include conf/dispatcher.conf
Include conf/mod_disk_cache.conf
并创建了一个mod_disk_cache.conf
配置文件
<IfModule mod_cache.c>
<IfModule mod_disk_cache.c>
CacheRoot "C:/Apache2/cachedoc"
CacheEnable disk www.local.search.com:8764
CacheDirLevels 5
CacheDirLength 3
</IfModule>
CacheDisable http://security.update.server/update-list/
</IfModule>
<VirtualHost 10.207.12.34:8764>
ServerName www.local.search.com
DocumentRoot "C:/Apache2/htdocs"
</VirtualHost>
我仍然无法缓存搜索结果的 json 响应。谁能帮忙