user420840
user420840

Reputation: 83

Lucene vs. Azure Search

I am a newbie to search engines and information retrieval. Can someone explain how different is Lucene search engine compared to Azure Search.

I read the Azure Search documents and see that Azure Search supports Lucene queries as well, so is Azure Search built on top of Lucene or inherits certain features of it?

There is no proper documentation as such, can someone point me in the right direction.

Thanks in advance.

Upvotes: 7

Views: 4238

Answers (2)

Rui Lourenço
Rui Lourenço

Reputation: 151

According to this Microsoft page the full text search is built on Lucene.

https://learn.microsoft.com/en-us/azure/search/search-what-is-azure-search "The full text search engine in Azure Search is built on Apache Lucene, an industry standard in information retrieval."

Upvotes: 15

TimBunting
TimBunting

Reputation: 542

Azure Search is not built on top of Apache Lucene as such, but it does support Lucene Query syntax.

https://learn.microsoft.com/en-us/rest/api/searchservice/lucene-query-syntax-in-azure-search

Upvotes: -4

Related Questions