Uploaded image for project: 'Lucene - Core'
  1. Lucene - Core
  2. LUCENE-362

[PATCH] Extension to binary Fields that allows fixed byte buffer

Details

    • Bug
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • None
    • None
    • core/index
    • None
    • Operating System: All
      Platform: All

    • 34066

    Description

      This is a very simple patch that supports storing binary values in the index
      more efficiently. A new Field constructor accepts a length argument, allowing a
      fixed byte[] to be reused acrossed multiple calls with arguments of different
      sizes. A companion change to FieldsWriter uses this length when storing and/or
      compressing the field.

      There is one remaining case in Document. Intentionally, no direct accessor to
      the length of a binary field is provided from Document, only from Field. This
      is because Field's created by FieldReader will never have a specified length and
      this is usual case for Field's read from Document. It seems less confusing for
      most users.

      I don't believe any upward incompatibility is introduced here (e.g., from the
      possibility of getting a larger byte[] than actually holds the value from
      Document), since no such byte[] values are possible without this patch anyway.

      The compression case is still inefficient (much copying), but it is hard to see
      how Lucene can do too much better. However, the application can do the
      compression externally and pass in the reused compression-output buffer as a
      binary value (which is what I'm doing). This represents a substantialy
      allocation savings for storing large documents bodies (compressed) into the
      Lucene index.

      Two patch files are attached, both created by svn on 3/17/05.

      Attachments

        1. ASF.LICENSE.NOT.GRANTED--Field-extension.patch
          3 kB
          Chuck Williams
        2. ASF.LICENSE.NOT.GRANTED--Field-extension.patch
          3 kB
          Chuck Williams
        3. ASF.LICENSE.NOT.GRANTED--FieldsWriter-extension.patch
          2 kB
          Chuck Williams
        4. FixedBufferBinaryFields.patch
          10 kB
          Chuck Williams

        Activity

          People

            Unassigned Unassigned
            chuck@manawiz.com Chuck Williams
            Votes:
            1 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: