Eidetic (EventSourcing for Elixir)
WARNING: This is under active development. We do use this in production. API is unlikely to change, but not impossible. 1.0 expected soon
Initial implementation of an event sourced model that can be used in Elixir.
Installing
{:eidetic, "~> 0.3.0"}Tests
make testCreating Your First EventSourced Model
Please check out the examples
defmodule MyModel do
use Eidetic.Aggregate, fields: [forename: nil, surname: nil]
end