Communication using Named Pipes (.NET)

Introduction Named Pipes are a mechanism for instant messaging between processes. Following diagram shows a simple communication setup using Named Pipes: The Server open a named pipe. A client can listen to that pipe. The client will receive message in real-time, the server send to the pipe. The client must know the name of the … Read more

Building an AWS Serverless Web Application

Introduction AWS serverless offerings results in great development experience, reduce management overhead and deployed applications can benefit from various out-of-the-box features such as high-availability, performance and cost optimization. AWS Lambda, API Gateway, DynamoDB are example of great serverless offerings and we have previously discussed that how AWS SAM simplify the process of creating and deploying … Read more