-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: hibernate lädt aus cache
PostPosted: Tue Feb 12, 2008 9:49 am 
Newbie

Joined: Tue Feb 12, 2008 9:40 am
Posts: 2
Hallo,
ich habe eine Applikation, in der ich eine TSQL-Prozedur ausführe und anschließend die Daten über Hibernate wie folgt hole:

Code:
public static IList getCArtikelData() {
            try
            {
                Configuration cfg = new Configuration();
                ISessionFactory factory = cfg.Configure().BuildSessionFactory();
                using (ISession session = factory.OpenSession())
                {
                    IList _tmp = session.CreateCriteria(typeof(CArtikelData)).List(); 
                    session.Close();
                    factory.Close();
                    return _tmp;
                }
            }catch(Exception e)
            {
                throw e;
            }
        }

Nach dem ersten Durchlauf, ist die zurückgegebene Liste korrekt, wenn ich danach allerdings wieder meine Prozedur aufrufe und sich dadurch die Datensätze in der gemappten Tabelle verändern und ich wieder getArtikelData aufrufe, bekomme ich das gleiche Ergebnis wie beim ersten Durchlauf.

Hibernate scheint das also irgendwie zu Cachen. In der Konfiguration habe ich es schon mit <property name="hibernate.cache.use_query_cache">false</property>, aber das hat leider auch nichts geändert. Wie kann ich das Cachen unterbinden?[/quote]


Top
 Profile  
 
 Post subject:
PostPosted: Tue Feb 12, 2008 2:13 pm 
Expert
Expert

Joined: Thu Jul 05, 2007 9:38 am
Posts: 287
Ich halte es für unwahrscheinlich, dass Hibernate da irgend etwas cached. Ich vermute, eher dass Lesekonsistenz bzw. Transaktionseinstellungen deiner Datenbank das Problem verursachen.

Sind die Änderungen durch TSQL commited bevor dein zweiter Lesevorgang seine Transaktion startet? (Und startet er wirklich eine neue Transaktion?)

Jens

_________________
Please rate useful posts.


Schauderhaft: Softwaredevelopment, Projectmanagement, Qualitymanagement and all things "schauderhaft"


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.