You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
at-most-once delivery: means that for each message handed to the mechanism, that message is delivered zero or one times; in more casual terms it means that messages may be lost.
at-least-once delivery: means that for each message handed to the mechanism potentially multiple attempts are made at delivering it, such that at least one succeeds; again, in more casual terms this means that messages may be duplicated but not lost.
exactly-once delivery: means that for each message handed to the mechanism exactly one delivery is made to the recipient; the message can neither be lost nor duplicated.
The text was updated successfully, but these errors were encountered:
Would like to see some kind of dynamic field for CMS with multi-tenancy architecture like https://github.com/arduosoft/RawCMS/blob/master/RawCMS.Library/Schema/Field.cs
Lightweight approach for CRUD at https://github.com/the-linck/Generic-Entity-MVC-CRUD/blob/master/Controller/CrudController.cs (more than 50% actions in application is CRUD).
https://github.com/asc-lab/dotnet-cqrs-intro => 5 types of CQRS
https://github.com/asc-lab/dotnetcore-microservices-poc => good with Marten for event sourcing and search service
https://github.com/BrighterCommand/Darker ==> has Retry/Fallback policy
https://github.com/oskardudycz/EventSourcing.NetCore -> Event Sourcing using Marten
https://github.com/ddd-by-examples/factory
Multi-tenancy:
Cloud native book: https://github.com/ardalis/azure-cloud-native-book/blob/master/architecting-cloud-native-dotnet-apps-for-azure/azure-platform-resiliency.md
Pub/Sub:
The text was updated successfully, but these errors were encountered: