ash/benchmarks/simple_get.exs

9 lines
171 B
Elixir
Raw Normal View History

2020-05-26 06:32:45 +12:00
Benchee.run(
%{
"ecto" => fn -> AshExample.Repo.all(AshExample.Ticket) end,
"ash" => fn -> AshExample.Api.read!(:ticket) end
},
time: 10,
memory_time: 2
)