Tagged Questions
The nhibernate.search tag has no wiki summary.
10
votes
1answer
378 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:
...
9
votes
5answers
15k views
The ProxyFactoryFactory was not configured
Considering this example as a base example, I created the application but when I execute this application I am getting the following error.
The ProxyFactoryFactory was not configured. Initialize ...
6
votes
1answer
680 views
Lucene.NET Search Highlighting that respects HTML Tags
I am trying to highlight search terms in a block of HTML, the problem is if a user does a search for "color", this:
<span style='color: white'>White</span>
becomes:
<span ...
5
votes
1answer
550 views
Solr or Nhibernate Search
Bit confused here,
How’s Solr or Solrnet any different from Nhibernate Search? Does Solr offer anything more to Lucene.net that Nhibernate Search?
3
votes
1answer
424 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 ...
3
votes
2answers
455 views
Is there a good documentation of NHibernate's query by example feature?
I'm trying to find a good documentation which states exactly, what query by example is capable of and what not.
In particular, I want to know, if query by example supports a search like the ...
3
votes
1answer
2k views
Integrating Nhibernate.Search with Nhibernate 2
I have just spent all day attempting to get NHibernate.Search working alongside NHibernate 2.0 and am sorry to say that I have still not managed it. I ran into the problem posted here and downloaded ...
3
votes
2answers
3k views
Fluent NHibernate + Lucene Search (NHibernate.Search)
I'm using Fluent NHibernate and I would like to implement NHibernate.Search with Lucene but I can't find any examples on how to do that with Fluent NHibernate. It appears there are two steps. ...
3
votes
1answer
1k views
nHibrnate.Search with nHibernate v2
I having trouble getting nHibernate.Search to create an Index.
If I use 1.2.1.4 of nHibernate.dll & nHibernate.Search.dll then the index is created correctly and I can inspect it with Luke (a ...
2
votes
1answer
117 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 ...
2
votes
2answers
283 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 ...
2
votes
1answer
143 views
Howto search all fields with NHibernate Search?
NHibernate is working fine in my current solution but I would like to do queries that search all fields. How can I do something like
.CreateFullTextQuery<MyObjectGraph>("*", queryText)
...
2
votes
1answer
700 views
Fluent nhibernate + nhibernate.serach + lucene.net
can someone tell me how to use nhibernate serach and lucene with fluent nhibernate. I have my application writen with fluent nhibernate but now i need full text serach but do not know how to implmenet ...
2
votes
1answer
280 views
(N)Hibernate.Search : Index different properties in one field
When I was using Lucene to index my entities, I had the habit of putting all my indexed properties in a field named "all", to perform a search on "all" of my entities types.
Now, using ...
2
votes
3answers
2k views
how do i filter my lucene search results?
Say my requirement is
"search for all users by name, who are over 18"
If i were using SQL, i might write something like:
Select * from [Users]
Where ([firstname] like '%' + @searchTerm + '%' OR
...
2
votes
1answer
988 views
Nhibernate.Search, Lucene, and the Criteria API: types mismatch
Update
I've been looking around the NHibernate.Search.Tests project to find out how the Criteria API is used (i find it immensely useful to look around the test code to have working examples) and i ...
2
votes
1answer
2k views
Error using NHibernate
Considering this example as a base example. I created the application but when I execute this application getting the following error.
The ProxyFactoryFactory was not configured.
Initialize ...
2
votes
1answer
1k views
Sample Project for NHibernate Search using Lucene.Net
Is there any Asp Dotnet projects samples available using Lucene Dotnet
2
votes
1answer
2k views
How to add NHibernate configuration file to use NHibernate.Search?
I try to use NHibernate.Search that I built from trunk and use with NHibernate 2.0.1. When I add some NHibernate.Search properties config into configuaration file:
<property ...
1
vote
0answers
120 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 ...
1
vote
1answer
81 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 ...
1
vote
2answers
115 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
{
...
1
vote
2answers
115 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
108 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 ...
1
vote
2answers
238 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
139 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 ...
1
vote
1answer
209 views
NHibernate.Search Projections
I'm trying using NHibernate.Search to get Lucene.NET Score through projections.
My domain object implements an interface IScorableEntity
public interface IScorableEntity
{
float Score { get; ...
1
vote
3answers
598 views
How to get&build latest version of NHibernate.Search?
This is silly, but i can't understand how to do it.
Checked out from svn (https://nhcontrib.svn.sourceforge.net/svnroot/nhcontrib) source, but when i try to build it, there's bunch of errors about ...
1
vote
1answer
641 views
Easiest way to reindex lucene.net indexes when nhibernate.search used?
Context =>
Calling wcf, some random stored procedures and sql stuff theoretically imports some data.
Requirements =>
Reindex lucene indexes for some of imported entities.
Question =>
What's the ...
1
vote
1answer
189 views
Twin Lucene index directories after Nhibernate.Search upgrade
i've been busy upgrading our n* stack to a more recent version. We'd been using FluentNhibernate for configuration and Nhibernate.search coupled with Lucene.Net for full-text search. Everything worked ...
1
vote
1answer
390 views
Lucene.NET indexes are not updating when dealing with many-to-many relationships using NHibernate.Search
I have integrated NHibernate.Search into my web app by following tutorials from the following sources:
NHibernate.Search using Lucene.NET Full Text Index (Part 1)
Using NHibernate.Search with ...
1
vote
1answer
120 views
NHibernate user defined query
I need to implement a query form giving the user the opportunity to
build his own criterias,
based on selecting a property, an operator (=, <>, like, not like, in,
not in ...) and a value,
...
1
vote
1answer
510 views
Nhibernate.Search is unable to instantiate directory provider
i am trying to use NHibernate.Search together with CastleProjects ActiveRecord as descriped
here http://using.castleproject.org/display/AR/Using+NHibernate.Search+with+ActiveRecord
but i am getting ...
0
votes
0answers
13 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
1answer
80 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
45 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
37 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
32 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
18 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
57 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
82 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
54 views
Query using criteria NHibernate
I have this table : EmployeebyProject {PK: EmployeeId,
PK: ProjectId,
DateBegin,
...
0
votes
1answer
34 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
96 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
0answers
87 views
NHibernate.Search listeners slows down Castle Activerecord scope dispose by a large factor?
I'm using Castle Activerecord on top of NHibernate as an ORM layer. I've added NHibernate.Search listeners to the configuration, like:
ISessionFactoryHolder holder = ...
0
votes
1answer
41 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
89 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' ...
0
votes
3answers
104 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", ...
0
votes
0answers
100 views
NHibernate.Search: IFullTextSession + CreateCriteria
I am trying to implement Nhibernate.Search (2.0.2.4000) with my domain model.
I wanted to integrate a full-text search on a field of my entities and add some criteria ( ICriteria).
This is what I've ...
0
votes
2answers
332 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 ...