Jhonatan Oliveira
Jhon's Blog

Jhon's Blog

Follow
Follow
homebadges
Tag

minimal-apis

#minimal-apis

More content

Read more stories on Hashnode


Articles with this tag

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

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

Logging in Asp.Net Core Minimal APIs

Dec 3, 20225 min read

This article describes logging in Asp.Net Core Minimal APIs. Logging Logging is a means of tracking events that happen when some software runs....

Logging in Asp.Net Core Minimal APIs

API Versioning with Asp.Net Core Minimal APIs

Nov 27, 20224 min read

API Versioning API versioning is the practice of managing changes to an API without breaking the client’s applications when new versions are...

API Versioning with Asp.Net Core Minimal APIs

Creating a custom authentication handler with Asp.Net Core Minimal APIs

Nov 16, 20225 min read

In this article I created a custom middleware for securing an Api. For this one let's change the implementation using a custom authentication...

Creating a custom authentication handler with Asp.Net Core Minimal APIs