Category: Open source

Redis example with Docker in C#

Redis is an open source (BSD licensed), in-memory data structure store, used as a database, cache and message broker. Lets install redis server in docker. Beauty of docker is that without installation of actual software, you can install it in docker and can access those application. Lets create a simple example and divide it in … Continue reading Redis example with Docker in C#

Grpc example in c#

Grpc example in c#

Lets follow below steps to create simple Grpc service in C#. This service will have a simple method called "Reverse" which will take one string parameter and return reverse of that string. This example contains proto file also. I would recommend you to please go through this post if you don't know about protobuf. This … Continue reading Grpc example in c#