Java org.apache.lucene.store NRTCachingDirectory fields, constructors, methods, implement or subclass

Example usage for Java org.apache.lucene.store NRTCachingDirectory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.lucene.store NRTCachingDirectory.

The text is from its open source code.

Constructor

NRTCachingDirectory(Directory delegate, double maxMergeSizeMB, double maxCachedMB)
We will cache a newly created output if 1) it's a flush or a merge and the estimated size of the merged segment is <= maxMergeSizeMB , and 2) the total cached bytes is <= maxCachedMB

Method

DirectorygetDelegate()
Return the wrapped Directory .