InMemory document store #4039
-
Hi All, I want to understand why InMemory document store is not recommended for production workloads? Can anyone elaborate on this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello!
So, |
Beta Was this translation helpful? Give feedback.
Hello!
InMemoryDocumentStore
is not recommended for production workloads for several reasons:Each time a query is made, it scans each document in the Document Store to compute the similarity to the query.
So,
InMemoryDocumentStore
is good for experimenting and does not require any particular setup.Depending on your use case (sparse or dense retrieval), there more efficie…