riptide v0.4.4 Riptide.Store.Memory View Source
This store persists all data into an ETS table. It will not survive restarts and is best used for local development or in conjunction with Riptide.Store.Composite
to keep a portion of the tree in memory.
Configuration
config :riptide,
store: %{
read: {Riptide.Store.Memory, []},
write: {Riptide.Store.Memory, []},
}
Options
:table
- name for ETS table, defaults to:riptide_table
(optional)