NHibernate.Search is an extension to NHibernate that allows you to utilize Lucene.NET, a full text search engine as your query engine, instead of putting additional load on the database itself.
0
votes
0answers
11 views
Configure Lucene.Net's merge factor in NHibernate Search
I'm using NHibernate Search, and trying to speed up re-indexing a large database. How do I configure the merge factor? I'm doing this:
...
0
votes
1answer
91 views
How to search for file content using NHibernate.Search and Lucene.Net
I have integrated Lucene.net and nhibernate.search together. I have a domain object that contains a file path, and this file path leads to a file on disc, which has file content. How would I use ...
3
votes
2answers
176 views
How can you add numeric fields in Nhibernate.Search?
I recently mitakenly assumed that Nhibernate.Search would index an integer property on my class as a numeric field.
[Indexed]
public class Location : Entity
{
[IndexedEmbedded(Depth = 1, Prefix = ...
0
votes
1answer
202 views
How can integrate SharpArchitecture and NHibernate.Search via Fluent.NHibernate.Search?
I'm trying to use NHibernate.Search on a SharpArchitecture app,
with FluentNHibernate.Search mapping to maintain pure POCO domain objects.
But i dont know how to setup the NHibernateSession:
On my ...
0
votes
1answer
200 views
nhibernate.search / lucene.net multi-lingual analyser
I am trying to integrate NHibernate.Search into a multi-lingual website. Now, this website contains a class Article which is multilingual. This is done by having a seperate class - ...
0
votes
2answers
399 views
NHibernate Search - Method 'Merge' not implemented
I've added NHibernate.Search to my otherwise routine S#arp Architecture 2.0 / MVC3 / .Net 4 project, followed directions pieced together from various tutorials, and it compiles fine, but I get a ...
0
votes
2answers
109 views
NHibernate database call count?
Is there a way to get at runtime the number of calls NHibernate is making to the database?
I know I can use the NHibernate profiler (NHProf, http://nhprof.com/) to manually view this count while ...
0
votes
1answer
84 views
NHibernate sort performance
I am experiencing some negative performance on queries that are sorted.
This is how the query is being generated and rendered by NHibernate:
SELECT TOP 50 y0_,
y1_
FROM ...
0
votes
1answer
87 views
NHibernate.Search mapping unknown classes
An assembly contains classes like
public class CustomPage : Page, ISearchable
{
[Searchable]
public virtual string CustomText { get; set; }
public virtual string SearchableText { get; ...
0
votes
1answer
40 views
Searching in lower-case
I have a two-step search problem. First I want to see if any matches with the exact search-phrase - and then in step 2 take the generic full-text search across a number of properties.
I have mapped ...
0
votes
1answer
216 views
NumericRangeQuery in NHibernate.Search
I am creating a search, where the user can both choose an interval and search on a term in the same go.
This is however giving me trouble, since I have up until have only used the usual text query.
...
0
votes
1answer
148 views
Fluent nhibernate problem, query
I'd really appreciate some help with a problem I have.
Class L holds a collection of R and R holds a collection of Q.
Each instance of R can be exists in multiple instances of L and each instance of ...
0
votes
0answers
180 views
Query using criteria NHibernate
I have this table : EmployeebyProject {PK: EmployeeId,
PK: ProjectId,
DateBegin,
...
0
votes
1answer
65 views
HQL table named “Class”
I'm creating hql and use
var queryString = "from " + formType.Name;
queryString += " where Id= :t";
var query = SessionHelper.GetSession().CreateQuery(queryString).SetParameter("t", ...
0
votes
1answer
214 views
Using sharding with nhibernate.search for partitioning indexes
We are using NHibernate 3.1 and NHibernate.Search on top of Lucene for full-text searches. So far it is working great, but we have some scalability problems:
In our database, we have several ...
0
votes
1answer
86 views
nhibernate search, update collection
I have a relationship between a Supplier and a Features collection. A Supplier HasMany Features. If the Supplier is updated, I need the Features collection to be updated when a Supplier is updated ...
0
votes
1answer
282 views
Searching through child objects nhibernate search?
I have this kind of relationship
Supplier -> has many Products
Both Supplier is indexed and products are indexed. I need (boss wants to) search through both the Supplier and all of the suppliers' ...
12
votes
1answer
1k views
NHibernate Linq Query is 3x slower than HQL
I have a simple test that runs a query 5000 times. The linq version of the query takes over 3 times the HQL and the cached Linq version is significantly slower than the cached version of HQL
HQL:
...
0
votes
3answers
210 views
NHibernate Search N+1 Issue
I'm using NHibernate Search for NHibernate 3.0 GA.
I have this code in my product repository:
public IList<Product> Find(string term)
{
var productFields = new[] { "Name", ...
1
vote
0answers
182 views
IndexedEmbedded not updating other side of relationship?
I have a one to many, let's say company-to-employees. I am trying to use [IndexEmbedded] on Employee's Company reference, so I can perform a employee query similar to: "Company.Name:IBM". When ...
2
votes
2answers
1k views
Lucene.Net (2.9.2.2) and Nhibernate.Search
I would like to use Lucene.Net ver. 2.9.2.2 with nHibernate Search.
I would like to use one of the latest nhibernate versions, possibly.
I've seen there's a nuget package in the gallery but it ...
1
vote
1answer
173 views
NHibernate Search Index poco object throws TransientObjectException
When calling Index method on FullTextSession with plain poco object throws the error below, works fine with proxied object.
Stacktrace:
[TransientObjectException: the instance was not associated ...
0
votes
1answer
415 views
NHibernate.Search - SQL Server 2005 - hitting max parameter limit 2100 !
I am using NHibernate.Search libraries in my project for free text search. Recently when I started getting more than 2100 results, I started getting max parameter length error from SQL Server.
Does ...
0
votes
1answer
380 views
Wrong Nhibernate.Search query results
I am querying lucene index via nhibernate.search using code below:
var fts = NHibernate.Search.Search.CreateFullTextSession(this._session);
var luceneQuery = "Search:name~0.7 AND Moderated:true NOT ...
0
votes
1answer
226 views
StandardAnalyzer seems to not being involved when indexing data, NHibernate.Search
Im building a search function for an application with Lucene.NET and NHibernate.Search. To index the existing data I am using this method:
public void SynchronizeIndexForAllUsers()
{
var ...
0
votes
1answer
275 views
Using several database setups with Lucene.Net
Hi
I am developing a search function for an web application with Lucene.Net and NHibernate.Search. The application is used by a lots of companies but is runned as a single service, using different ...
0
votes
1answer
69 views
Nhibernate Search on different domains
I have two websites which are required to access the same Lucene index using nHibernate search. Problem is they are of course on different domains so I think they are breaking the session.
As soon ...
0
votes
1answer
100 views
NHibernate Search FieldAttribute
I am not sure what are the parameters Index.Tokenized and Store actually meam, and how the value affect the index result? What is the difference between 2 properties below?
class A{
...
1
vote
2answers
525 views
Best Practice to combine NHibernate.Search and ISession.Query<T> Options
I have a table look like:
CREATE TABLE [dbo].[Order](
[OrderID] [int] IDENTITY(1,1) NOT NULL,
[UserID] [int] NOT NULL,
[ProductID] [int] NOT NULL,
[OrderDate] ...
1
vote
2answers
217 views
Indexing subclass fields by IndexEmbedded
Im am using NHibernate.Search and Lucene.Net. I will ask if anyone have experienced similar problems. This is the situation regarding the following three classes.
[Indexed]
public class File
{
...
0
votes
2answers
438 views
Nhibernate Search post-update listener
I have intergrated nHibernate search, with my nhibernate/ActiveRecord project.
I am trying to get my post-update listener to work correctly but it seems that every time I update one of my objects ...
0
votes
1answer
120 views
IFullTextQuery - exception if there are too may objects
This code works fine:
Query query = parser.Parse(expression);
IFullTextSession session = Search.CreateFullTextSession(this.Session);
IFullTextQuery fullTextQuery = ...
0
votes
1answer
90 views
How to configure tolkenizers with indexing and searching with Lucene and Nhibernate
This is a question for using Lucene via the NHibernate.Search namespace, which works in conjunction with Lucene.
I'm indexing a Title in the Index: Grey's Anatomy
Title : "Grey's Anatomy"
By using ...
0
votes
0answers
327 views
Nhibernate Search and Lucene.NET searching slow
I have created an index with Lucene.NET and optimized it. There are about 30000 records, however when searching it takes about 30 seconds to retrieve any results!
My configuration looks like this:
...
0
votes
1answer
423 views
problem with Boolean field
I index a boolean field like this:
[Field(Index.UnTokenized, Store = Store.No)]
public virtual bool P { get; set; }
My query code looks like this:
public IList<MappedSequence> Query(string ...
0
votes
1answer
342 views
build index using lucene.net 2.9.2.2
I have to use lucene.net 2.9.2.2 with NHibernate 3.0. I have started to edit this old code:
public void BuildSearchIndex()
{
FSDirectory entityDirectory = null;
IndexWriter writer = null;
...
1
vote
2answers
224 views
Extremely slow manual indexing?
I am trying to add about 21,000 entities already in the database into an nhibernate-search Lucene index. When done, the indexes are around 12 megabytes. I think the time can vary quite a bit, but ...
1
vote
2answers
216 views
Lucene.NET Boost for different type of entity
I am new to Lucene.NET and have already run into a (I think) difficult problem. I have an object lets say a "Company", now there are 3 different types of companies ordered by importance from low to ...
0
votes
1answer
109 views
NHibernate and NHibernate Search Version Problem
I have sample application on Nhibernate with Nhibernate Search with the following version nos,
Nhibernate - v2.0.0.1001
Nhibernate Search - v2.0.0.1001
I am not sure if it custom build, but ...
2
votes
1answer
188 views
Nhibernate search document id
If my class derives from Entity how do I define the documentid needed for nhibernate search/lucene.net using attributes?
Is this the best way:
[DocumentId]
public virtual int Id
{
get { return ...
0
votes
1answer
166 views
NHibernate.Search - Set Index Directory at runtime
I am building a Multi-Tenant application and would like to create seperate Indexes for each tenant, however I can't seem to find a way to set my index directory at runtime for NHibernate.Search when ...
0
votes
2answers
419 views
NHibernate.Search + Lucene.NET duplicate entries
When I build the initial index from an existing database, the type of the entries in Lucene get indexed as <_hibernate_class:Castle.Proxies.MuestraProxy, DynamicProxyGenAssembly2>
However, when a ...
0
votes
2answers
278 views
NHibernate - define where condition
In my application the user can defines search-conditions. He can choose a column, set an operator (equals, like, greater than, less or equal than, etc.) and give in the value. After the user clicks on ...
1
vote
1answer
116 views
S#arp Architecture + NHibernate.Search + DocumentId
I’m new to NHibernate.Search and i’ve ran into a problem I need a little help with.
I need to add a [DocumentId] attribute to my ID field, but the Id field is in the Entity class...I found some code ...
2
votes
1answer
469 views
NHibernate Search Lucene.NET SearchFactory is null
I've been struggling with the following issue for hours now. I tried this with different NHibernate/NHibernate.Search assemblies (3.0.0.4 / 2.1.2), all of them result in the same error. Used Lucene ...
1
vote
2answers
291 views
Is it possible to use nhibernate.search and nhibernate 3.0
Guys,
I haven't found any nhibernate.search assemblies compatible with nh3. Looks like it haven't completed yet. I hope I'm wrong.
1
vote
1answer
197 views
Search Suggestions with NHibernate Search
I have a requirement to provide "Google-like" suggested searches when a search either returns no results or we determine something is misspelled or misphrased.
Is there anything that offers that ...
0
votes
1answer
422 views
Lucene.Net and Nhibernate.Search: how to manage complex searches?
We have a SQL Server database with a million-ish records that are indexed by Lucene.net through Nhibernate.Search. When we built the index for our classes, we tried to be extensive since the cost for ...
3
votes
1answer
899 views
Eager Loading of Tree / Hierarchies using Nhibernate
This is not a question as such, I have been reserarching this subject for the last few days and thought I would like to contribute something that pulled in a lot of the disparate ideas that I've beed ...
0
votes
1answer
186 views
Best way to exclude object from search with Fluent NHibernate Search
I have a class with a boolean property.
I want to exclude instance with a false value from search result.
What is the best way to do that with Fluent NHibernate Search ?

