StackExchange.Redis Seems to be a popular Redis C# Client. I am unclear on whether StackExchange.Redis uses Multi-Level Caching?
That is If I call the following code numerous times from Asp.net WebSite; Does the Redis Client skip traveling over the wire and instead use the local (Asp.net Built-in Memory Cache)? Or is it the case That We will query an actual redis node each and every-time?
IDatabase db = redis.GetDatabase();
string value = db.StringGet("mykey");