I am considering whether to choose NHibernate.Search or PostgreSQL's embedded full-text search support for my current project.
We are using, as you have already guessed, PostgreSQL RDBMS with NHibernate ORM on ...
I'm only partially able to get Lucene .NET to work on GoDaddy. It throws a security exception on this line:
Hits hits = searcher.Search(query, filter);
Here are the details of this exception:
I'm thinking about using Lucene in my project to do very fast searches. I know that Lucene creates its own files where it keeps all the data/indexes.
I wonder what are ...
The inverse document freqency is defined as follows:
IDF(term,document) = tf(term) * log(1 + n/df(term))
where tf(term) = 'frequency of term in document', n = 'number of documents', df(term) = 'number of docs ...
I'm starting a project in which we are trying to index the contents of XML documents with Lucene .Net. In the little documentation I have found it seems that indexes can ...
So I'm very happy with the Lucene.NET implementation on a current site other than the odd occasional index corruption. I won't get any errors but I'll start noticing results coming ...
I'm trying to compose a reasonable search mechanism for a website which contains infomation stroed in text articles. I'm doing the search in umbraco lucene's examine.
So, the let's say the fields ...