Session["User"] = "LTA";
I used this session in my application. I am unable to view this stored session values in .net application. I tried in below way:
ConnectionMultiplexer redisConnection = ConnectionMultiplexer.Connect("hostname,ssl=true,password=privatekey,allowAdmin=true");
var redisServer = redisConnection.GetServer("hostname", port);
Here I can able to get key list and client list by using below code:
redisServer.Keys()
redisServer.ClientList()
but key values are shows like
\skdkhciduhcahoaids_Data
\skdkhciduhcahoaids_Internal
Is this encrypted key values? (This is my first query)
Then, This result doesn't change if I open the application in multiple browsers. But actually I want need 4 results if I open the application in 2 browsers because 2 session has been handled when the application run in 2 browsers.
Why it gives same result?
Can I able to view stored session values in redis connection? if yes means How can I view the session values?
Thanks in advance.....