This is an automated email from the ASF dual-hosted git repository.
asf-gitbox-commits pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jcs.git
from 404fd99d Merge branch 'master' of
https://gitbox.apache.org/repos/asf/commons-jcs.git
new 4591e095 More loops to test sharding
new 7a7dfd1a Remove locking from map operations
new 41523a34 Introduce locking for DoubleLinkedList
new 989e4536 Introduce memory cache sharding
new 3f03fc82 Make shards configurable, document the behaviour
new 02a06385 Move sharding to DoubleLinkedList
new e82e937d Remove locking and use the thread-safe DoubleLinkedList
The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../jcs4/engine/CompositeCacheAttributes.java | 15 +-
.../engine/behavior/ICompositeCacheAttributes.java | 9 +-
.../AbstractDoubleLinkedListMemoryCache.java | 92 ++----
.../jcs4/engine/memory/AbstractMemoryCache.java | 261 ++++++----------
.../jcs4/engine/memory/lru/LHMLRUMemoryCache.java | 168 ++++++++--
.../memory/soft/SoftReferenceMemoryCache.java | 68 ++--
.../commons/jcs4/utils/struct/AbstractLRUMap.java | 259 ++++------------
.../jcs4/utils/struct/DoubleLinkedList.java | 343 ++++++++++++++++-----
.../jcs4/utils/struct/DoubleLinkedListNode.java | 25 +-
.../jcs4/utils/struct/LRUElementDescriptor.java | 16 +
.../jcs4/JCSConcurrentCacheAccessUnitTest.java | 2 +-
.../jcs4/engine/TestCompositeCacheAttributes.java | 85 ++---
.../utils/struct/DoubleLinkedListDumpUnitTest.java | 4 +-
.../utils/struct/DoubleLinkedListUnitTest.java | 18 +-
.../src/test/test-conf/TestJCS-73.ccf | 4 +-
src/changes/changes.xml | 3 +
src/site/xdoc/RegionProperties.xml | 9 +
17 files changed, 736 insertions(+), 645 deletions(-)