17 lines
280 B
C#
17 lines
280 B
C#
using System;
|
|
|
|
namespace Zhaizj.Framework.Caching {
|
|
|
|
public interface IApplicationCache {
|
|
|
|
object Get( string key );
|
|
|
|
void Put( string key, object val );
|
|
void Put( string key, object val, int minutes );
|
|
|
|
void Remove( string key );
|
|
|
|
}
|
|
|
|
}
|