mirror of https://github.com/apache/lucene.git
remove $ tags
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@899914 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2bbd00bd1e
commit
9caaad0fea
|
@ -1,7 +1,5 @@
|
||||||
Lucene Build Instructions
|
Lucene Build Instructions
|
||||||
|
|
||||||
$Id$
|
|
||||||
|
|
||||||
Basic steps:
|
Basic steps:
|
||||||
0) Install JDK 1.5 (or greater), Ant 1.7.0 (or greater)
|
0) Install JDK 1.5 (or greater), Ant 1.7.0 (or greater)
|
||||||
1) Download Lucene from Apache and unpack it
|
1) Download Lucene from Apache and unpack it
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
Lucene Change Log
|
Lucene Change Log
|
||||||
$Id$
|
|
||||||
|
|
||||||
======================= Trunk (not yet released) =======================
|
======================= Trunk (not yet released) =======================
|
||||||
Changes in backwards compatibility policy
|
Changes in backwards compatibility policy
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
Lucene README file
|
Lucene README file
|
||||||
|
|
||||||
$Id$
|
|
||||||
|
|
||||||
INTRODUCTION
|
INTRODUCTION
|
||||||
|
|
||||||
Lucene is a Java full-text search engine. Lucene is not a complete
|
Lucene is a Java full-text search engine. Lucene is not a complete
|
||||||
|
|
|
@ -15,8 +15,6 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id: PatternParser.java 426576 2006-07-28 15:44:37Z jeremias $ */
|
|
||||||
|
|
||||||
package org.apache.lucene.analysis.compound.hyphenation;
|
package org.apache.lucene.analysis.compound.hyphenation;
|
||||||
|
|
||||||
// SAX
|
// SAX
|
||||||
|
|
|
@ -27,7 +27,6 @@ import java.io.IOException;
|
||||||
/**
|
/**
|
||||||
* Merges indices specified on the command line into the index
|
* Merges indices specified on the command line into the index
|
||||||
* specified as the first command line argument.
|
* specified as the first command line argument.
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class IndexMergeTool {
|
public class IndexMergeTool {
|
||||||
public static void main(String[] args) throws IOException {
|
public static void main(String[] args) throws IOException {
|
||||||
|
|
|
@ -37,8 +37,6 @@ import org.apache.lucene.store.RAMDirectory;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tests changing of field norms with a custom similarity and with fake norms.
|
* Tests changing of field norms with a custom similarity and with fake norms.
|
||||||
*
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class TestFieldNormModifier extends TestCase {
|
public class TestFieldNormModifier extends TestCase {
|
||||||
public TestFieldNormModifier(String name) {
|
public TestFieldNormModifier(String name) {
|
||||||
|
|
|
@ -40,8 +40,6 @@ import org.apache.lucene.store.RAMDirectory;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tests changing the norms after changing the simularity
|
* Tests changing the norms after changing the simularity
|
||||||
*
|
|
||||||
* @version $Id:$
|
|
||||||
*/
|
*/
|
||||||
public class TestLengthNormModifier extends TestCase {
|
public class TestLengthNormModifier extends TestCase {
|
||||||
public TestLengthNormModifier(String name) {
|
public TestLengthNormModifier(String name) {
|
||||||
|
|
|
@ -38,8 +38,6 @@ import java.rmi.Remote;
|
||||||
*
|
*
|
||||||
* </p>
|
* </p>
|
||||||
* </p>
|
* </p>
|
||||||
*
|
|
||||||
* @version $Id:$
|
|
||||||
*/
|
*/
|
||||||
public interface RMIRemoteSearchable extends Searchable, Remote {
|
public interface RMIRemoteSearchable extends Searchable, Remote {
|
||||||
|
|
||||||
|
|
|
@ -35,8 +35,6 @@ import org.apache.lucene.index.IndexReader;
|
||||||
* To cache a result you must do something like
|
* To cache a result you must do something like
|
||||||
* RemoteCachingWrapperFilter f = new RemoteCachingWrapperFilter(new CachingWrapperFilter(myFilter));
|
* RemoteCachingWrapperFilter f = new RemoteCachingWrapperFilter(new CachingWrapperFilter(myFilter));
|
||||||
* <p/>
|
* <p/>
|
||||||
*
|
|
||||||
* @version $Id:$
|
|
||||||
*/
|
*/
|
||||||
public class RemoteCachingWrapperFilter extends Filter {
|
public class RemoteCachingWrapperFilter extends Filter {
|
||||||
protected Filter filter;
|
protected Filter filter;
|
||||||
|
|
|
@ -33,8 +33,6 @@ import org.apache.lucene.store.RAMDirectory;
|
||||||
/**
|
/**
|
||||||
* Tests that the index is cached on the searcher side of things.
|
* Tests that the index is cached on the searcher side of things.
|
||||||
* NOTE: This is copied from TestRemoteSearchable since it already had a remote index set up.
|
* NOTE: This is copied from TestRemoteSearchable since it already had a remote index set up.
|
||||||
*
|
|
||||||
* @version $Id:$
|
|
||||||
*/
|
*/
|
||||||
public class TestRemoteCachingWrapperFilter extends LuceneTestCase {
|
public class TestRemoteCachingWrapperFilter extends LuceneTestCase {
|
||||||
public TestRemoteCachingWrapperFilter(String name) {
|
public TestRemoteCachingWrapperFilter(String name) {
|
||||||
|
|
|
@ -44,8 +44,6 @@ import org.apache.lucene.util._TestUtil;
|
||||||
* Unit tests for remote sorting code.
|
* Unit tests for remote sorting code.
|
||||||
* Note: This is a modified copy of {@link TestSort} without duplicated test
|
* Note: This is a modified copy of {@link TestSort} without duplicated test
|
||||||
* methods and therefore unused members and methodes.
|
* methods and therefore unused members and methodes.
|
||||||
*
|
|
||||||
* @version $Id:$
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class TestRemoteSort extends LuceneTestCase implements Serializable {
|
public class TestRemoteSort extends LuceneTestCase implements Serializable {
|
||||||
|
|
|
@ -24,9 +24,6 @@ import java.io.IOException;
|
||||||
* They can be used as {@link java.io.Reader} with additional offset
|
* They can be used as {@link java.io.Reader} with additional offset
|
||||||
* correction. {@link Tokenizer}s will automatically use {@link #correctOffset}
|
* correction. {@link Tokenizer}s will automatically use {@link #correctOffset}
|
||||||
* if a CharFilter/CharStream subclass is used.
|
* if a CharFilter/CharStream subclass is used.
|
||||||
*
|
|
||||||
* @version $Id$
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
public abstract class CharFilter extends CharStream {
|
public abstract class CharFilter extends CharStream {
|
||||||
|
|
||||||
|
|
|
@ -40,7 +40,6 @@ import org.apache.lucene.util.BitVector;
|
||||||
import org.apache.lucene.util.CloseableThreadLocal;
|
import org.apache.lucene.util.CloseableThreadLocal;
|
||||||
import org.apache.lucene.search.FieldCache; // not great (circular); used only to purge FieldCache entry on close
|
import org.apache.lucene.search.FieldCache; // not great (circular); used only to purge FieldCache entry on close
|
||||||
|
|
||||||
/** @version $Id */
|
|
||||||
/**
|
/**
|
||||||
* <p><b>NOTE:</b> This API is new and still experimental
|
* <p><b>NOTE:</b> This API is new and still experimental
|
||||||
* (subject to change suddenly in the next release)</p>
|
* (subject to change suddenly in the next release)</p>
|
||||||
|
|
|
@ -30,7 +30,6 @@ import org.apache.lucene.util.PriorityQueue;
|
||||||
* incompatible ways in the next release.
|
* incompatible ways in the next release.
|
||||||
*
|
*
|
||||||
* @since 2.9
|
* @since 2.9
|
||||||
* @version $Id:
|
|
||||||
* @see Searcher#search(Query,Filter,int,Sort)
|
* @see Searcher#search(Query,Filter,int,Sort)
|
||||||
* @see FieldCache
|
* @see FieldCache
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -31,8 +31,6 @@ import org.apache.lucene.index.IndexReader;
|
||||||
* QueryFilter that matches, e.g., only documents modified within the last
|
* QueryFilter that matches, e.g., only documents modified within the last
|
||||||
* week. The QueryFilter and TermRangeQuery would only need to be reconstructed
|
* week. The QueryFilter and TermRangeQuery would only need to be reconstructed
|
||||||
* once per day.
|
* once per day.
|
||||||
*
|
|
||||||
* @version $Id:$
|
|
||||||
*/
|
*/
|
||||||
public class QueryWrapperFilter extends Filter {
|
public class QueryWrapperFilter extends Filter {
|
||||||
private Query query;
|
private Query query;
|
||||||
|
|
|
@ -34,9 +34,6 @@ import java.util.List;
|
||||||
* <p/>
|
* <p/>
|
||||||
* This filter does not cache. See the {@link org.apache.lucene.search.CachingSpanFilter} for a wrapper that
|
* This filter does not cache. See the {@link org.apache.lucene.search.CachingSpanFilter} for a wrapper that
|
||||||
* caches.
|
* caches.
|
||||||
*
|
|
||||||
*
|
|
||||||
* @version $Id:$
|
|
||||||
*/
|
*/
|
||||||
public class SpanQueryFilter extends SpanFilter {
|
public class SpanQueryFilter extends SpanFilter {
|
||||||
protected SpanQuery query;
|
protected SpanQuery query;
|
||||||
|
|
|
@ -18,8 +18,6 @@
|
||||||
package org.apache.lucene.util; // from org.apache.solr.util rev 555343
|
package org.apache.lucene.util; // from org.apache.solr.util rev 555343
|
||||||
|
|
||||||
/** A variety of high efficiency bit twiddling routines.
|
/** A variety of high efficiency bit twiddling routines.
|
||||||
*
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class BitUtil {
|
public class BitUtil {
|
||||||
|
|
||||||
|
|
|
@ -73,8 +73,6 @@ Test system: AMD Opteron, 64 bit linux, Sun Java 1.5_06 -server -Xbatch -Xmx64M
|
||||||
<th>1% full</th> <td>2.51</td> <td>3.49</td> <td> </td> <td>1.00</td> <td> </td> <td>1.02</td>
|
<th>1% full</th> <td>2.51</td> <td>3.49</td> <td> </td> <td>1.00</td> <td> </td> <td>1.02</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class OpenBitSet extends DocIdSet implements Cloneable, Serializable {
|
public class OpenBitSet extends DocIdSet implements Cloneable, Serializable {
|
||||||
|
|
|
@ -22,8 +22,6 @@ import org.apache.lucene.search.DocIdSetIterator;
|
||||||
/** An iterator to iterate over set bits in an OpenBitSet.
|
/** An iterator to iterate over set bits in an OpenBitSet.
|
||||||
* This is faster than nextSetBit() for iterating over the complete set of bits,
|
* This is faster than nextSetBit() for iterating over the complete set of bits,
|
||||||
* especially when the density of the bits set is high.
|
* especially when the density of the bits set is high.
|
||||||
*
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class OpenBitSetIterator extends DocIdSetIterator {
|
public class OpenBitSetIterator extends DocIdSetIterator {
|
||||||
|
|
||||||
|
|
|
@ -17,8 +17,6 @@ package org.apache.lucene.util;
|
||||||
|
|
||||||
|
|
||||||
/** Floating point numbers smaller than 32 bits.
|
/** Floating point numbers smaller than 32 bits.
|
||||||
*
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class SmallFloat {
|
public class SmallFloat {
|
||||||
|
|
||||||
|
|
|
@ -28,8 +28,6 @@ import org.apache.lucene.store.FSDirectory;
|
||||||
* This tests the patch for issue #LUCENE-715 (IndexWriter does not
|
* This tests the patch for issue #LUCENE-715 (IndexWriter does not
|
||||||
* release its write lock when trying to open an index which does not yet
|
* release its write lock when trying to open an index which does not yet
|
||||||
* exist).
|
* exist).
|
||||||
*
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class TestIndexWriterLockRelease extends LuceneTestCase {
|
public class TestIndexWriterLockRelease extends LuceneTestCase {
|
||||||
|
|
|
@ -30,10 +30,6 @@ import org.apache.lucene.store.Directory;
|
||||||
import org.apache.lucene.store.RAMDirectory;
|
import org.apache.lucene.store.RAMDirectory;
|
||||||
import org.apache.lucene.util.LuceneTestCase;
|
import org.apache.lucene.util.LuceneTestCase;
|
||||||
|
|
||||||
/**
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
|
||||||
|
|
||||||
class RepeatingTokenStream extends TokenStream {
|
class RepeatingTokenStream extends TokenStream {
|
||||||
public int num;
|
public int num;
|
||||||
TermAttribute termAtt;
|
TermAttribute termAtt;
|
||||||
|
|
|
@ -33,10 +33,6 @@ import org.apache.lucene.document.Field;
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
|
||||||
public class TestScorerPerf extends LuceneTestCase {
|
public class TestScorerPerf extends LuceneTestCase {
|
||||||
Random r;
|
Random r;
|
||||||
boolean validate = true; // set to false when doing performance testing
|
boolean validate = true; // set to false when doing performance testing
|
||||||
|
|
|
@ -22,9 +22,6 @@ import java.util.BitSet;
|
||||||
|
|
||||||
import org.apache.lucene.search.DocIdSetIterator;
|
import org.apache.lucene.search.DocIdSetIterator;
|
||||||
|
|
||||||
/**
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
|
||||||
public class TestOpenBitSet extends LuceneTestCase {
|
public class TestOpenBitSet extends LuceneTestCase {
|
||||||
Random rand;
|
Random rand;
|
||||||
|
|
||||||
|
|
|
@ -18,9 +18,6 @@ package org.apache.lucene.util;
|
||||||
|
|
||||||
import java.util.Random;
|
import java.util.Random;
|
||||||
|
|
||||||
/**
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
|
||||||
public class TestSmallFloat extends LuceneTestCase {
|
public class TestSmallFloat extends LuceneTestCase {
|
||||||
|
|
||||||
// original lucene byteToFloat
|
// original lucene byteToFloat
|
||||||
|
|
Loading…
Reference in New Issue