Tagged Questions

Second-level-cache, as the name implies, is a layer of cache that lives between a "primary" cache and a data service/store (relational database, in most cases) to optimize read operations on the service/store. It is different from the primary cache in its lifespan (primary cache being limited to a request lifetime) and capabilities (persist to store, clustering, etc.).

learn more… | top users | synonyms

12
votes
6answers
354 views

What are the pros and cons of a distributed second level cache versus focusing on tuning database

we have a website that uses nhibernate and 2nd level cache. We are having a debate as one person wants to turn off the second level cache as we are moving to a multi webserver environment (with a ...
10
votes
10answers
422 views

Low-level optimisation in C. Cache questions

I learned recently that the following code: int a[N][N]; for(i = 0; i < N; i++) for(j = 0; j < N; j++) a[i][j] = 0; Was actually faster than the same piece of code where i and j are ...
10
votes
8answers
724 views

Why use your application-level cache if database already provides caching?

Modern database provide caching support. Most of the ORM frameworks cache retrieved data too. Why this duplication is necessary?
9
votes
3answers
725 views

Caching with Hibernate + Spring - some Questions!

Im working on developing a webapplication with Spring 3 and Hibernate 3.6. At the moment I try to understand how Caching with Spring and Hibernate works. I found some sources about Caching with ...
8
votes
1answer
454 views

Why is NHibernate.Cache.HashtableCacheProvider not intended for production use?

The NHibernate documentation and the book NHibernate In Action state that the cache provider NHibernate.Cache.HashtableCacheProvider is not intended for production use. However, I could not find a ...
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 ...
7
votes
2answers
466 views

What is second level cache in hibernate?

What is second level cache in hibernate ?
7
votes
1answer
2k views

Removing objects from NHibernate second level cache

I just started thinking about using the NHibernate second level cache in one of my apps. I would probably use the NHibernate.Caches.SysCache.SysCacheProvider which relies on ASP.net cache. Enabling ...
6
votes
2answers
1k views

Are entities cached in jpa by default?

I add entity to my database and it works fine. But when i retrieve the List, i get the old entity, the new entities i add are not shown until i undeploy the application and redeploy it again. This ...
6
votes
1answer
881 views

Hibernate: batch_size? Second Level Cache?

I have a Hibernate domain object that gets loaded by different parts of the application. Sometimes it's advantageous to lazy load every association and others it's better to load the entire thing in ...
5
votes
1answer
157 views

EhCache + hibernate

I have the following problem: I have a query which return me 35 results and I would like to keep in second level cache: public List<Product> getAllProducts() { Session session = ...
5
votes
1answer
223 views

Hibernate 2nd level cache ObjectNotFoundException with a high number of concurrent transactions

We have a Java application that uses MySQL, Hibernate (3.5.1-Final) and EHcache(1.2.3) for our 2nd level cache. Our hibernate.properties isolation level is Read-committed isolation = 2 # 2-Read ...
5
votes
2answers
2k views

How to know/log whether Hibernate 2nd-level cache was used or not for a query?

Currently, in order to check if the Hibernate 2nd-level cache was used for a Database query, I check my SQL log (through p6spy or logSql=true in Datasource.groovy) to see if the Grais/Hibernate ...
5
votes
3answers
3k views

Hibernate: Clean collection's 2nd level cache while cascade delete items

I have a problem Hibernate does not update 2nd level cache for a collection of items which are subject of cascade removal. Details Assume we have an object Parent which has Parent.myChildren ...
4
votes
1answer
56 views

How to keep only last record in second level cache?

Every second I store a lot of objects Foo but new object is compared to previous. Can I configure NHibernate Second Level Cache to keep only last Foo object or should I implement this myself? Little ...
4
votes
1answer
139 views

How to refresh second level cache?

How to force reread db data (without evicting second level cache before reading) and then put it to cache. The use case is as following: There is a service, which uses dictionary data. The service ...
4
votes
2answers
641 views

Is accessing CPU cache (read and write) through C# possible?

I want to know if there are implemented stuff in C# which allows to access CPU cache. It is just interesting for me but I do not have something to do with the cpu cache at the moment. So I was ...
4
votes
2answers
362 views

NHibernate Azure AppFabric Cache

Has anyone tried using the NHibernate Velocity L2 cache provider against the Azure AppFabric Cache? If so, what did you discover? On a side note, we're using SQL Azure to store our data.
4
votes
3answers
313 views

A soft-locked cache entry was expired by the underlying Ehcache

Hibernate 3.3.x, ehcache 2.2.x The following error occurs, when I try to publish a lots of users in a single go. Any idea on why this would happen and how to rectify this? Is there a way to ...
4
votes
2answers
567 views

Setting hibernate second level cache

I am new in hibernate and spring and I experiment with hibernate second level cache. But it seems doesn't work. I have a following test class: @RunWith(SpringJUnit4ClassRunner.class) ...
4
votes
1answer
196 views

Rhino.Security: second-level cache is never hit for DetachedCriteria

I've implemented a solution which involves Rhino.Security to manage user/roles/permissions. Since I want to check if a user is authorized to access a controller action, I've implemented a custom ...
4
votes
2answers
481 views

AppFabric caching's local cache isnt working for us… What are we doing wrong?

We are using appfabric as the 2ndlevel cache for an NHibernate asp.net application comprising a customer facing website and an admin website. They are both connected to the same cache so when admin ...
4
votes
1answer
992 views

NHibernate second level caching with AppFabric

Has anyone used AppFabric for their second level caching? I know it's to follow the same api as for Velocity (nhibernate.caches.velocity) but wanted to know if anyone already had some production ...
4
votes
3answers
1k views

Hibernate 2nd Level caching doesnt seem to be working

Im currently trying to get hibernate working using the caching provider that comes with hibernate. net.sf.ehcache.hibernate.SingletonEhCacheProvider I have a default cache and a class specific ...
4
votes
2answers
504 views

Which second level cache to select for nHibernate?

I have a Data Service created using WCF that internally uses nHibernate. This WCF Data Service is consumed by an Asp.Net application deployed on Web Server using Tcp Channel. To improve the ...
4
votes
2answers
1k views

Hibernate 2nd level cache objects that are lazy=false, result in a default fetch=join, is it documented anywhere?

I experience the following apparently undocumented issue, and I want to understand if I did something wrong Did anyone encounter the same issue? Is it really not documented anywhere? or did I miss ...
4
votes
2answers
2k views

Hibernate 2nd level cache invalidation when another process modifies the database

We have an application that uses Hibernate's 2nd level caching to avoid database hits. I was wondering if there is some easy way to invalidate the Java application's Hibernate 2nd level cache when ...
4
votes
2answers
3k views

How I can disable the second-level cache of some certain entities in Hibernate without changing annotations

I'm using Hibernate second level cache in my application, for certain business reason I can't change the entity annotation any more. In my project, apart from changing the Database from Hibernate, ...
3
votes
2answers
182 views

When and how to use hibernate second level cache?

I have trouble understanding when hibernate hits the second level cache and when does it invalidate the cache. This is what I currently understand: Second level cache stores entities between ...
3
votes
2answers
207 views

Nhibernate 2nd level caching issues / questions when moving from a single web server to a multiple web server load balanced environment

My previous setup was a single web server and a single database server. I was using nhibernate 2nd level caching to cache stuff to avoid lots of calls going to the database. This has worked great ...
3
votes
0answers
96 views

How do I migrate cache related annotations from Hibernate 3.3.x to 3.6.x

My cache usage on entity Foo looked like this @Entity class Foo { @ManyToOne(fetch = LAZY) @Cache(usage = org.hibernate.annotations.CacheConcurrencyStrategy.NONSTRICT_READ_WRITE) private ...
3
votes
2answers
293 views

Second level cache does not cache filtered collections in NHibernate?

I am configuring 2nd level cache with NHibernate 3.0. 2nd level cache works great for Entities and Collections but I also have some Entities which have filtered collections. <bag ...
3
votes
1answer
576 views

Hibernate lazy loading and Hazelcast

we are using Hazelcast as Hibernate 2nd level cache now for a while but are recognizing long delays in storing and reading data when using more than one node. We make intensive use of composed ...
3
votes
1answer
345 views

Nhibernate and SetCacheable with second level cache

I am using Rhino.Security repository to manage my users/roles. The process of creation, deletion and association works fine but I am facing a problem when I query using one method: ...
3
votes
2answers
392 views

NHibernate caching entities across sessions

I'm developing a web application and I would like caching to persist across web requests. I am aware that the first level cache is per-session only. I have second-level caching enabled and this is ...
3
votes
2answers
311 views

Is there a way to look into L2 hibernate cache?

I have a task to attach Oracle Coherence (it is cache software) in my project. One way of using it is Level2 Hibernate cache. I want to see when hibernate takes results from L2 cache. How can i do ...
3
votes
2answers
394 views

Hibernate database integrity with multiple java applications

We have 2 java web apps both are read/write and 3 standalone java read/write applications (one loads questions via email, one processes an xml feed, one sends email to subscribers) all use hibernate ...
3
votes
1answer
468 views

NHibernate not finding named query result sets in 2nd level cache

I have a simple unit test where I execute the same NHibernate named query 2 times (different session each time) with the identical parameter. It's a simple int parameter, and since my query is a ...
3
votes
1answer
163 views

Relying on nhibernate's second level cache vs pushing objects into asp.net session

I have some big entities which are frequently accessed in the same session. For example, in my application there is a reporting page which consist of dynamically generated chart images. For each chart ...
3
votes
1answer
532 views

NHibernate + ASP.NET + Open Session in View + L2Cache

I am using CodeProject's well known Open Session in View to handle NHibernate Sessions. Does it works well with Level 2 Cache? Anyone has succeeded doing it? Should I use NH.Burrow instead? Any advice ...
3
votes
3answers
1k views

Hibernate query cache - for objects not in the 2nd level cache - risky? usefull? bad practice?

Related to this question Premise: These are my assumptions, based on my reading, experience and understanding, they may be wrong, if they are, please comment and I'll edit the question. Query ...
3
votes
2answers
864 views

hibernate cache strategy

how to decide whitch CacheConcurrencyStrategy to use? NonstrictReadWriteCache, ReadOnlyCache, ReadWriteCache, TransactionalCache . I read ...
3
votes
1answer
910 views

NHibernate query cache and WCF

I've enabled query cache for one of my queries, it works fine (query result is taken from query cache and entities from second level cache) when I run a test or a console application. However, if I ...
3
votes
2answers
3k views

Hibernate Second level Cache <<net.sf.ehcache.hibernate.EhCacheProvider>>

I want use second level cache in my hibernate Project but I just know a little about hibernate second level cache, can any one explain how shoud I use this in my code and what configuration and .jar ...
3
votes
1answer
452 views

“Cached Item Was Locked” causing Select Statement in Hibernate

I am having trouble with getting some caching to work with hibernate exactly the way I would like. I created some example code to replicate this problem I am having. I have one object that contains ...
2
votes
1answer
30 views

What's the difference between terracotta-hibernate-cache and Ehcache Distributed with Terracotta?

Is there a difference between using Ehcache as Hibernate's second-level cache provider and distributing it with Terracotta, and using terracotta-hibernate-cache and terracotta-hibernate-agent?
2
votes
1answer
31 views

Is/Can Hibernate's Second-Level Cache be Used for COUNT() operations?

When using Hibernate and Ehcache as a second-level cache (2LC) implementation, is (or can) this cache used when doing COUNT operations with a WHERE clause? In SQL terms the query I'm performing is ...
2
votes
1answer
92 views

Hibernate and Ehcache- How to make sure every “select” goes through the entity cache?

I have an entity (JPA annotations with Hibernate query interface) which has a composite business key of two properties (an external-id and a subsidiary-id [that's a foreign key]) and a primary db key. ...
2
votes
1answer
64 views

Hibernate 2nd level cache only write but not read

I have the next two entities Person: @Entity @Table(name = "person") public class PersonDTO implements Serializable { private static final long serialVersionUID = -3859029259805663330L; ...
2
votes
1answer
99 views

Hibernate Second-Level Cache: Does get use it?

I've seen it written that the Hibernate second-level cache is only used when invoking the load method. I can't find any conclusive answers about whether it's used when calling get, which the ...

1 2 3