Is there any way of speeding up the time NHibernate Validator takes to initialize when the default validator mode is set to ValidatorMode.OverrideAttributeWithExternal?

It takes over 11 seconds to finish initialization on my pretty fast machine in my fairly small project:

FluentConfiguration configuration = new FluentConfiguration();
    configuration
        .SetDefaultValidatorMode(ValidatorMode.OverrideAttributeWithExternal)
        .IntegrateWithNHibernate.ApplyingDDLConstraints().RegisteringListeners();

ValidatorEngine validatorEngine =
    NHibernate.Validator.Cfg.Environment.SharedEngineProvider.GetEngine();

validatorEngine.Configure(configuration);

// Takes 11 seconds to finish, unless the SetDefaultValidatorMode above is removed.
ValidatorInitializer.Initialize(nhibernateCfg, validatorEngine);

I have roughly 50 entities and just two validation definitions lingering around.

link|improve this question

78% accept rate
What version of NHV are you running? – Cole W Apr 19 '11 at 12:42
I'm using NHV 1.3.0.2001. – Sandor Drieënhuizen Apr 19 '11 at 12:46
I'm not sure what the differences are but I'm running 1.3.0.4000. SourceForge – Cole W Apr 19 '11 at 12:55
feedback

1 Answer

I have nearly the same configuration as you and my Initialize function finishes in less than a second. One of the differences I see between my configuration and yours is the following as part of my fluent configuration:

.Register(Assembly.Load("Assembly.Where.External.Internal.Attributes.Live")
           .ValidationDefinitions())

I'm not sure what NHV does by default if you don't specify this but it's worth a shot.

Also another thing you could try is to set up log4net logging in your app.config for NHV and this may help you to see where the time is being spent. I'm not sure how in depth the logging is but it may be helpful.

If all else fails you can download the source and debug through it as well.

Edit:
The below is what I use to put my NHV logging in a seperate file.

<logger name="NHibernate.Validator" additivity="false">
  <level value="DEBUG"/>
  <appender-ref ref="WhateverAppenderYouWant"/>
</logger>
link|improve this answer
1  
I didn't have time yet to try your suggestions (I certainly will) but I have seen at lot of exception swallowing going on inside NHV, mainly concerning it trying to retrieve a lot of nhv.xml mapping resource files, which don't exist in my project. I know for a fact that exception handling is relatively slow but I can't tell for sure that they're the real culprit here. – Sandor Drieënhuizen Apr 21 '11 at 8:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.