-
Notifications
You must be signed in to change notification settings - Fork 107
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
Showing
2 changed files
with
2 additions
and
5 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -32,12 +32,12 @@ | |
* with cleaning up items above the capacity threshold. This means that the cache may temporarily exceed its capacity, but | ||
* it will soon be trimmed back to the capacity limit by the scheduled thread. | ||
* <p> | ||
* LRUCache supports <code>null</code> for both key or value. | ||
* LRUCache supports <code>null</code> for both <b>key</b> or <b>value</b>. | ||
* <p> | ||
* <b>Special Thanks:</b> This implementation was inspired by insights and suggestions from Ben Manes. | ||
* @see LockingLRUCacheStrategy | ||
* @see ThreadedLRUCacheStrategy | ||
* @see LRUCache.StrategyType | ||
* <p> | ||
* @author John DeRegnaucourt ([email protected]) | ||
* <br> | ||
* Copyright (c) Cedar Software LLC | ||
|
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 |
---|---|---|
|
@@ -18,9 +18,6 @@ | |
* perfectly maintained under heavy load. | ||
* <p> | ||
* LRUCache supports <code>null</code> for both key or value. | ||
* <p> | ||
* <b>Special Thanks:</b> This implementation was inspired by insights and suggestions from Ben Manes. | ||
* <p> | ||
* @author John DeRegnaucourt ([email protected]) | ||
* <br> | ||
* Copyright (c) Cedar Software LLC | ||
|