mirror of https://github.com/apache/lucene.git
9 lines
359 B
Plaintext
9 lines
359 B
Plaintext
# Apache Lucene Migration Guide
|
|
|
|
## Separation of IndexDocument and StoredDocument (LUCENE-3312)
|
|
|
|
The API of oal.document was restructured to differentiate between stored
|
|
documents and indexed documents. IndexReader.document(int) now returns
|
|
StorableDocument instead of Document. In most cases a simple replacement
|
|
of the return type is enough to upgrade.
|