Orleans.Redis
Orleans.Redis copied to clipboard
Regular null reference exceptions
It seems you should inspect all methods that you call at StackExchange.Redis. For example:
RedisValue[] values = await _db.SortedSetRangeByValueAsync(RemindersRedisKey, from, to);
if (values.Length == 0)
Wrapper could return null and you will get NRE. That's very bad.
Check here: https://github.com/OrleansContrib/Orleans.Redis/blob/ecc5cfa78e08fda597b3eb8958d91b6866c34081/src/Orleans.Reminders.Redis/RedisReminderTable.cs#L63
Any news? Should I make pull request for you?