Několik bodů, které zlepšily naši situaci:
Protobuf-net místo BinaryFormatter
Doporučuji používat protobuf-net, protože sníží velikost hodnot, které chcete uložit do mezipaměti.
public interface ICacheDataSerializer
{
byte[] Serialize(object o);
T Deserialize<T>(byte[] stream);
}
public class ProtobufNetSerializer : ICacheDataSerializer
{
public byte[] Serialize(object o)
{
using (var memoryStream = new MemoryStream())
{
Serializer.Serialize(memoryStream, o);
return memoryStream.ToArray();
}
}
public T Deserialize<T>(byte[] stream)
{
var memoryStream = new MemoryStream(stream);
return Serializer.Deserialize<T>(memoryStream);
}
}
Implementujte strategii opakování
Implementujte tuto strategii RedisCacheTransientErrorDetectionStrategy k řešení problémů s časovým limitem.
using Microsoft.Practices.TransientFaultHandling;
public class RedisCacheTransientErrorDetectionStrategy : ITransientErrorDetectionStrategy
{
/// <summary>
/// Custom Redis Transient Error Detenction Strategy must have been implemented to satisfy Redis exceptions.
/// </summary>
/// <param name="ex"></param>
/// <returns></returns>
public bool IsTransient(Exception ex)
{
if (ex == null) return false;
if (ex is TimeoutException) return true;
if (ex is RedisServerException) return true;
if (ex is RedisException) return true;
if (ex.InnerException != null)
{
return IsTransient(ex.InnerException);
}
return false;
}
}
Vytvořte instanci takto:
private readonly RetryPolicy _retryPolicy;
// CODE
var retryStrategy = new FixedInterval(3, TimeSpan.FromSeconds(2));
_retryPolicy = new RetryPolicy<RedisCacheTransientErrorDetectionStrategy>(retryStrategy);
Použijte takto:
var cachedString = _retryPolicy.ExecuteAction(() => dataCache.StringGet(fullCacheKey));
Zkontrolujte svůj kód minimalizovat volání mezipaměti a hodnoty, které ukládáte do mezipaměti. Snížil jsem spoustu chyb tím, že jsem hodnoty ukládal efektivněji.
Pokud nic z toho nepomůže. Přesuňte se do vyšší mezipaměti (nakonec jsme použili C3 místo C1).