Uses of Class
org.apache.lucene.store.FSDirectory

Packages that use FSDirectory
org.apache.lucene.store Binary i/o API, used for all index data. 
 

Uses of FSDirectory in org.apache.lucene.store
 

Subclasses of FSDirectory in org.apache.lucene.store
 class MMapDirectory
          File-based Directory implementation that uses mmap for reading, and SimpleFSDirectory.SimpleFSIndexOutput for writing.
 class NIOFSDirectory
          An FSDirectory implementation that uses java.nio's FileChannel's positional read, which allows multiple threads to read from the same file without synchronizing.
 class SimpleFSDirectory
          A straightforward implementation of FSDirectory using java.io.RandomAccessFile.
 

Methods in org.apache.lucene.store that return FSDirectory
static FSDirectory FSDirectory.getDirectory(File file)
          Deprecated. Use open(File)
static FSDirectory FSDirectory.getDirectory(File file, boolean create)
          Deprecated. Use IndexWriter's create flag, instead, to create a new index.
static FSDirectory FSDirectory.getDirectory(File file, LockFactory lockFactory)
          Deprecated. Use open(File, LockFactory)
static FSDirectory FSDirectory.getDirectory(String path)
          Deprecated. Use open(File)
static FSDirectory FSDirectory.getDirectory(String path, boolean create)
          Deprecated. Use IndexWriter's create flag, instead, to create a new index.
static FSDirectory FSDirectory.getDirectory(String path, LockFactory lockFactory)
          Deprecated. Use open(File, LockFactory)
static FSDirectory FSDirectory.open(File path)
          Creates an FSDirectory instance, trying to pick the best implementation given the current environment.
static FSDirectory FSDirectory.open(File path, LockFactory lockFactory)
          Just like open(File), but allows you to also specify a custom LockFactory.
 



Copyright © 2000-2010 Apache Software Foundation. All Rights Reserved.