riptide v0.4.1 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.

Options

  • :table - Optional name for ETS table, defaults to :riptide_table

Configuration

config :riptide,
  store: %{
    read: {Riptide.Store.Memory, []},
    write: {Riptide.Store.Memory, []},
  }