-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Home
Ben Manes edited this page Mar 22, 2015
·
21 revisions
Caffeine is a Java 8 based concurrency library that provides specialized data structures not provided by the excellent standard library.
-
EliminationStack:
A lock-free stack that employs an elimination backoff arena to cancel operations with reverse semantics. -
SingleConsumerQueue:
A lock-free queue that supports concurrent producers and is restricted to a single consumer.
A high performance cache with a Google Guava inspired API. This implementation draws on the author's experience designing ConcurrentLinkedHashMap and co-authoring Guava's Cache. The API is extended to include an asynchronous cache and to expose low-level options like changing the maximum size, expiration timeouts, and traversing in retention order.
Cache extensions include tracing, simulation, and JSR-107 JCache integration.