api/core/conf/ehcache.xml

Code
Comments
Other
Rev Date Author Line
1746 15 Jun 07 gregory 1 <?xml version="1.0" ?>
1746 15 Jun 07 gregory 2 <!--
1746 15 Jun 07 gregory 3   $Id: ehcache.xml 441 2006-08-10 10:19:22Z jari $
1746 15 Jun 07 gregory 4
1916 31 Aug 07 jari 5   Copyright (C) 2007 Gregory Vincic
1746 15 Jun 07 gregory 6
1746 15 Jun 07 gregory 7   This file is part of Proteios.
1746 15 Jun 07 gregory 8   Available at http://www.proteios.org/
1746 15 Jun 07 gregory 9
1746 15 Jun 07 gregory 10   Proteios is free software; you can redistribute it and/or
1746 15 Jun 07 gregory 11   modify it under the terms of the GNU General Public License
1746 15 Jun 07 gregory 12   as published by the Free Software Foundation; either version 2
1746 15 Jun 07 gregory 13   of the License, or (at your option) any later version.
1746 15 Jun 07 gregory 14
1746 15 Jun 07 gregory 15   Proteios is distributed in the hope that it will be useful,
1746 15 Jun 07 gregory 16   but WITHOUT ANY WARRANTY; without even the implied warranty of
1746 15 Jun 07 gregory 17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1746 15 Jun 07 gregory 18   GNU General Public License for more details.
1746 15 Jun 07 gregory 19
1746 15 Jun 07 gregory 20   You should have received a copy of the GNU General Public License
1746 15 Jun 07 gregory 21   along with this program; if not, write to the Free Software
1746 15 Jun 07 gregory 22   Foundation, Inc., 59 Temple Place - Suite 330,
1746 15 Jun 07 gregory 23   Boston, MA  02111-1307, USA.
1746 15 Jun 07 gregory 24 -->
1746 15 Jun 07 gregory 25 <ehcache>
1746 15 Jun 07 gregory 26   <diskStore path="java.io.tmpdir"/>
1746 15 Jun 07 gregory 27   <defaultCache
1746 15 Jun 07 gregory 28     maxElementsInMemory="100"
1746 15 Jun 07 gregory 29     eternal="false"
1746 15 Jun 07 gregory 30     timeToIdleSeconds="3600"
1746 15 Jun 07 gregory 31     timeToLiveSeconds="3600"
1746 15 Jun 07 gregory 32     overflowToDisk="false"
1746 15 Jun 07 gregory 33   />
1746 15 Jun 07 gregory 34   <cache
1746 15 Jun 07 gregory 35     name="org.proteios.core.data.AnnotationTypeData"
1746 15 Jun 07 gregory 36     maxElementsInMemory="100"
1746 15 Jun 07 gregory 37     eternal="false"
1746 15 Jun 07 gregory 38     timeToIdleSeconds="3600"
1746 15 Jun 07 gregory 39     timeToLiveSeconds="3600"
1746 15 Jun 07 gregory 40     overflowToDisk="false"
1746 15 Jun 07 gregory 41   />
1746 15 Jun 07 gregory 42   <cache
1746 15 Jun 07 gregory 43     name="org.proteios.core.data.BioMaterialData"
1746 15 Jun 07 gregory 44     maxElementsInMemory="500"
1746 15 Jun 07 gregory 45     eternal="false"
1746 15 Jun 07 gregory 46     timeToIdleSeconds="3600"
1746 15 Jun 07 gregory 47     timeToLiveSeconds="3600"
1746 15 Jun 07 gregory 48     overflowToDisk="false"
1746 15 Jun 07 gregory 49   />
1746 15 Jun 07 gregory 50   <cache
1746 15 Jun 07 gregory 51     name="org.proteios.core.data.DirectoryData"
1746 15 Jun 07 gregory 52     maxElementsInMemory="100"
1746 15 Jun 07 gregory 53     eternal="false"
1746 15 Jun 07 gregory 54     timeToIdleSeconds="3600"
1746 15 Jun 07 gregory 55     timeToLiveSeconds="3600"
1746 15 Jun 07 gregory 56     overflowToDisk="false"
1746 15 Jun 07 gregory 57   />
1746 15 Jun 07 gregory 58   <cache
1746 15 Jun 07 gregory 59     name="org.proteios.core.data.FileTypeData"
1746 15 Jun 07 gregory 60     maxElementsInMemory="100"
1746 15 Jun 07 gregory 61     eternal="false"
1746 15 Jun 07 gregory 62     timeToIdleSeconds="3600"
1746 15 Jun 07 gregory 63     timeToLiveSeconds="3600"
1746 15 Jun 07 gregory 64     overflowToDisk="false"
1746 15 Jun 07 gregory 65   />
1746 15 Jun 07 gregory 66   <cache
1746 15 Jun 07 gregory 67     name="org.proteios.core.data.GroupData"
1746 15 Jun 07 gregory 68     maxElementsInMemory="100"
1746 15 Jun 07 gregory 69     eternal="false"
1746 15 Jun 07 gregory 70     timeToIdleSeconds="3600"
1746 15 Jun 07 gregory 71     timeToLiveSeconds="3600"
1746 15 Jun 07 gregory 72     overflowToDisk="false"
1746 15 Jun 07 gregory 73   />
1746 15 Jun 07 gregory 74   <cache
1746 15 Jun 07 gregory 75     name="org.proteios.core.data.HardwareTypeData"
1746 15 Jun 07 gregory 76     maxElementsInMemory="100"
1746 15 Jun 07 gregory 77     eternal="false"
1746 15 Jun 07 gregory 78     timeToIdleSeconds="3600"
1746 15 Jun 07 gregory 79     timeToLiveSeconds="3600"
1746 15 Jun 07 gregory 80     overflowToDisk="false"
1746 15 Jun 07 gregory 81   />
1746 15 Jun 07 gregory 82   <cache
1746 15 Jun 07 gregory 83     name="org.proteios.core.data.LabelData"
1746 15 Jun 07 gregory 84     maxElementsInMemory="100"
1746 15 Jun 07 gregory 85     eternal="false"
1746 15 Jun 07 gregory 86     timeToIdleSeconds="3600"
1746 15 Jun 07 gregory 87     timeToLiveSeconds="3600"
1746 15 Jun 07 gregory 88     overflowToDisk="false"
1746 15 Jun 07 gregory 89   />
1746 15 Jun 07 gregory 90   <cache
1746 15 Jun 07 gregory 91     name="org.proteios.core.data.MimeTypeData"
1746 15 Jun 07 gregory 92     maxElementsInMemory="100"
1746 15 Jun 07 gregory 93     eternal="false"
1746 15 Jun 07 gregory 94     timeToIdleSeconds="3600"
1746 15 Jun 07 gregory 95     timeToLiveSeconds="3600"
1746 15 Jun 07 gregory 96     overflowToDisk="false"
1746 15 Jun 07 gregory 97   />
1746 15 Jun 07 gregory 98   <cache
1746 15 Jun 07 gregory 99     name="org.proteios.core.data.NewsData"
1746 15 Jun 07 gregory 100     maxElementsInMemory="100"
1746 15 Jun 07 gregory 101     eternal="false"
1746 15 Jun 07 gregory 102     timeToIdleSeconds="3600"
1746 15 Jun 07 gregory 103     timeToLiveSeconds="3600"
1746 15 Jun 07 gregory 104     overflowToDisk="false"
1746 15 Jun 07 gregory 105   />
1746 15 Jun 07 gregory 106   <cache
1746 15 Jun 07 gregory 107     name="org.proteios.core.data.PluginConfigurationData"
1746 15 Jun 07 gregory 108     maxElementsInMemory="100"
1746 15 Jun 07 gregory 109     eternal="false"
1746 15 Jun 07 gregory 110     timeToIdleSeconds="3600"
1746 15 Jun 07 gregory 111     timeToLiveSeconds="3600"
1746 15 Jun 07 gregory 112     overflowToDisk="false"
1746 15 Jun 07 gregory 113   />
1746 15 Jun 07 gregory 114   <cache
1746 15 Jun 07 gregory 115     name="org.proteios.core.data.PluginDefinitionData"
1746 15 Jun 07 gregory 116     maxElementsInMemory="100"
1746 15 Jun 07 gregory 117     eternal="false"
1746 15 Jun 07 gregory 118     timeToIdleSeconds="3600"
1746 15 Jun 07 gregory 119     timeToLiveSeconds="3600"
1746 15 Jun 07 gregory 120     overflowToDisk="false"
1746 15 Jun 07 gregory 121   />
1746 15 Jun 07 gregory 122   <cache
1746 15 Jun 07 gregory 123     name="org.proteios.core.data.PluginTypeData"
1746 15 Jun 07 gregory 124     maxElementsInMemory="100"
1746 15 Jun 07 gregory 125     eternal="false"
1746 15 Jun 07 gregory 126     timeToIdleSeconds="3600"
1746 15 Jun 07 gregory 127     timeToLiveSeconds="3600"
1746 15 Jun 07 gregory 128     overflowToDisk="false"
1746 15 Jun 07 gregory 129   />
1746 15 Jun 07 gregory 130   <cache
1746 15 Jun 07 gregory 131     name="org.proteios.core.data.ProjectData"
1746 15 Jun 07 gregory 132     maxElementsInMemory="100"
1746 15 Jun 07 gregory 133     eternal="false"
1746 15 Jun 07 gregory 134     timeToIdleSeconds="3600"
1746 15 Jun 07 gregory 135     timeToLiveSeconds="3600"
1746 15 Jun 07 gregory 136     overflowToDisk="false"
1746 15 Jun 07 gregory 137   />
1746 15 Jun 07 gregory 138   <cache
1746 15 Jun 07 gregory 139     name="org.proteios.core.data.ProtocolTypeData"
1746 15 Jun 07 gregory 140     maxElementsInMemory="100"
1746 15 Jun 07 gregory 141     eternal="false"
1746 15 Jun 07 gregory 142     timeToIdleSeconds="3600"
1746 15 Jun 07 gregory 143     timeToLiveSeconds="3600"
1746 15 Jun 07 gregory 144     overflowToDisk="false"
1746 15 Jun 07 gregory 145   />
1746 15 Jun 07 gregory 146   <cache
1746 15 Jun 07 gregory 147     name="org.proteios.core.data.QuotaData"
1746 15 Jun 07 gregory 148     maxElementsInMemory="100"
1746 15 Jun 07 gregory 149     eternal="false"
1746 15 Jun 07 gregory 150     timeToIdleSeconds="3600"
1746 15 Jun 07 gregory 151     timeToLiveSeconds="3600"
1746 15 Jun 07 gregory 152     overflowToDisk="false"
1746 15 Jun 07 gregory 153   />
1746 15 Jun 07 gregory 154   <cache
1746 15 Jun 07 gregory 155     name="org.proteios.core.data.QuotaTypeData"
1746 15 Jun 07 gregory 156     maxElementsInMemory="100"
1746 15 Jun 07 gregory 157     eternal="false"
1746 15 Jun 07 gregory 158     timeToIdleSeconds="3600"
1746 15 Jun 07 gregory 159     timeToLiveSeconds="3600"
1746 15 Jun 07 gregory 160     overflowToDisk="false"
1746 15 Jun 07 gregory 161   />
1746 15 Jun 07 gregory 162   <cache
1746 15 Jun 07 gregory 163     name="org.proteios.core.data.RoleData"
1746 15 Jun 07 gregory 164     maxElementsInMemory="100"
1746 15 Jun 07 gregory 165     eternal="false"
1746 15 Jun 07 gregory 166     timeToIdleSeconds="3600"
1746 15 Jun 07 gregory 167     timeToLiveSeconds="3600"
1746 15 Jun 07 gregory 168     overflowToDisk="false"
1746 15 Jun 07 gregory 169   />
1746 15 Jun 07 gregory 170   <cache
1746 15 Jun 07 gregory 171     name="org.proteios.core.data.SoftwareTypeData"
1746 15 Jun 07 gregory 172     maxElementsInMemory="100"
1746 15 Jun 07 gregory 173     eternal="false"
1746 15 Jun 07 gregory 174     timeToIdleSeconds="3600"
1746 15 Jun 07 gregory 175     timeToLiveSeconds="3600"
1746 15 Jun 07 gregory 176     overflowToDisk="false"
1746 15 Jun 07 gregory 177   />
1746 15 Jun 07 gregory 178   <cache
1746 15 Jun 07 gregory 179     name="org.proteios.core.data.UserData"
1746 15 Jun 07 gregory 180     maxElementsInMemory="100"
1746 15 Jun 07 gregory 181     eternal="false"
1746 15 Jun 07 gregory 182     timeToIdleSeconds="3600"
1746 15 Jun 07 gregory 183     timeToLiveSeconds="3600"
1746 15 Jun 07 gregory 184     overflowToDisk="false"
1746 15 Jun 07 gregory 185   />
1746 15 Jun 07 gregory 186 </ehcache> 
1746 15 Jun 07 gregory 187