Which DB do you use with Elixir/Erlang in write-heavy apps (no update)?

Our blog post about databases

So if you want search by something more than key (key must be unique :)) the option is column base database like Cassandra or Scylla. Cassandra is fast on write and slow on read. Cassandra is also eventually consistent → not CP database type. And it is not easy to maintain Cassandra :). I don’t know about Scyllia.
In other case you will need to create composite key and store collection of records in this key.

CP (Consistency and Partition Tolerance) ?

4 Likes