mirror of https://github.com/apache/lucene.git
fix more broken links
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1328982 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
36bc3d70bb
commit
76d521cfc7
|
@ -456,7 +456,7 @@ public class GroupingSearch {
|
|||
* This prevents growing data structures many times. This can improve the performance of the grouping at the cost of
|
||||
* more initial RAM.
|
||||
* <p/>
|
||||
* The {@link #allGroups} and {@link #allGroupHeads} features use this option.
|
||||
* The {@link #setAllGroups} and {@link #setAllGroupHeads} features use this option.
|
||||
* Defaults to 128.
|
||||
*
|
||||
* @param initialSize The initial size of some internal used data structures
|
||||
|
|
|
@ -116,7 +116,10 @@ public class FunctionAllGroupHeadsCollector extends AbstractAllGroupHeadsCollect
|
|||
}
|
||||
}
|
||||
|
||||
class GroupHead extends AbstractAllGroupHeadsCollector.GroupHead<MutableValue> {
|
||||
/** Holds current head document for a single group.
|
||||
*
|
||||
* @lucene.experimental */
|
||||
public class GroupHead extends AbstractAllGroupHeadsCollector.GroupHead<MutableValue> {
|
||||
|
||||
final FieldComparator<?>[] comparators;
|
||||
|
||||
|
|
|
@ -76,7 +76,10 @@ public class FunctionDistinctValuesCollector extends AbstractDistinctValuesColle
|
|||
countMval = countFiller.getValue();
|
||||
}
|
||||
|
||||
static class GroupCount extends AbstractDistinctValuesCollector.GroupCount<MutableValue> {
|
||||
/** Holds distinct values for a single group.
|
||||
*
|
||||
* @lucene.experimental */
|
||||
public static class GroupCount extends AbstractDistinctValuesCollector.GroupCount<MutableValue> {
|
||||
|
||||
GroupCount(MutableValue groupValue) {
|
||||
super(groupValue);
|
||||
|
|
|
@ -124,7 +124,10 @@ public class TermDistinctValuesCollector extends AbstractDistinctValuesCollector
|
|||
}
|
||||
}
|
||||
|
||||
static class GroupCount extends AbstractDistinctValuesCollector.GroupCount<BytesRef> {
|
||||
/** Holds distinct values for a single group.
|
||||
*
|
||||
* @lucene.experimental */
|
||||
public static class GroupCount extends AbstractDistinctValuesCollector.GroupCount<BytesRef> {
|
||||
|
||||
int[] ords;
|
||||
|
||||
|
|
Loading…
Reference in New Issue