1

I have implemented Redis cache with .net core 2.1 application. Now the issue is I have only development connection string. I want to configure and test Redis cache somehow on my local pc. I have read somewhere that it is possible using chocalatey. So can body refer me any link?

PS: When I tried to run redis cache from development server using vpn, It shown me popup to select "ResultBox.cs" file. So I created new ResultBox.cs file and give it the path, but when I call rediscache.Get() method it opens ResultBox.cs file but nothing happens then. Can anybody tell what is ResultBox.cs for?

Ask
  • 3,076
  • 6
  • 30
  • 63

2 Answers2

2

I have found a way to configure Redis on local using chocolatey. Use this link. If you face Misconf issues while testing on redis-cli this link will be helpful.

Ask
  • 3,076
  • 6
  • 30
  • 63
1

You can run a local docker redis image. See this and this for reference.

Vaibhav Pingle
  • 575
  • 1
  • 9
  • 27