删除 Spring.Cache

发布于 2024-08-10 03:49:53 字数 155 浏览 7 评论 0原文

我正在尝试清除集成测试的缓存。我可以在 Spring 文档中找到“InvalidateCache”属性,但我不想接触真正的函数并更改属性。 我认为我不能使用 .Net 的 HttpContext.Cache.Remove 因为我的集成测试应用程序不是 Web 应用程序。 有人知道该怎么做吗?

I am trying to clear the cache for my integration testing. I could find "InvalidateCache" attribute in Spring documentation, but i do not want to touch the real function and change the attribute.
I think I can't use .Net's HttpContext.Cache.Remove since my integration test application is not web application.
Anyone knows how to do it?

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

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

发布评论

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

评论(1

夏末染殇 2024-08-17 03:49:53

我想我不能使用.Net
HttpContext.Cache.Remove 自从我
集成测试应用程序不是
网络应用程序。

你为什么不在它上面创建一个抽象呢?例如,具有明确方法的 ICache 接口。然后您可以使用内存缓存进行集成测试。

I think I can't use .Net's
HttpContext.Cache.Remove since my
integration test application is not
web application.

Why don't you create an abstraction on it? An ICache interface with a clear method for instance. Then you can use an in memory cache for your integration testing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文