I see a lot of recommendations for using dynamodb with chat applications. It is really fast when querying by keys. However a chat needs search by message text functionality which could not be implemented in dynamodb, Iām interested how other people deal with this problem ?
Asked
Active
Viewed 169 times
0
-
1A on pattern is to use elasticsearch to perform full text search. You'll often see DynamoDb streams used to update eslaticsearch indexes. ā Seth Geoghegan Oct 16 '21 at 14:52
-
1as a clarification, elastisearch is replaced with OpenSearch - but yes, the comment above still applies. ā lynkfox Oct 17 '21 at 14:33
-
Ahh, right! Good catch. ā Seth Geoghegan Oct 18 '21 at 12:49