Uses of Interface
org.apache.lucene.store.jdbc.index.JdbcIndexConfigurable

Packages that use JdbcIndexConfigurable
org.apache.lucene.store.jdbc.index   
org.apache.lucene.store.jdbc.index.oracle   
 

Uses of JdbcIndexConfigurable in org.apache.lucene.store.jdbc.index
 

Classes in org.apache.lucene.store.jdbc.index that implement JdbcIndexConfigurable
 class AbstractJdbcIndexOutput
           
 class FetchOnBufferReadJdbcIndexInput
          An IndexInput implementation, that for every buffer refill will go and fetch the data from the database.
 class FetchOnOpenJdbcIndexInput
          An IndexInput implementation that will read all the relevant data from the database when created, and will cache it untill it is closed.
 class FetchPerTransactionJdbcIndexInput
          Caches blobs per transaction.
 class FileJdbcIndexOutput
          An IndexOutput implemenation that writes all the data to a temporary file, and when closed, flushes the file to the database.
 class JdbcBufferedIndexInput
          A simple base class that performs index input memory based buffering.
 class JdbcBufferedIndexOutput
          A simple base class that performs index output memory based buffering.
 class RAMAndFileJdbcIndexOutput
          An IndexOutput implementation that initially writes the data to a memory buffer.
 class RAMJdbcIndexOutput
          An IndexOutput implemenation that stores all the data written to it in memory, and flushes it to the database when the output is closed.
 

Uses of JdbcIndexConfigurable in org.apache.lucene.store.jdbc.index.oracle
 

Classes in org.apache.lucene.store.jdbc.index.oracle that implement JdbcIndexConfigurable
 class OracleFileJdbcIndexOutput
          A specialized Oracle version that works (through reflection) with Oracle 9i/8i specific blob API for blobs bigger than 4k.
 class OracleRAMAndFileJdbcIndexOutput
          A specialized Oracle version that works (through reflection) with Oracle 9i/8i specific blob API for blobs bigger than 4k.
 class OracleRAMJdbcIndexOutput
          A specialized Oracle version that works (through reflection) with Oracle 9i/8i specific blob API for blobs bigger than 4k.
 



Copyright (c) 2004-2008 The Compass Project.