Skip to content

Commit

Permalink
List automatic refreshing in the feature bullet points
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-manes committed Jan 18, 2016
1 parent 6e8b80a commit b936506
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Caffeine provides flexible construction to create a cache with a combination of
* [automatic loading of entries][population] into the cache, optionally asynchronously
* [size-based eviction][size] when a maximum is exceeded based on [frequency and recency][efficiency]
* [time-based expiration][time] of entries, measured since last access or last write
* [asynchronously refresh][refresh] when the first stale request for an entry occurs
* keys automatically wrapped in [weak references][reference]
* values automatically wrapped in [weak or soft references][reference]
* [notification][listener] of evicted (or otherwise removed) entries
Expand Down Expand Up @@ -75,6 +76,7 @@ Snapshots of the development version are available in
[population]: https://github.com/ben-manes/caffeine/wiki/Population
[size]: https://github.com/ben-manes/caffeine/wiki/Eviction#size-based
[time]: https://github.com/ben-manes/caffeine/wiki/Eviction#time-based
[refresh]: https://github.com/ben-manes/caffeine/wiki/Refresh
[reference]: https://github.com/ben-manes/caffeine/wiki/Eviction#reference-based
[listener]: https://github.com/ben-manes/caffeine/wiki/Removal
[writer]: https://github.com/ben-manes/caffeine/wiki/Writer
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ subprojects {
group = 'com.github.ben-manes.caffeine'
version.with {
major = 2 // incompatible API changes
minor = 0 // backwards-compatible additions
patch = 4 // backwards-compatible bug fixes
minor = 1 // backwards-compatible additions
patch = 0 // backwards-compatible bug fixes
releaseBuild = rootProject.hasProperty('release')
}
archivesBaseName = path[1..-1].replaceAll(':', '-').toLowerCase()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
/**
* Static access to {@link Unsafe} and convenient utility methods for performing low-level, unsafe
* operations.
* <p>
* <b>Warning:</b> This class is scheduled for removal in version <tt>3.0.0</tt>.
*
* @author ben.manes@gmail.com (Ben Manes)
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
* <li>automatic loading of entries into the cache, optionally asynchronously
* <li>size-based eviction when a maximum is exceeded based on frequency and recency
* <li>time-based expiration of entries, measured since last access or last write
* <li>asynchronously refresh when the first stale request for an entry occurs
* <li>keys automatically wrapped in {@linkplain WeakReference weak} references
* <li>values automatically wrapped in {@linkplain WeakReference weak} or
* {@linkplain SoftReference soft} references
Expand Down

0 comments on commit b936506

Please sign in to comment.