❔ ASP.NET builtin cache vs Redis Cache ?
Hi do we need redis if asp.net 7 already have http cache ?
2 Replies
IMemoryCache
and other built-in caches are based on the app's memory
Redis has the benefit of being able to run on a separate server
Or you can rent a managed Redis service
It can also be distributed, persisted, etc.
So the question is: do you need Redis for your project?Was this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.