The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
41 views

NHibernate MemCached w/ Protobuf-net.Enyim — does it actually work?

I've used the following assemblies to hook up NHibernate 2nd-level caching with Enyim Memcached using Protobuf-net binary serializer: NHibernate NHibernate.Caches.EnyimMemcached Enyim.Caching ...
0
votes
1answer
47 views

NHibernate — duplicate results when using collection cache

I am getting very strange behavior from NHibernate when using the second level cache with multiple layers of bi-directonal parent-child(-grandchild) one-to-many relationships: int id; using(var ...
3
votes
2answers
47 views

NHibernate won't let me insert a model in a session if it was part of a failed transaction on that session

Why can't I just insert the model after I get an error back from the database when trying to insert it the first time: Report report = null; using (var session = SessionFactory.OpenSession()) { ...
2
votes
1answer
117 views

fluent nhibernate first level cache not working as expected

I have a function which gets called many times in one session. To my understanding with NHibernate first level cache, exact query in the same session will execute only once irrespective of the number ...
1
vote
0answers
49 views

Old NHibernate Documentation

I need to enable the Prevalence cache on a vb.net 1.1 smart client application. And I'm not being able to find any of the old tutorials that were available on the net 6 years ago. The application ...
1
vote
1answer
117 views

NHibernate with Second Level Cache Not Rehydrating Properties Marked insert=“false” update=“false”?

Having trouble with implementing second level cache in Nhibernate. I have a class mapped as follows: <?xml version="1.0" encoding="utf-8" ?> <hibernate-mapping ...
0
votes
1answer
118 views

Hibernate 4.1.x EhCache doesn't store anything on disk

I'm using Hibernate 4.1.1.Final with Spring MVC 3.1.x and using both first and second level cache. I configured my domain objects using annotations for cache operations. But cache doesn't store ...
0
votes
0answers
81 views

Would having sliding expiration make sense for NHibernate/ORM caches?

I've implemented a Redis Cache Provider for NHibernate. However, all of the cache implementations of the NHContrib project all seem to use absolute expiry. I would like to make sliding expiration an ...
0
votes
0answers
285 views

nHibernate, caching, webfarms and multi-tenancy

I'm trying to understand NHibernate's behaviour with regards caching when used with multiple databases (multi-tenancy) with a common web-farm: there seems to be horrendously little information out ...
0
votes
2answers
3k views

How do I use Hibernate's second level cache with JPA?

I am implementing an Entity Attribute Value based persistence mechanism. All DB access is done via Hibernate. I have a table that contains paths for nodes, it is extremely simple, just an id, and a ...
2
votes
1answer
192 views

Session factory issue in setting up hibernate distributed ehcache with terracotta

I am trying to setup EHCache in distributed environment with Terracotta. Here I am able to connect Application server and Terracotta server and in terracotta Developer Console I am able to see ...
0
votes
2answers
386 views

Hibernate HQL createQuery

I'm trying to convert an old application executing SQL queries the old way as below: java.sql.Connection connection = .... String queryStr="select acct from Person where acct in (select acct from ...
2
votes
1answer
1k views

How to configure NHibernate's Second Level Cache in NHibernate >= 3.2?

Before upgrading to NHibernate 3.2, I used the following code for Fluent NHibernate: OracleClientConfiguration configurer = (OracleClientConfiguration.Oracle10.ShowSql().ConnectionString(c => ...
2
votes
0answers
76 views

NHibernate Cache PrevalenceProvider strange behavior

I'm using NH Prevalence Cache provider with happiness from years, but recently, my team, started to fall in some data incorrectness which I can't yet explain... We setup the prevalence by setting up ...
4
votes
2answers
405 views

NHibernate second-level caching - evicting regions

We have a number of cache regions set up in our nHibernate implementation. In order to avoid trouble with load balanced web servers, I want to effectively disable the caching on the pages that edit ...
3
votes
1answer
789 views

Index was outside the bounds of the array - NHibernate 3.2

I've been trying to upgrade a project using fluent nhibernate 1.2 and NHibernate 3.1 to FNH 1.3 and NH 3.2, and it all seems to work except now Im getting an exception on a .List() command. The ...
2
votes
0answers
186 views

NHibernate QueryCache in Multiuser-Environment

For our web-application (ASP.NET) we're using Fluent NHibernate (2.1.2) with 2nd-Level caching not only for entities, but also for queries (generating queries with the criteria API). We're using the ...
5
votes
1answer
2k views

Where can I download nhibernate.caches.syscache 3.1

I've been looking over the internet and can't seem to find where I can download v3.1 of nhibernate.caches.syscache that works with NHibernate 3.1.0.4000. I have version 3.0.0.4000 of the syscache, ...