有没有办法使用通配符或正则表达式来搜索和删除项目HttpContext.Cache
?
我可以在我的缓存中拥有“item_1”、“item_2”、...、“item_n”,并且我想从缓存中删除与模式为“item_*”的键相关的所有值。如何在不检查项目是否存在然后将其删除的情况下实现这一目标?
前任:
代替:
HttpContext.Current.Cache.Remove("item_1")
HttpContext.Current.Cache.Remove("item_2")
HttpContext.Current.Cache.Remove("item_3")
我想要类似的东西:
HttpContext.Current.Cache.Remove("item_*")