> For the complete documentation index, see [llms.txt](https://opensleigh.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://opensleigh.gitbook.io/docs/home-page.md).

# Home Page

<figure><img src="/files/Mwi0Xtqk0aNrpPV1jg7I" alt="" width="355"><figcaption></figcaption></figure>

**OpenSleigh** is a distributed Saga management library, written in C# with .NET Core.\
It is intended to be reliable, fast, easy to use, configurable, and extensible.

### What?

So what is a Saga exactly? The basic idea is quite interesting: in a micro-service architecture, it often happens that we need to manage several long-running operations that span multiple services.

A good example could be an Order processing workflow: in this scenario, you have to orchestrate multiple services, do inventory management, credit check, handle shipping, and so on.

**OpenSleigh** helps by taking care of [distributed transactions](https://www.davidguida.net/improving-microservices-reliability-part-1-two-phase-commit/), keeping track of the global status, and managing the whole flow.

For more details, check the Use Cases page.

### Installation

The Core module is available [on Nuget](https://www.nuget.org/packages/OpenSleigh).\
However, Transport and Persistence packages are necessary to properly use the library.

These are the packages available at the moment:

#### Core

* [Core library](https://www.nuget.org/packages/OpenSleigh)
* [In-Memory](https://www.nuget.org/packages/OpenSleigh.InMemory/)

#### Persistence

* [MongoDB](https://www.nuget.org/packages/OpenSleigh.Persistence.Mongo/)
* [MSSQL](https://www.nuget.org/packages/OpenSleigh.Persistence.SQLServer/)
* [PostgreSQL](https://www.nuget.org/packages/OpenSleigh.Persistence.PostgreSQL/)

#### Transport

* [RabbitMQ](https://www.nuget.org/packages/OpenSleigh.Transport.RabbitMQ/)

In-depth instructions can be found in the[ How-To ](/docs/how-to/installation.md)section.

### Issues? Questions? Suggestions?

Feel free to [reach out](https://github.com/mizrael/OpenSleigh/discussions) and tell us what you think!


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://opensleigh.gitbook.io/docs/home-page.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
