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,822
  • 1
  • 23
  • 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
  • 34,719
  • 24
  • 185
  • 251
Sakthivel
  • 1,861
  • 2
  • 21
  • 46
  • 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