简体   繁体   中英

What is the difference between StatelessSession and Session in NHibernate?

What is the difference between StatelessSession and Session in NHibernate?

Stateless session is not tracking entities that are retrieved. For example for regular ISession following code:

var session = sessionFactory.OpenSession()
using(var transaction = session.BeginTransaction()){
    var user = session.Get<User>(1);
    user.Name = "changed name";
    transaction.Commit();
}

will result in update in DB. This tracking consumes memory and makes ISession performance to degrade over time since amount of tracked entities is growing.

The same code with IStatelessSession won't do anything. Stateless sessions are used when you need to load lots of data and perform some batching operations. It can be used to work with large data sets in a more "ado.net" style.

Session in the NHibernate caches all the inserted data in the session level cache.

 using (var session = sessionFact.OpenSession())
         {
            using (var trans = session.BeginTransaction())
            {
              for (int  = 0; i < 500000; i++)
              {
                 Student st = new Student(
                 {  
                      ID = 1,
                      FirstName = "Zia",
                      LastName = "Qammar"
                 });

                 session.Save(st);
               }

               trans.Commit();
            }
          }

above code throw an "OutOfMemoryException" exception while inserting 50,000 student in the database. The other approach that NHibernate provides is StatelessSession which persist the data in database in detached objects.

using (var session = sessionFact.OpenStatelessSession())
             {
                using (var trans = session.BeginTransaction())
                {
                  for (int  = 0; i < 500000; i++)
                  {
                     Student st = new Student(
                     {  
                          ID = 1,
                          FirstName = "Zia",
                          LastName = "Qammar"
                     });

                     session.Save(st);
                   }

                   trans.Commit();
                }
              }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM