#region 程序集 ServiceStack.Interfaces, Version=5.0.0.0, Culture=neutral, PublicKeyToken=02c12cbda47e6587
// C:UsersAdministratorsource
eposSolution4packagesServiceStack.Interfaces.5.8.0lib
et45ServiceStack.Interfaces.dll
#endregion
using System;
using System.Collections.Generic;
namespace ServiceStack.Caching
{
//
// 摘要:
// Extend ICacheClient API with shared, non-core features
public interface ICacheClientExtended : ICacheClient, IDisposable
{
IEnumerable<string> GetKeysByPattern(string pattern);
TimeSpan? GetTimeToLive(string key);
}
}