删除 Spring.Cache
我正在尝试清除集成测试的缓存。我可以在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你为什么不在它上面创建一个抽象呢?例如,具有明确方法的 ICache 接口。然后您可以使用内存缓存进行集成测试。
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.