Azure cache mechanism

Samy Abdul 3,366 Reputation points
2021-09-25T12:56:02.58+00:00

Hi all, this is about Azure caching mechanism, Azure has Redis cache available which incurs cost and and not free. Cache in itself a

temporary storage solution and doesn’t necessarily have updated data for it has to be updated by schedules and triggers. Could you

please provide an use case for Redis cache in azure and what problem does it solves? And how does it work with Cache Aside

architectures in conjunction with serverless and Microservices. Thank you

Azure SQL Database
0 comments No comments
{count} votes

Accepted answer
  1. KalyanChanumolu-MSFT 8,316 Reputation points
    2021-09-27T06:31:18.657+00:00

    @Samy Abdul Thank you for reaching out.

    Caching makes a copy of the data (in memory or an intermediate cache like Redis).
    It can significantly improve the performance and scalability of an app by reducing the latency in getting data from the backend source.
    However, it works best with data that changes infrequently and is expensive to retrieve.

    Redis Cache is used in areas such as Gaming, Financial Services, Healthcare, and IoT where low latency is key to building products and services.
    You can go through some scenarios here
    More details on implementing cache aside pattern using Redis cache are here

    With advancements being made to databases like Azure Cosmos DB, the need for dedicated caching infrastructure could reduce going forward.
    Azure Cosmos DB integrated cache (Preview) provides several capabilities of a traditional cache like Redis, within the database itself so you don't have to set up and manage 2 different resources.

    Please let us know if you have further questions and we will be happy to help.

    ----------

    If an answer is helpful, please click on 130616-image.png or upvote 130671-image.png which might help other community members reading this thread.

    0 comments No comments

0 additional answers

Sort by: Most helpful