Repository: cxf-fediz Updated Branches: refs/heads/master 5e9de17ae -> 1b2c9a0bc
Support persistence for client registrations Project: http://git-wip-us.apache.org/repos/asf/cxf-fediz/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf-fediz/commit/1b2c9a0b Tree: http://git-wip-us.apache.org/repos/asf/cxf-fediz/tree/1b2c9a0b Diff: http://git-wip-us.apache.org/repos/asf/cxf-fediz/diff/1b2c9a0b Branch: refs/heads/master Commit: 1b2c9a0bcfe5b45b3908ba68ad73f25a2a7ff1a5 Parents: 5e9de17 Author: Colm O hEigeartaigh <[email protected]> Authored: Wed Dec 2 16:42:50 2015 +0000 Committer: Colm O hEigeartaigh <[email protected]> Committed: Wed Dec 2 16:42:50 2015 +0000 ---------------------------------------------------------------------- services/oidc/src/main/resources/cxf-oauth2-ehcache.xml | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/1b2c9a0b/services/oidc/src/main/resources/cxf-oauth2-ehcache.xml ---------------------------------------------------------------------- diff --git a/services/oidc/src/main/resources/cxf-oauth2-ehcache.xml b/services/oidc/src/main/resources/cxf-oauth2-ehcache.xml new file mode 100644 index 0000000..730b9bd --- /dev/null +++ b/services/oidc/src/main/resources/cxf-oauth2-ehcache.xml @@ -0,0 +1,6 @@ +<?xml version="1.0"?> +<ehcache xsi:noNamespaceSchemaLocation="ehcache.xsd" updateCheck="false" monitoring="autodetect" dynamicConfig="true" name="fedizOidcSecurityCache"> + <diskStore path="java.io.tmpdir/oidc"/> + <defaultCache maxEntriesLocalHeap="5000" eternal="false" timeToIdleSeconds="3600" timeToLiveSeconds="3600" overflowToDisk="true" maxElementsOnDisk="10000000" diskPersistent="true" diskExpiryThreadIntervalSeconds="120" memoryStoreEvictionPolicy="LRU"/> + +</ehcache>
