public class RecentK<Type>
extends Object
implements Iterable<Type>
Tracks an (approximate) set of recently seen unique elements in a stream, based on a concurrent LRU implementation.
This class is thread safe. For the common case of items that are recently seen being seen again, this class is
lock free.