git-svn-id: https://svn.jboss.org/repos/hibernate/trunk/Hibernate3/doc@7269 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
JongDae Kim 2005-06-22 12:59:56 +00:00
parent c10801e7eb
commit b01a422a67
1 changed files with 2 additions and 2 deletions

View File

@ -438,7 +438,7 @@ hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect]]></programlisting>
<literal>hibernate.order_updates</literal> <literal>hibernate.order_updates</literal>
</entry> </entry>
<entry> <entry>
업데이트 중인 항목들의 프라이머리 키 값에 의해 SQL 업데이트들이 순서(ordering) 지워지도록 Hibernate에게 업데이트 중인 항목들의 프라이머리 키 값에 의해 SQL 업데이트들이 순서(ordering)지워지도록 Hibernate에게
강제시킨다. 이것은 고도의 동시성 시스템들에서 더 적은 트랜잭션 데드락(deadlock)들로 귀결될 것이다 강제시킨다. 이것은 고도의 동시성 시스템들에서 더 적은 트랜잭션 데드락(deadlock)들로 귀결될 것이다
<para> <para>
<emphasis role="strong">예.</emphasis> <emphasis role="strong">예.</emphasis>
@ -1257,7 +1257,7 @@ hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect]]></programlisting>
<!-- cache settings --> <!-- cache settings -->
<class-cache class="org.hibernate.auction.Item" usage="read-write"/> <class-cache class="org.hibernate.auction.Item" usage="read-write"/>
<class-cache class="org.hibernate.auction.Bid" usage="read-only"/> <class-cache class="org.hibernate.auction.Bid" usage="read-only"/>
<collection-cache class="org.hibernate.auction.Item.bids" usage="read-write"/> <collection-cache collection="org.hibernate.auction.Item.bids" usage="read-write"/>
</session-factory> </session-factory>