dnaber      2004/11/19 12:39:03

  Modified:    .        CHANGES.txt
  Log:
  put the change items into categories, making the file easier to read
  
  Revision  Changes    Path
  1.122     +83 -75    jakarta-lucene/CHANGES.txt
  
  Index: CHANGES.txt
  ===================================================================
  RCS file: /home/cvs/jakarta-lucene/CHANGES.txt,v
  retrieving revision 1.121
  retrieving revision 1.122
  diff -u -r1.121 -r1.122
  --- CHANGES.txt       13 Nov 2004 15:11:26 -0000      1.121
  +++ CHANGES.txt       19 Nov 2004 20:39:02 -0000      1.122
  @@ -4,12 +4,18 @@
   
   1.9 RC1
   
  - 1. The API contained methods that declared to throw an IOException
  -    but that never did this. These declarations have been removed. If 
  -    your code tries to catch these exceptions you might need to remove
  -    those catch clauses to avoid compile errors. (Daniel Naber)
  +New features
  +
  + 1. Added support for stored compressed fields (patch #31149)
  +    (Bernhard Messer via Christoph)
  +    
  + 2. Added support for binary stored fields (patch #29370)
  +    (Drew Farris and Bernhard Messer via Christoph)
   
  - 2. FuzzyQuery now takes an additional parameter that specifies the
  + 3. Added support for position and offset information in term vectors
  +    (patch #18927). (Grant Ingersoll & Christoph)
  +
  + 4. FuzzyQuery now takes an additional parameter that specifies the
       minimum similarity that is required for a term to match the query.
       The QueryParser syntax for this is term~x, where x is a floating 
       point number >= 0 and < 1 (a bigger number means that a higher
  @@ -17,108 +23,110 @@
       for FuzzyQuerys so that only those terms are considered similar that 
       start with this prefix. This can speed up FuzzyQuery greatly.
       (Daniel Naber, Christoph Goller)
  -  
  - 3. The Russian and the German analyzers have been moved to Sandbox.
  -    Also, the WordlistLoader class has been moved one level up in the
  -    hierarchy and is now org.apache.lucene.analysis.WordlistLoader
  -    (Daniel Naber)
  -    
  - 4. Fixed a bug in IndexWriter.addIndexes(IndexReader[] readers) that
  -    prevented deletion of obsolete segments. (Christoph Goller)
  -     
  - 5. Disk usage (peak requirements during indexing and optimization)
  -    in case of compound file format has been improved. 
  -    (Bernhard, Dmitry, and Christoph)
  -
  - 6. Added javadocs-internal to build.xml - bug #30360
  -    (Paul Elschot via Otis)
   
  - 7. Several methods and fields have been deprecated. The API documentation 
  -    contains information about the recommended replacements. It is planned
  -    that the deprecated methods and fields will be removed in Lucene 2.0.
  -    (Daniel Naber)
  + 5. PhraseQuery and PhrasePrefixQuery now allow the explicit specification
  +    of relative positions. (Christoph Goller)
   
  - 8. A new class DateTools has been added. It allows you to format dates
  + 6. A new class DateTools has been added. It allows you to format dates
       in a readable format adequate for indexing. Unlike the existing
       DateField class DateTools can cope with dates before 1970 and it
       forces you to specify the desired date resolution (e.g. month, day,
       second, ...) which can make RangeQuerys on those fields more efficient.
       (Daniel Naber)
  -    
  - 9. PhraseQuery and PhrasePrefixQuery now allow the explicit specification
  -    of relative positions. (Christoph Goller)
  -    
  -10. QueryParser changes: Fix for ArrayIndexOutOfBoundsExceptions 
  -    (patch #9110); some unused method parameters removed; The ability
  -    to specify a minimum similarity for FuzzyQuery has been added.
  -    (Christoph Goller)
  -   
  -11. Added support for binary stored fields (patch #29370)
  -    (Drew Farris and Bernhard Messer via Christoph)
  -       
  -12. Permit unbuffered Directory implementations (e.g., using mmap).
  +
  + 7. QueryParser now correctly works with Analyzers that can return more 
  +    than one token per position. For example, a query "+fast +car"
  +    would be parsed as "+fast +(car automobile)" if the Analyzer
  +    returns "car" and "automobile" at the same position whenever it 
  +    finds "car" (Patch #23307).
  +    (Pierrick Brihaye, Daniel Naber)
  +
  + 8. Permit unbuffered Directory implementations (e.g., using mmap).
       InputStream is replaced by the new classes IndexInput and
       BufferedIndexInput.  OutputStream is replaced by the new classes
       IndexOutput and BufferedIndexOutput.  InputStream and OutputStream
       are now deprecated and FSDirectory is now subclassable. (cutting)
   
  -13. Fixed bug #31241: Sorting could lead to incorrect results (documents
  -    missing, others duplicated) if the sort keys were not unique and there
  -    were more than 100 matches. (Daniel Naber)
  -
  -14. Add native Directory and TermDocs implementations that work under
  + 9. Add native Directory and TermDocs implementations that work under
       GCJ.  These require GCC 3.4.0 or later and have only been tested
       on Linux.  Use 'ant gcj' to build demo applications. (cutting)
   
  -15. Add MMapDirectory, which uses nio to mmap input files.  This is
  +10. Add MMapDirectory, which uses nio to mmap input files.  This is
       still somewhat slower than FSDirectory.  However it uses less
       memory per query term, since a new buffer is not allocated per
       term, which may help applications which use, e.g., wildcard
       queries.  It may also someday be faster. (cutting & Paul Elschot)
   
  -16. Optimize the performance of certain uses of BooleanScorer,
  +11. Added javadocs-internal to build.xml - bug #30360
  +    (Paul Elschot via Otis)
  +
  +API Changes
  +
  + 1. Several methods and fields have been deprecated. The API documentation 
  +    contains information about the recommended replacements. It is planned
  +    that the deprecated methods and fields will be removed in Lucene 2.0.
  +    (Daniel Naber)
  +
  + 2. The Russian and the German analyzers have been moved to Sandbox.
  +    Also, the WordlistLoader class has been moved one level up in the
  +    hierarchy and is now org.apache.lucene.analysis.WordlistLoader
  +    (Daniel Naber)
  +
  + 3. The API contained methods that declared to throw an IOException
  +    but that never did this. These declarations have been removed. If 
  +    your code tries to catch these exceptions you might need to remove
  +    those catch clauses to avoid compile errors. (Daniel Naber)
  +    
  + 4. Add a serializable Parameter Class to standardize parameter enum
  +    classes in BooleanClause and Field. (Christoph)
  +
  +Bug fixes
  +
  + 1. Memory leak in Sort code (Bug# 31240) eliminated.
  +    (Rafal Krzewski via Christoph and Daniel)
  +
  + 2. The JSP demo page (src/jsp/results.jsp) now properly escapes error
  +    messages which might contain user input (e.g. error messages about 
  +    query parsing). If you used that page as a starting point for your
  +    own code please make sure your code also properly escapes HTML
  +    characters from user input in order to avoid so-called cross site
  +    scripting attacks. (Daniel Naber)
  +
  + 3. QueryParser changes: Fix for ArrayIndexOutOfBoundsExceptions 
  +    (patch #9110); some unused method parameters removed; The ability
  +    to specify a minimum similarity for FuzzyQuery has been added.
  +    (Christoph Goller)
  +
  + 4. Fixed a bug in IndexWriter.addIndexes(IndexReader[] readers) that
  +    prevented deletion of obsolete segments. (Christoph Goller)
  +
  + 5. Fixed bug #31241: Sorting could lead to incorrect results (documents
  +    missing, others duplicated) if the sort keys were not unique and there
  +    were more than 100 matches. (Daniel Naber)
  +
  +Optimizations
  +     
  + 1. Disk usage (peak requirements during indexing and optimization)
  +    in case of compound file format has been improved. 
  +    (Bernhard, Dmitry, and Christoph)
  +
  + 2. Optimize the performance of certain uses of BooleanScorer,
       TermScorer and IndexSearcher.  In particular, a BooleanQuery
       composed of TermQuery, with not all terms required, that returns a
       TopDocs (e.g., through a Hits with no Sort specified) runs much
       faster.  (cutting)
       
  -17. Memory leak in Sort code (Bug# 31240) eliminated.
  -    (Rafal Krzewski via Christoph and Daniel)
  -    
  -18. Add support for stored compressed fields (Bug#31149).
  -    (Bernhard Messer via Christoph)
  -    
  -19. Add support for position and offset information in term vectors
  -    (Patch #18927). (Grant Ingersoll & Christoph)
  -    
  -20. Removed synchronization from reading of term vectors with an
  + 3. Removed synchronization from reading of term vectors with an
       IndexReader (Patch #30736). (Bernhard Messer via Christoph)
  -    
  -21. Add a serializable Parameter Class to standardize parameter enum
  -    classes in BooleanClause and Field. (Christoph)
   
  -22. Optimize term-dictionary lookup to allocate far fewer terms when
  + 4. Optimize term-dictionary lookup to allocate far fewer terms when
       scanning for the matching term.  This speeds searches involving
       low-frequency terms, where the cost of dictionary lookup can be
       significant. (cutting)
   
  -23. The JSP demo page (src/jsp/results.jsp) now properly escapes error
  -    messages which might contain user input (e.g. error messages about 
  -    query parsing). If you used that page as a starting point for your
  -    own code please make sure your code also properly escapes HTML
  -    characters from user input in order to avoid so-called cross site
  -    scripting attacks. (Daniel Naber)
  -
  -24. Optimize fuzzy queries so the standard fuzzy queries with a prefix 
  + 5. Optimize fuzzy queries so the standard fuzzy queries with a prefix 
       of 0 now run 20-50% faster (Patch #31882).
       (Jonathan Hager via Daniel Naber)
  -
  -25. QueryParser now correctly works with Analyzers that can return more 
  -    than one token per position. For example, a query "+fast +car"
  -    would be parsed as "+fast +(car automobile)" if the Analyzer
  -    returns "car" and "automobile" at the same position whenever it 
  -    finds "car" (Patch #23307).
  -    (Pierrick Brihaye, Daniel Naber)
   
   
   1.4.1
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to