use of alluxio.client.file.cache.evictor.NondeterministicLRUCacheEvictor in project alluxio by Alluxio.
the class NondeterministicLRUCacheEvictorTest method before.
/**
* Sets up the instances.
*/
@Before
public void before() {
InstancedConfiguration conf = ConfigurationTestUtils.defaults();
mEvictor = new NondeterministicLRUCacheEvictor(conf);
mEvictor.setNumOfCandidate(2);
}
Aggregations