OBIEE 12C:可下载文件的HTML缓存

时间:2019-05-13 12:04:56

标签: html obiee

我已经在OBIEE中进行了分析,该分析在服务器上的analyticsRes文件夹中搜索文件。

列公式如下:'<a href="http://xxx:9402/analyticsRes/Documents/'||"Afdeling"."Afdeling Code"||'_extragegevens.docx">'||"Afdeling"."Afdeling"||'</a>'

它将根据您在仪表板上应用的过滤器下载正确的文件。除了浏览器缓存外,这一切都很好。

我们发现浏览器在该链接后面缓存了文件,因此,当在服务器上放置新文件时,仍会下载旧文件。

我可以仅针对此分析或对整个仪表板禁用浏览器缓存(这是个好主意吗?),以便用户将始终下载文件的最新版本?

我已经尝试根据以下方法修改instanceconfig.xml文件:

<ServerInstance>
<Cache>
<CatalogXml>
<!-- Remove from the cache everything older than N minutes -->

<MaxAgeMinutes>240</MaxAgeMinutes>
<MaxLastAccessedSeconds>14400</MaxLastAccessedSeconds> </CatalogXml>
</Cache> </ServerInstance>

但这不是我的问题所使用的缓存。

我希望分析能够始终在服务器上查找文件,但是现在它可以长时间缓存文件。如果快取会在24小时后过期,也可以。

谢谢!

1 个答案:

答案 0 :(得分:0)

No. You have zero influence on browser cache from inside OBIEE. The cache above is OBIPS cache, not browser cache.