user1749847
user1749847

Reputation: 53

Lucene.Net in Arabic

Briefly, Is there any Arabic Analyzer that supports Lucene.Net. As I want to index huge number of Arabic txt files. Can I use the Standard Analyzer or White Space Analyzer to parse the Arabic Files?

analyzer = new WhitespaceAnalyzer();

Upvotes: 2

Views: 780

Answers (2)

EdsonF
EdsonF

Reputation: 2818

Lucenete.Net.Contrib contains an Arabic Analyzer but the correct namespace is:

Lucene.Net.Analysis.AR.ArabicAnalyzer

See attached screenshot:

enter image description here

Upvotes: 1

Samuel Neff
Samuel Neff

Reputation: 74949

Lucenete.Net.Contrib contains an arabic analyzer at Lucene.Net.Analysis.Analyzer.ArabicAnalyzer.

Install it using NuGet:

https://nuget.org/packages/Lucene.Net.Contrib/3.0.3

Upvotes: 3

Related Questions