spring.net查看cacheresult进行排查

发布于 2024-10-26 00:09:59 字数 98 浏览 1 评论 0原文

各位好迪, 如何查看Spring.NEt AOP缓存配置的cacheresult以查看缓存是否有正确的结果?是否有我错过的日志功能?我对框架有点陌生,所以一些细节会很有用。 谢谢!

Howdi folks,
How can I view the cacheresult of a Spring.NEt AOP caching configuration to see if the cache has the correct results? Is there a logging feature that I missed? I'm a little new to the fraemwork, so a little detail would be userful.
Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

红ご颜醉 2024-11-02 00:09:59

我看到两种解决方案:
1)在DEBUG级别激活Spring日志
2) 访问ICache实例所使用的Cache属性,并使用ICache.Keys属性。

foreach(object key in ((ICache)context.GetObject("MyCacheId")).Keys)
{
  Console.WriteLine(key);
}

I see 2 solutions :
1) Activate the Spring logs at DEBUG level
2) Access the ICache instance used by the Cache attributes, and use the ICache.Keys properties.

foreach(object key in ((ICache)context.GetObject("MyCacheId")).Keys)
{
  Console.WriteLine(key);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文