这是一种非常常见的情况,所以我期待一个很好的解决方案。基本上我们需要更新表中的计数器。以网页访问为例:
Web_Page
--------
Id
Url
Visit_Count
所以在hibernate中,我们可能会有这样的代码:
webPage.setVisitCount(webPage.getVisitCount()+1);
问题是默认情况下在mysql中读取不注意事务。因此,高度流量的网页会有不准确的数据。
我习惯做这种事情的方式就是打电话:
update Web_Page set Visit_Count=Visit_Count+1 where Id=12345;
我想我的问题是,我如何在Hibernate中做到这一点?其次,如何在Hibernate中进行这样的更新,这有点复杂?
update Web_Page wp set wp.Visit_Count=(select stats.Visits from Statistics stats where stats.Web_Page_Id=wp.Id) + 1 where Id=12345;
答案 0 :(得分:5)
问题是默认情况下在mysql中读取不注意事务。因此,高度流量的网页会有不准确的数据。
事实上。我会在这里使用DML样式操作(参见章节13.4. DML-style operations):
Session session = sessionFactory.openSession();
Transaction tx = session.beginTransaction();
String hqlUpdate = "update webPage wp set wp.visitCount = wp.visitCount + 1 where wp.id = :id";
int updatedEntities = s.createQuery( hqlUpdate )
.setLong( "newName", 1234l )
.executeUpdate();
tx.commit();
session.close();
哪个应该导致
update Web_Page set Visit_Count=Visit_Count+1 where Id=12345;
嗯......我很想说“你被搞砸了”......需要多考虑一下。其次,如何在Hibernate中进行这样的更新,这有点复杂?
答案 1 :(得分:0)
stored procedure提供了以下好处:
call increment($id)
可能的实施方式是:
create procedure increment (IN id integer)
begin
update web_page
set visit_count = visit_count + 1
where `id` = id;
end