Showing posts with label Radis Cache. Show all posts
Showing posts with label Radis Cache. Show all posts

Thursday, April 04, 2019

An Introduction to Azure Redis Cache

Redis Cache service has been added to Microsoft Azure, based on the most popular open source Redis Cache. It's one of the cache service offerings from Microsoft Azure allows the user to have access of rich features. Redis supports data structures such as strings, hashes, lists, sets, sorted sets with range queries, bitmaps, hyperloglogs, and geospatial indexes. A cache created using Azure Redis Cache is accessible from any application within Microsoft Azure. Redis Cache could be used as an advanced approach of storing or caching application data that is available across distributed systems.

Tuesday, August 07, 2018

Caching Implementation with C# Using Redis Cache

Caching is a technique for performance enhancements, especially when user interface interaction, with application speed, needs to be increased. It's also a state management strategy that helps you reduce the consumption of resources. There are several caching frameworks available, but in this article I will share information about Redis Cache, a noSQL caching technique and its integration with .NET applications. Redis keeps information as a key-value NoSQL pair.

Mocking API Responses in Azure API Management Portal

A mock API imitates a real API call by providing a realistic JSON or XML response to the requester. Mock APIs can be designed on a developer...