Tagged Questions
The nhprof tag has no wiki summary.
5
votes
2answers
249 views
Free Alternatives to Nhiberante profiler?
I am wondering if there is some other program or way to profile other than nhibernate profiler. My trial ran out and there is no way I can afford to buy it.
So are there any alternatives out there?
5
votes
1answer
65 views
Automated profiling/unit testing the NHibernate behaviors
I'm using NHibernate quite intensively for few months and I find it very powerful, but for me this is the kind of tool that can sometimes hurt you. I had a lot of situations that relatively simple ...
4
votes
1answer
395 views
fail-safe cleanup (collections) warning after committing transaction with NHibernate
When looking in NHProfiler I get following warning after committing my transaction:
fail-safe cleanup (collections) : NHibernate.Engine.Loading.CollectionLoadContext
I have absolutely no idea what ...
4
votes
2answers
648 views
Count number of queries executed by NHibernate in a unit test
In some unit/integration tests of the code we wish to check that correct usage of the second level cache is being employed by our code.
Based on the code presented by Ayende here:
...
3
votes
2answers
760 views
NHibernate taking a long time to run query
This is being done using Fluent NHibernate
I've got a NHibernate lookup that is retrieving data from one table. If i take the generated sql and run it through query analyzer, it takes ~18ms to run.
...
2
votes
4answers
224 views
NHibernate Profiler - large discrepancy between database duration and total duration?
I have an application that makes extensive use of NHibernate. I've started using the NHibernate Profiler to identify possible performance issues. My question is related to the Query Durations ...
1
vote
1answer
125 views
In an NHibernate NamedQuery, how do you use a DateTimeOffset as a parameter
When I run a NamedQuery in NHibernate, if I set a DateTimeOffset using SetParameter("name", date) or SetParameter("name", date, new DateTimeOffsetType()), it loses the time offset information when ...
1
vote
2answers
91 views
NHProf generates 'this statement executed from the view' warning when I pass a ViewModel object to my ASP.NET MVC View page
I just noticed that on one page of my site, where I pass a ViewModel to my View page, NHProf is giving the following warning:
This statement executed from the view, which can result in bad ...
1
vote
2answers
840 views
How do I configure NHibernate Profiler so I can enable/disable it without changing code?
I've been trying to follow the directions on the NHProf site but can't seem to make it work. What am I missing?
I put a log4net configuration section in my web.config:
<configSections>
...
1
vote
1answer
675 views
NHibernate, ActiveRecord, Transaction database locks and when Commits are flushed
This is a common question, but the explanations found so far and observed behaviour are some way apart.
We have want the following nHbernate strategy in our MVC website:
A SessionScope for the ...
0
votes
1answer
14 views
NHProfiler type tool for Rails ActiveRecord
In the .NET world there is an awesome product called NHProfiler which provides insights into database activity via NHibernate. It can detect common problems (such as N+1 issues), and report on them ...
0
votes
0answers
11 views
Disabling stack trace capture with NHProf
The NHibernate Profiler states that there's a configuration to stop capturing stack traces, therefore possibly reducing the amount of profiling data generated:
<skipCapturingStackTraces ...
0
votes
2answers
50 views
NHibernate Profiler doesn't see request from my ASP.NET MVC application
I'm using NHProf with ASP.NET MVC 3.
I inserted
HibernatingRhinos.Profiler.Appender.NHibernate.NHibernateProfiler.Initialize();
in my Application_Start method, but NHProf still doesn't see my ...
0
votes
2answers
51 views
Query duration in NHibernate Profiler
I have an ASP .Net MVC application which uses Fluent NHibernate to access an oracle database. I also use NHibernate Profiler for monitoring the queries generated by NHibernate. I have one query which ...
0
votes
1answer
40 views
What does the symbol [/] mean in NHibernate Profiler?
What does this little symbol mean in NHProf? Why is it there in Session #1 but not Session #3?
0
votes
1answer
73 views
nhibernate - nhprof -unbounded result set on lazy load for a one to many bi-directional association
I have a standard Category domain entity which has corresponding children. i.e category and its corresponding sub categories. This is shown below. Pretty standard stuff really.
public class Category ...
0
votes
1answer
76 views
Clearing NHibernate Cache Inbetween Profiling Runs with NHProf
We are attepting to profile our NHibernate application using NHProf. We have a series of unit tests which exercise various calls. However, if we run the unit test multiple times, we get differing ...
0
votes
1answer
345 views
“Using a single session in multiple threads is likely a bug” error in NHProf when using NServiceBus
When executing an NServiceBus handler that uses NHibernate for its data access operations, I am seeing an error that I am not sure if I need to be concerned with.
The handler has code that does ...
0
votes
2answers
325 views
Load vs Get in Nhibernate
The master page in my web application does authentication and loads up the user entity using a Get.
After this whenever the user object is needed by the usercontrols or any other class I do a Load. ...
0
votes
1answer
111 views
0
votes
3answers
515 views
NHibernate Linq uses implicit transaction?
I'm using Ayende's NHibernate Linq version 2.1.2, available here, and when I use NHProf to inspect queries that use this method:
public IQueryable<T> GetAll()
{
return ...