FileDocCategorySizeDatePackage
GCJDirectory.javaAPI DocApache Lucene 1.91178Mon Feb 20 09:20:20 GMT 2006org.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);
    }