Home > Blockchain >  Is Redis cache effective for simple windows application(management software)?
Is Redis cache effective for simple windows application(management software)?

Time:10-10

I want to implement the caching on the simple desktop application.And I am using WPF .NET Framework.So, is redis cache could be effective considering the portability? Or is there any best option available ?

CodePudding user response:

I don't suggest using Redis cache for the WPF desktop app. Why? it makes your application depends on a third-party app. it seems in .Net there is a solution for caching in-memory and persisting on a file. You can find more about it on this LINK

  • Related