forked from springside/springside4
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Calvin
committed
Nov 21, 2014
1 parent
26d543b
commit da72edb
Showing
8 changed files
with
48 additions
and
54 deletions.
There are no files selected for viewing
4 changes: 3 additions & 1 deletion
4
examples/quickstart/src/main/resources/ehcache/ehcache-shiro.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 17 additions & 6 deletions
23
examples/showcase/src/main/resources/cache/ehcache-demo.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,25 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE xml> | ||
<ehcache updateCheck="false" name="demoCache"> | ||
|
||
<!-- http://ehcache.org/ehcache.xml --> | ||
<diskStore path="java.io.tmpdir/ehcache/showcase/demo" /> | ||
|
||
<!-- DefaultCache setting. --> | ||
<defaultCache maxEntriesLocalHeap="10000" eternal="false" timeToIdleSeconds="300" timeToLiveSeconds="600" | ||
overflowToDisk="true" maxEntriesLocalDisk="100000" /> | ||
|
||
<defaultCache | ||
maxEntriesLocalHeap="10000" | ||
eternal="false" | ||
timeToIdleSeconds="300" | ||
timeToLiveSeconds="600" | ||
overflowToDisk="true" | ||
maxEntriesLocalDisk="100000" /> | ||
|
||
<!-- Special objects setting. --> | ||
<!-- Refresh demoCache every hour,按Cache实际大小而不是Element数量进行限制,超过限制后不保存到磁盘。 --> | ||
<cache name="demoCache" maxBytesLocalHeap="10M" eternal="false" timeToIdleSeconds="3600" | ||
timeToLiveSeconds="3600" overflowToDisk="false" /> | ||
<cache | ||
name="demoCache" | ||
maxBytesLocalHeap="10M" | ||
eternal="false" | ||
timeToIdleSeconds="3600" | ||
timeToLiveSeconds="3600" | ||
overflowToDisk="false" /> | ||
</ehcache> |
3 changes: 2 additions & 1 deletion
3
examples/showcase/src/main/resources/cache/ehcache-hibernate-local.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
examples/showcase/src/main/resources/cache/ehcache-hibernate-rmi.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
examples/showcase/src/main/resources/security/ehcache-shiro.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters