使用Collection的hibernate查询缓存

时间:2014-08-25 10:15:02

标签: hibernate caching

我的Db,Table_cities和Table_Places中有两个表。 Table_cities是所有城市的主表,Table_Places包含城市中存在的各种位置。它们与OTM关系相关联。

这些表中的数据主要是静态的,我想将它保存在缓存中。我已经实现了相同的跟随。虽然工作正常但我想知道它是否会导致任何问题,因为我已经读过查询缓存可能对我的应用程序有危险,如下面的链接所示。 http://tech.puredanger.com/2009/07/10/hibernate-query-cache/

如果我应该修改它或其他任何方式,请告诉我。

TableCities Mapping

<hibernate-mapping>
    <class name="com.test.hibernateModel.Cities" table="TABLE_CITIES" schema="CAB">
     **<cache usage="read-only"/>** 
        <id name="objid" type="big_decimal">
            <column name="OBJID" precision="22" scale="0" />
            <generator class="assigned" />
        </id>
        **<natural-id>** 
        <property name="name" type="string">
            <column name="NAME" />
        </property>
        **</natural-id>**

        <set name="tablePlaces" table="TABLE_PLACES" inverse="true" lazy="true" fetch="select">
          **<cache usage="read-only" />** 
            <key>
                <column name="PLACES2CITIES"/>
            </key>
            <one-to-many class="com.test.hibernateModel.Places" />
        </set>

    </class>
</hibernate-mapping>

TablePlaces Mapping

<hibernate-mapping>
    <class name="com.test.hibernateModel.Places" table="TABLE_PLACES" schema="CAB">
    **<cache usage="read-only"/>** 
        <id name="objid" type="big_decimal">
            <column name="OBJID" precision="22" scale="0" />
            <generator class="assigned" />
        </id>
        <property name="refId" type="string">
            <column name="ref_id" />
        </property>
        <property name="value" type="string">
            <column name="value" />
        </property>
      </class>
</hibernate-mapping>

ehcache.xml


     <cache name="com.test.hibernateModel.Cities"
    maxElementsInMemory="500"
    eternal="true"
    overflowToDisk="false"
    />

    <cache name="com.test.hibernateModel.Cities.tablePlaces"
    maxElementsInMemory="500"
    eternal="true"
    overflowToDisk="false"
    />

     <cache name="com.test.hibernateModel.Places"
    maxElementsInMemory="500"
    eternal="true"
    overflowToDisk="false"
    /> 

以下是我的DAO。

public LocationsVO getLocation(String cityName) throws Exception {
        Session currentSession = null;
        try {
            currentSession = this.getSessionFactory().openSession();
            currentSession.beginTransaction();
            Criteria crit = currentSession.createCriteria(Cities.class).add(
                    Restrictions.eq("name", cityName)).setCacheable(true);
            List<Cities> cities = crit.list();
            for (int i = 0; i < cities.size(); i++) {
                location=new LocationsVO();
                Cities tempCity = cities.get(i);
                location.setCityId(tempCity.getObjid().toString());
                location.setCityName(tempCity.getName());
                location.setLocations(new ArrayList<Places>(tempCity
                        .getTablePlaces()));

            }

        } catch (Exception e) {
            throw e;
        } finally {
            if (null != currentSession)
                currentSession.close();
        }

        return location;
    }

1 个答案:

答案 0 :(得分:0)

由于您使用“只读缓存”,因此可以避免链接文章中描述的最常提到的问题(第1,2和3点)。 如果这些表中的数据是有效的静态(=仅插入,而在休眠时没有更新/删除),那么使用“只读”缓存是正确的方法,并且根据我的经验而言根本不是危险的。