Eric Rizzo
Eric Rizzo
StackExchange.Redis is now at version 2.1.x, and there are [useful fixes](https://stackexchange.github.io/StackExchange.Redis/ReleaseNotes) in there. Most notably to me is fixing some intermittent [connectivity problems with Azure Redis](https://github.com/StackExchange/StackExchange.Redis/pull/1374). That is an issue...
It appears from the code that RedisCacheHandle.Clear() will actually flush the entire database. Doesn't that go against the intention individual ICache instances being isolated from others?
When using a cache [configuration as described here by Micha](https://github.com/MichaCo/CacheManager/issues/111#issuecomment-296699499), it's possible that Remove notifications don't get sent via the backplane. If I have 2 processes configured in that way...
I use Redis Desktop Manager (RDM) as a nice GUI client to our Redis instances. Up to this point, we've been using CacheManager with only a Redis handle (no in-memory)...
One base Android Activity that isn't included in the DroidFu extensions is TabActivity. After a quick glance, it looks like the code from BetterDefaultActivity could probably be copied into a...
Just a humble suggestion... The logic in BetterAsyncTask checks the passed-in Context to determine if it's a BetterActivity. It uses that info for only two purposes, both of which appear...
I like the fact that I can get a easily consumable JAR, but it does not include the sources at the time of that snapshot. I tried to find a...
I added project-specific settings so that Eclipse enforces Java 1.6 as the target. Without this, if the user's workspace is set to target a different version of Java by default...
In a simple usage like this: var mock = new Mock(); using (Sequence.Create()) { mock.Setup(m => m.Method1()).InSequence(); mock.Setup(m => m.Method2()).InSequence(); mock.DoStuff(); } If an exception is thrown from the `DoStuff()`...
I'm working in a project with an (unfortunate) mix of JPA annotations, Hibernate annotations, and hbm.xml mapping files. It's a Spring Boot application and we specify the locations of the...