CLucene - a full-featured, c++ search engine
API Documentation
- Member lucene::search::BooleanQuery::getClauses () const
- Class lucene::document::DateField
- If you build a new index, use DateTools instead. This class is included for use with existing indices and will be removed in a future release.
- Member lucene::document::Field::Keyword (const TCHAR *name, const TCHAR *value)
- Use new Field(name,value,Field::STORE_YES | Field::INDEX_UNTOKENIZED)
- Member lucene::document::Field::Text (const TCHAR *name, lucene::util::Reader *value, const bool storeTermVector=false)
- Use new Field(name,value, Field::INDEX_TOKENIZED)
- Member lucene::document::Field::Text (const TCHAR *name, const TCHAR *value, const bool storeTermVector=false)
- Use new Field(name,value,Field::STORE_YES | Field::INDEX_TOKENIZED)
- Member lucene::document::Field::UnIndexed (const TCHAR *name, const TCHAR *value)
- Use new Field(name,value,Field::STORE_YES | Field::INDEX_NO)
- Member lucene::document::Field::UnStored (const TCHAR *name, const TCHAR *value, const bool storeTermVector=false)
- Use new Field(name,value,Field::STORE_NO | Field::INDEX_TOKENIZED)
- Member lucene::index::IndexReader::deleteDoc (const int32_t docNum)
- . Use deleteDocument instead.
- Member lucene::index::IndexReader::deleteTerm (Term *term)
- . Use deleteDocuments instead.
- Member lucene::store::LuceneLockWith::LuceneLockWith (LuceneLock *lock, int64_t lockWaitTimeout)
- Kept only to avoid breaking existing code.
- Member lucene::search::PhraseQuery::getPositions (Array< int32_t > &result) const
- . use getPositions(Array<int32_t>& result)
clucene.sourceforge.net