https://github.com/smartvokat/sagax
An implementation of the Saga pattern for distributed transactions in Elixir.
https://github.com/smartvokat/sagax
elixir saga-pattern transaction
Last synced: about 1 year ago
JSON representation
An implementation of the Saga pattern for distributed transactions in Elixir.
- Host: GitHub
- URL: https://github.com/smartvokat/sagax
- Owner: smartvokat
- License: apache-2.0
- Created: 2020-04-29T22:15:34.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2022-02-22T09:07:00.000Z (over 4 years ago)
- Last Synced: 2025-05-11T17:37:41.927Z (about 1 year ago)
- Topics: elixir, saga-pattern, transaction
- Language: Elixir
- Homepage:
- Size: 123 KB
- Stars: 5
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# Sagax
**NOTE: It’s early, so there isn’t a whole lot here yet. We do not recommend to use it in production.**
An implementation of the Saga pattern for distributed transactions in Elixir.
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `sagax` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:sagax, "~> 0.1.0"}
]
end
```
Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at [https://hexdocs.pm/sagax](https://hexdocs.pm/sagax).