Jhonatan Oliveira
Jhon's Blog

Jhon's Blog

Follow
Follow
homebadges
Tag

APIs

#apis

More content

Read more stories on Hashnode


Articles with this tag

Getting started with gRPC Service with .NET 7

Oct 22, 20237 min read

gRPC, a high-performance, open-source RPC (Remote Procedure Call) framework developed by Google, has gained immense popularity among developers for...

Getting started with gRPC Service with .NET 7

Getting started with GraphQL in Asp.Net Core

May 16, 202315 min read

GraphQL is a powerful query language and runtime that efficiently fetches and manipulates data from APIs. This blog post will explore how to get...

Getting started with GraphQL in Asp.Net Core

Using Rate Limiting in Asp.Net Core Minimal APIs

Jan 29, 20236 min read

In this blog post will learn about Rate Limiting and how we can implement it in Asp.net Core Minimal API. Rate Limiting What is it? Rate limiting is...

Using Rate Limiting in Asp.Net Core Minimal APIs

Applying CQRS and Mediator in Asp.Net Core

Jan 15, 20238 min read

This blog post will discuss CQRS and Mediator patterns and apply them in an Asp.Net Core application. What is CQS? CQS is a design pattern, and the...

Applying CQRS and Mediator in Asp.Net Core

Using caching in Asp.Net Core Minimal APIs

Jan 3, 20237 min read

Caching provides a better customer experience and makes applications performant and scalable. If the result (query, page, etc.) is cached, the next...

Using caching in Asp.Net Core Minimal APIs

Using background service in Asp.net Core Minimal APIs

Dec 24, 20227 min read

Background tasks are services that aren’t meant to execute during a regular flow of a typical application, such as sending email confirmations or...

Using background service in Asp.net Core Minimal APIs