X

Redis for .NET Developers – Redis List Datatype

Redis List Datatype are similar in C# world as LinkeList e.g LinkedList. Just like in LinkedList in C#, Redis can…

Redis for .NET Developers – Redis Password

I wanted to cover some security aspect of Redis, using Redis Password feature. Redis uses config file to provide a…

Generating data in dotnet core with GenFu

dotnet core with GenFu Couple of weeks ago I had to test out the performance of a third party product…

Redis for .NET Developers – Redis running in AWS ElastiCache

I wanted to go through the process of Redis running in AWS ElastiCache, since we have already covered Docker, Azure…

Redis for .NET Developers – Redis running in Azure

In this post I wanted to go through the process of Redis running in Azure. Redis in Azure is called…

Redis for .NET Developers – Redis running in Docker

To get Redis running in Docker is quite easy. The windows installation follows but if you on the Linux platform,…

Redis for .NET Developer – Redis Hash Datatype

Redis Hash Datatype are similar in C# world as Dictionary e.g Dictionary<string, string>. Just like in C# redis stores map…

Redis for .NET Developer – Redis String Datatype part 2

Continuing on with our Redis for .NET Developer, the Redis String Datatype is also used to store integers, float and…

Redis for .NET Developer – Connecting with C#

In the second blog post series "Redis for .NET Developer" I will show how we will use C# to connect…

Intro to Redis for .NET Developers – Installing Redis on Windows

What is Redis - Installing Redis on Windows Redis (REmote DIctionay Server) is a very popular open-source, networked, in-memory, key-value…