riptide v0.4.4 Riptide.Store.Multi View Source
A proxy store that will write data to multiple stores.
Configuration
config :riptide,
store: %{
read: {Riptide.Store.Memory, []},
write: {Riptide.Store.Multi, writes: [
{Riptide.Store.LMDB, directory: "data"},
{Riptide.Store.Memory, []}
]}
}
Options
:stores
- list of stores to write data to (required)