respond to PR feedback

This commit is contained in:
Andrew Callahan 2019-12-05 16:41:30 -05:00
parent aa87646af6
commit f929384edc

View file

@ -1,6 +1,8 @@
defmodule Ash.DataLayer.Ets do
@moduledoc """
An ETS (Erlang Term Storage) backed Ash Datalayer. This was initially built for testing purposes, since it comes built into OTP, as opposed to using Postgres, which would have required adding in another dependency into Ash. While this data layer can be used in your application, it should only be used for small/unimportant data sets that do not require long term persistence.
An ETS (Erlang Term Storage) backed Ash Datalayer.
This was initially built for testing purposes, since it comes built into OTP. This makes it possible to test resources easily, quickly and in isolation from the data layer. While this data layer can be used in your application, it should only be used for small/unimportant data sets that do not require long term persistence.
"""
@behaviour Ash.DataLayer