Riptide.Store.Memory (riptide v0.5.0-beta11) 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)

Link to this section Summary

Link to this section Functions