Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 9 hours 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 (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-22T09:07:00.000Z (over 2 years ago)
- Last Synced: 2023-03-08T07:33:27.521Z (over 1 year ago)
- Topics: elixir, saga-pattern, transaction
- Language: Elixir
- Homepage:
- Size: 123 KB
- Stars: 4
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![sagax](/.github/banner.png?raw=true)
# 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).