john
john

Reputation: 157

Elastic Search - document text search

Im considering using elastic search for a new project.

My projects going to be hosted in azure and the part im looking to use elastic search for is for the user to be able to upload text documents and be able to search the documents by partial matches and priortise which documents are most likely to be matches.

Is elastic search the correct thing to use?

Is elastic search its own document db or does it need connecting to mongo db or something similar that can also be hosted in azure?

Upvotes: 0

Views: 110

Answers (1)

Amit
Amit

Reputation: 32386

Elasticsearch has its own storage(so no need to have MongoDB or other storage) and you can install it on any bare-metal machine(you just need to have a server in azure to install ES).

For partial search using Elasticsearch please refer to my this SO post for functional and non-functional requirements.

You can also refer to my detailed blog on various approaches to implement partial-search in ES.

Upvotes: 1

Related Questions