2

I'm building an ASP.NET MVC site with static content (without DB) where I am going implement full text search.

I can use two tools for it:

  1. Lucene.Net
  2. elasticsearch

I started to investigate Lucene.Net but I can`t find an ASP.NET MVC example for it.

I found how to use it in ASP.NET.
Proper structuring of Lucene.Net usage in an ASP.NET MVC site

My questions is: What is the best choice for ASP.NET MVC application and has good documentation/examples.

Community
  • 1
  • 1
Ivan Korytin
  • 1,832
  • 1
  • 27
  • 41

1 Answers1

3

My point of view elasticsearch would be simple choice.

Extending MVCMusicStore with Elastic Search

A code project article on Lucene on MVC

A Simple tips from a question

This is a Similar question

Another line on similar questions here.

Cœur
  • 37,241
  • 25
  • 195
  • 267
Sakthivel
  • 1,890
  • 2
  • 21
  • 47
  • A have read article on Lucene on MVC. But they use a documents from somewhere to fill the site. I would like to use site URL to index the site context. – Ivan Korytin Feb 25 '13 at 11:27
  • Yes, i feel the same. I have issues on implementing lucene too..We gotta work on our own..once you finished write a damn article :P – Sakthivel Feb 25 '13 at 11:30