FileDocCategorySizeDatePackage
GCJDirectory.javaAPI DocApache Lucene 2.1.01366Wed Feb 14 10:46:42 GMT 2007org.apache.lucene.store

GCJDirectory

public class GCJDirectory extends FSDirectory
Native file-based {@link Directory} implementation, using GCJ.
author
Doug Cutting

Fields Summary
Constructors Summary
Methods Summary
public org.apache.lucene.store.IndexInputopenInput(java.lang.String name)

    // conserve address space by only mmapping the one index file that most
    // impacts performance
    if (name.endsWith(".frq")) {
      return new GCJIndexInput(new File(getFile(), name).getPath());
    } else {
      return super.openInput(name);
    }