Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixup! [ADR] JMAP: Mention InfiniSpan as a possible alternative
  • Loading branch information
chibenwa committed Nov 18, 2020
commit f8d1b5d3ca0787ecb777b8f0b4da48253eee30a9
4 changes: 2 additions & 2 deletions src/adr/0043-avoid-elasticsearch-on-critical-reads.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ resolving all `Email/query` against ElasticSearch.

Another solution is to implement the projecting using a in-memory datagrid such as infinispan. The projection
would be computed using a MailboxListener and the data would be first fetched from this cache and fallback to
ElasticSearch. We did not choose it as Cassandra is already there, well mastered, as disk storage is cheaper then
ElasticSearch. We did not choose it as Cassandra is already there, well mastered, as disk storage is cheaper than
memory. InfiniSpan would moreover need additional datastore to allow a persistent state. Infinispan on the other hand
would be faster and would have less restrictions on data filtering and sorting. This would require one more software dependency.
would be faster and would have less restrictions on data filtering and sorting. Also this would require one more software dependency.

## Example of optimized JMAP requests

Expand Down