Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
1k views

How to clear the entire second level cache in NHibernate

I wish to clear the entire second level cache in NHibernate via code. Is there a way to do this which is independent of the cache provider being used? (we have customers using both memcache and ...
2
votes
1answer
920 views

NHIbernate SysCache2 and SQLDependency problems

I've set enable_broker on my SQL Server 2008 to use SQLDepndency I've configured my .Net app to use Syscache2 with a cache region as follows: <syscache2> <cacheRegion ...
1
vote
2answers
64 views

How do I make NHibernate cache fetched child collections?

I've got a fairly simple criteria query that fetches child collections, like so: var order = Session.CreateCriteria<Order>() .Add(Restrictions.Eq("Id", id)) .SetFetchMode("Customer", ...
1
vote
1answer
123 views

Are there any issues using Syscache in a multiserver environment as a nhibernate 2nd level cache?

i have just migrated from a single web server environment to a multiwebserver environment and i have been using nhibernate and the syscache 2nd level cache in the past. I know i need to move to a ...
1
vote
1answer
248 views

NHibernate caching not working for anonymous type

I am trying to get the following query to work: Session.Linq<FooBar>() .SetCachable(true) .SetCacheRegion("foobar") .Select(x => new Baz(x.Foo, x.Bar)) .ToList(); This ...
0
votes
1answer
102 views

SysCache2 and FluentNhibernate on MVC aplication

I am having a problem with SysCache/SysCache2 on my MVC application. My configuration seems to be correct. I have set it up just like countless examples on the web. On my class I have put: ...
0
votes
1answer
240 views

NHibernate + SysCache2 + SqlCacheDependency - Cache not invalidating in application

I have a basic MVC application that is using NHibernate for OR/M and data access, SysCache2 for the second-level cache in NHibernate, and SqlCacheDependency for the underlying cache invalidation ...
0
votes
0answers
281 views

Configure MemcacheD or Syscache with nHibernate and ActiveRecord

I'm using nHibernate 3.1 and ActiveRecord 3.0 and I tried following the instructions on a few websites and workflow questions and still haven't managed to get it to work, or I'm still unable to tell ...
0
votes
1answer
1k views

How to configure cache regions in fluent nhibernate and syscache2

I've been trying to implement cache regions with fluent nhibernate and I've done the following so far: Setup caching in Fluently.Configure():   private static ISessionFactory ...