<PackageReference Include="Relativity.Server.Import.SDK" Version="2.9.2" />

IObjectCacheRepository

Represents an abstract object cache.
using System; namespace Relativity.DataExchange { internal interface IObjectCacheRepository : IDisposable { long Count { get; } TimeSpan Expiration { get; set; } void Clear(); bool Contains(string key); void Delete(string key); TEntity SelectByKey<TEntity>(string key); void Upsert(string key, object value); void Upsert(string key, object value, TimeSpan expiration); } }