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

Add MergePolicy to IndexWriterConfig

Details

    • Improvement
    • Status: Closed
    • Major
    • Resolution: Fixed
    • None
    • 4.0-ALPHA
    • core/index
    • None
    • New, Patch Available

    Description

      Now that IndexWriterConfig is in place, I'd like to move MergePolicy to it as well. The change is not straightforward and so I've kept it for a separate issue. MergePolicy requires in its ctor an IndexWriter, however none can be passed to it before an IndexWriter actually exists. And today IW may create an MP just for it to be overridden by the application one line afterwards. I don't want to make iw member of MP non-final, or settable by extending classes, however it needs to remain protected so they can access it directly. So the proposed changes are:

      • Add a SetOnce object (to o.a.l.util), or Immutable, which can only be set once (hence its name). It'll have the signature SetOnce<T> w/ synchronized set<T> and T get(). T will be declared volatile, so that get() won't be synchronized.
      • MP will define a protected final SetOnce<IndexWriter> writer instead of the current writer. NOTE: this is a bw break. any suggestions are welcomed.
      • MP will offer a public default ctor, together with a set(IndexWriter).
      • IndexWriter will set itself on MP using set(this). Note that if set will be called more than once, it will throw an exception (AlreadySetException - or does someone have a better suggestion, preferably an already existing Java exception?).

      That's the core idea. I'd like to post a patch soon, so I'd appreciate your review and proposals.

      Attachments

        1. LUCENE-2320.patch
          130 kB
          Shai Erera
        2. LUCENE-2320.patch
          126 kB
          Shai Erera
        3. LUCENE-2320.patch
          127 kB
          Shai Erera
        4. LUCENE-2320.patch
          125 kB
          Shai Erera
        5. LUCENE-2320.patch
          109 kB
          Shai Erera

        Activity

          People

            mikemccand Michael McCandless
            shaie Shai Erera
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: