#region 程序集 ServiceStack.Interfaces, Version=5.0.0.0, Culture=neutral, PublicKeyToken=02c12cbda47e6587
// C:UsersAdministratorsource
eposSolution4packagesServiceStack.Interfaces.5.8.0lib
et45ServiceStack.Interfaces.dll
#endregion
namespace ServiceStack.Caching
{
public interface IRemoveByPattern
{
//
// 摘要:
// Removes items from cache that have keys matching the specified wildcard pattern
//
// 参数:
// pattern:
// The wildcard, where "*" means any sequence of characters and "?" means any single
// character.
void RemoveByPattern(string pattern);
//
// 摘要:
// Removes items from the cache based on the specified regular expression pattern
//
// 参数:
// regex:
// Regular expression pattern to search cache keys
void RemoveByRegex(string regex);
}
}