IRedisService.cs 287 B

1234567891011121314151617
  1. using StackExchange.Redis;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace IMCS.CCS.Common.Redis
  6. {
  7. public interface IRedisService : IDisposable
  8. {
  9. IDatabase Database { get; }
  10. IConnectionMultiplexer Multiplexer { get; }
  11. }
  12. }