File Coverage

lib/Apache/Solr/Tables.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             # Copyrights 2012-2025 by [Mark Overmeer].
2             # For other contributors see ChangeLog.
3             # See the manual pages for details on the licensing terms.
4             # Pod stripped from pm file by OODoc 2.03.
5             # This code is part of distribution Apache-Solr. Meta-POD processed with
6             # OODoc into POD and HTML manual-pages. See README.md
7             # Copyright Mark Overmeer. Licensed under the same terms as Perl itself.
8              
9             package Apache::Solr::Tables;{
10             our $VERSION = '1.11';
11             }
12              
13 6     6   396543 use base 'Exporter';
  6         11  
  6         3140  
14              
15             our @EXPORT = qw/%boolparams %introduced %deprecated/;
16              
17             # Boolean parameters update to Solr 9.8 syntax.
18             # %introduced and %deprecated tables probally incomplete.
19              
20             our %boolparams = map +($_ => 1), qw/
21             allTermsRequired
22             boost
23             buildOnCommit
24             buildOnOptimize
25             buildOnStartup
26             canCancel
27             captureAttr
28             clustering
29             clustering.collection
30             clustering.includeOtherTopics
31             clustering.results
32             collectElevatedDocsWhenCollapsing
33             commit
34             debug
35             debug.explain.structured
36             docValues
37             echoHandler
38             elevateOnlyDocsMatchingQuery
39             enableElevation
40             exactMatchFirst
41             exclusive
42             expand
43             expand.nullGroup
44             exactMatchFirst
45             extractOnly
46             facet
47             facet.contains.ignoreCase
48             facet.date.hardend
49             facet.exists
50             facet.missing
51             facet.range.hardend
52             facet.zeros
53             forceElevation
54             group
55             group.facet
56             group.main
57             group.ngroups
58             group.truncate
59             hardend
60             highlight
61             hl
62             hl.defaultSummary
63             hl.fragsizeIsMinimum
64             hl.highlightAlternate
65             hl.highlightMultiTerm
66             hl.mergeContiguous
67             hl.payloads
68             hl.preserveMulti
69             hl.requireFieldMatch
70             hl.useFastVectorHighlighter
71             hl.usePhraseHighlighter
72             hl.weightMatches
73             ignoreStopwords
74             indent
75             literalsOverride
76             lowernames
77             markExcludes
78             matchText
79             mlt
80             mlt.boost
81             mlt.match.include
82             multiThreaded
83             omitHeader
84             overwrite
85             partialResults
86             preserveSep
87             preservePositionIncrements
88             segmentTerminateEarly
89             skipAltTokens
90             solr.alwaysOnTraceId
91             solr.disableRequestId
92             spellcheck
93             spellcheck.build
94             spellcheck.collate
95             spellcheck.collateExtendedResults
96             spellcheck.extendResults
97             spellcheck.onlyMorePopular
98             spellcheck.reload
99             stats
100             suggest
101             suggest.build
102             suggest.buildAll
103             suggest.reload
104             suggest.reloadAll
105             terms
106             terms.lower.incl
107             terms.raw
108             terms.stats
109             terms.ttf
110             terms.upper.incl
111             transpositions
112             tv
113             tv.all
114             tv.df
115             tv.offsets
116             tv.payloads
117             tv.positions
118             tv.tf
119             tv.tf_idf
120             unicodeAware
121             useConfiguredElevatedOrder
122             xmlOffsetAdjust
123             /;
124              
125             our %introduced = qw/
126             carrot.fragSize 3.1
127             carrot.lang 3.6
128             carrot.lexicalResourcesDir 3.2
129             carrot.produceSummary 3.6
130             carrot.resourcesDir 4.5
131             carrot.summarySnippets 3.6
132             debug 4.0
133             debug.explain.structured 3.2
134             exclusive 3.0
135             facet.date 1.3
136             facet.date.include 3.1
137             facet.enum.cache.minDf 1.2
138             facet.method 1.4
139             facet.mincount 1.2
140             facet.offset 1.2
141             facet.pivot 4.0
142             facet.prefix 1.2
143             facet.range 3.1
144             facet.range.end 3.1
145             facet.range.gap 3.6
146             facet.range.hardend 3.1
147             facet.range.include 3.1
148             facet.range.other 3.1
149             facet.range.start 3.1
150             facet.threads 4.5
151             hl.alternateField 1.3
152             hl.boundaryScanner 3.5
153             hl.bs.chars 3.5
154             hl.bs.country 3.5
155             hl.bs.language 3.5
156             hl.bs.type 3.5
157             hl.fragListBuilder 3.1
158             hl.fragmenter 1.3
159             hl.fragmentsBuilder 3.1
160             hl.highlightMultiTerm 1.4
161             hl.maxAlternateFieldLength 1.3
162             hl.maxAnalyzedChars 1.3
163             hl.maxMultiValuedToExamine 4.3
164             hl.maxMultiValuedToMatch 4.3
165             hl.mergeContiguous 1.3
166             hl.preserveMulti 4.1.0
167             hl.q 3.5
168             hl.useFastVectorHighlighter 3.1
169             hl.usePhraseHighlighter 1.3
170             literalsOverride 4.0
171             mlt.fl 1.3
172             pageDoc 4.0
173             pageScore 4.0
174             passwordsFile 4.0
175             qs 1.3
176             resourse.password 4.0
177             shards 3.1
178             shards.qt 3.1
179             spellcheck.accuracy 3.1
180             spellcheck.collate 3.1
181             spellcheck.maxCollations 3.1
182             spellcheck.maxCollationTries 3.1
183             spellcheck.maxResultsForSuggest 4.0
184             stats.facet 1.4
185             stats.field 1.4
186             terms.regex 3.2
187             timeAllowed 1.3
188             tv.all 1.4
189             tv.fl 3.1
190             tv.tf 1.4
191             /;
192              
193             our %deprecated = qw/
194             facet.date 3.1
195             facet.zeros 1.2
196             carrot.lexicalResourcesDir 4.5
197             /;
198