Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
968 B

Add content to aspnet-core roadmap (#3294) * Initial commit * Initial commit * Initial commit * Initial commit * Initial commit * Initial commit * Initial commit * Initial commit * Initital commit * Initial commit * Initial commit * Committing 107-databases * Content added in aspnet-core/content/108-log-frameworks * Content added in aspnet-core/content/109-api-clients * Content added in aspnet-core/content/110-real-time-communication * Content added in aspnet-core/content/111-object-mapping * Content added in aspnet-core/content/112-task-scheduling * Fix Eager Loading heading * Fix lazy loading heading * Update src/roadmaps/aspnet-core/content/104-orm/103-nhibernate.md * Update src/roadmaps/aspnet-core/content/100-basics-of-csharp/101-dotnet.md * Update src/roadmaps/aspnet-core/content/103-basics-of-aspnet-core/101-rest.md * Update src/roadmaps/aspnet-core/content/109-api-clients/102-graphql/100-graphql-dotnet.md * Update src/roadmaps/aspnet-core/content/103-basics-of-aspnet-core/index.md * Update src/roadmaps/aspnet-core/content/104-orm/100-entity-framework-core/102-change-tracker-api.md * Update src/roadmaps/aspnet-core/content/104-orm/102-repodb.md * Update src/roadmaps/aspnet-core/content/104-orm/102-repodb.md * Update src/roadmaps/aspnet-core/content/105-dependency-injection/102-life-cycles/index.md * Update src/roadmaps/aspnet-core/content/105-dependency-injection/index.md * Update src/roadmaps/aspnet-core/content/109-api-clients/102-graphql/100-graphql-dotnet.md * Update src/roadmaps/aspnet-core/content/109-api-clients/102-graphql/index.md * Update src/roadmaps/aspnet-core/content/110-real-time-communication/101-singlar-core.md * Update src/roadmaps/aspnet-core/content/111-object-mapping/100-atuo-mapper.md * Update src/roadmaps/aspnet-core/content/107-databases/100-search-engines/100-elasticsearch.md * Update src/roadmaps/aspnet-core/content/107-databases/102-relational/101-postgresql.md * Update src/roadmaps/aspnet-core/content/107-databases/102-relational/103-mysql.md * Update src/roadmaps/aspnet-core/content/107-databases/103-nosql/101-mongodb.md * Update src/roadmaps/aspnet-core/content/108-log-frameworks/101-nlog.md * Update src/roadmaps/aspnet-core/content/108-log-frameworks/100-serilog.md * Update src/roadmaps/aspnet-core/content/108-log-frameworks/102-log-management-system/100-elk-stack.md * Update src/roadmaps/aspnet-core/content/108-log-frameworks/102-log-management-system/104-elmah.md * Update src/roadmaps/aspnet-core/content/108-log-frameworks/index.md * Update src/roadmaps/aspnet-core/content/109-api-clients/100-rest/101-odata.md * Update src/roadmaps/aspnet-core/content/109-api-clients/100-rest/index.md * Update src/roadmaps/aspnet-core/content/109-api-clients/102-graphql/100-graphql-dotnet.md * Update src/roadmaps/aspnet-core/content/109-api-clients/101-grpc.md * Adding content to 115-ci-cd * Adding content to 116-client-side-libraries * Adding content to 117-template-engines * Adding content to 118-good-to-know-libraries * Adding content to 113-testing * Adding content to 114-microservices Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
2 years ago
# Polly
Polly is an open-source library for .NET that provides a simple and flexible API for handling transient faults and other types of errors that occur during the execution of a service. It allows developers to define a set of policies, such as retry, circuit breaker, and timeout, that can be used to handle specific types of errors and improve the resiliency of the service. It provides a fluent API that makes it easy to define and configure policies, supports advanced features such as async and sync execution, fallback policies, and policy wrapping. Additionally, it allows to specify the exception type that is thrown and it would trigger the policy.
To learn more, visit the following resources:
- [Using Polly for .NET Resilience](https://www.telerik.com/blogs/using-polly-for-net-resilience-and-transient-fault-handling-with-net-core)
- [Build Resilient Microservices Using Polly In ASP.NET](https://procodeguide.com/programming/polly-in-aspnet-core/)