exhibits_solr_conf 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +12 -0
- data/.hound.yml +2 -0
- data/.rspec +1 -0
- data/.rubocop.yml +8 -0
- data/.rubocop_todo.yml +24 -0
- data/.travis.yml +11 -0
- data/Gemfile +4 -0
- data/LICENSE +13 -0
- data/README.md +78 -0
- data/Rakefile +17 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/exhibits_solr_conf.gemspec +29 -0
- data/lib/exhibits_solr_conf/tasks/configure_solr.rake +11 -0
- data/lib/exhibits_solr_conf/version.rb +3 -0
- data/lib/exhibits_solr_conf.rb +6 -0
- data/solr_conf_4_testing/_rest_managed.json +3 -0
- data/solr_conf_4_testing/schema.xml +529 -0
- data/solr_conf_4_testing/solrconfig.xml +881 -0
- data/solr_conf_4_testing/stopwords_punctuation.txt +22 -0
- data/solr_conf_4_testing/synonyms.txt +73 -0
- data/solr_conf_4_testing/synonyms_both_anchors.txt +47 -0
- data/solr_conf_4_testing/synonyms_left_anchor.txt +45 -0
- data/solr_conf_4_testing/synonyms_right_anchor.txt +47 -0
- metadata +168 -0
@@ -0,0 +1,881 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" ?>
|
2
|
+
<config>
|
3
|
+
<!-- NOTE: these 2 lib dirs are here for testing only and do NOT go in the prod file -->
|
4
|
+
<lib dir="../lib/contrib/analysis-extras/lib" />
|
5
|
+
<lib dir="../lib/contrib/analysis-extras/lucene-libs" />
|
6
|
+
|
7
|
+
<!-- NOTE: various comments and unused configuration possibilities have been purged
|
8
|
+
from this file. Please refer to http://wiki.apache.org/solr/SolrConfigXml,
|
9
|
+
as well as the default solrconfig file included with Solr -->
|
10
|
+
|
11
|
+
<abortOnConfigurationError>${solr.abortOnConfigurationError:true}</abortOnConfigurationError>
|
12
|
+
|
13
|
+
<luceneMatchVersion>LUCENE_4_10_4</luceneMatchVersion>
|
14
|
+
|
15
|
+
<directoryFactory name="DirectoryFactory" class="${solr.directoryFactory:solr.StandardDirectoryFactory}"/>
|
16
|
+
|
17
|
+
<updateHandler class="solr.DirectUpdateHandler2">
|
18
|
+
<updateLog>
|
19
|
+
<str name="dir">${solr.core0.data.dir:}</str>
|
20
|
+
</updateLog>
|
21
|
+
</updateHandler>
|
22
|
+
|
23
|
+
<jmx />
|
24
|
+
|
25
|
+
|
26
|
+
<dataDir>${solr.data.dir:}</dataDir>
|
27
|
+
|
28
|
+
<!-- for most searches, including Blacklight's pulldown menu for the single search box
|
29
|
+
Pulldown usage:
|
30
|
+
q=terms anywhere
|
31
|
+
q={!qf=$qf_title pf=$pf_title pf3=$pf3_title pf2=$pf2_title}a book title
|
32
|
+
q={!qf=$qf_author pf=$pf_author pf3=$pf3_author pf2=$pf2_author}author name
|
33
|
+
q=yer_callnum&df=callnum_search&defType=lucene&q.op=AND
|
34
|
+
Advanced search requests use:
|
35
|
+
defType=lucene&q=_query_:"{!dismax qf=$qf_a pf=$pf_a pf3=$pf3_a pf2=$pf2_a}qa" [AND|OR] _query_:"{!dismax qf=$qf_b pf=$pf_b pf3=$pf3_b pf2=$pf2_b}qb" -->
|
36
|
+
<requestHandler name="search" class="solr.SearchHandler" default="true">
|
37
|
+
<lst name="defaults">
|
38
|
+
<str name="defType">edismax</str>
|
39
|
+
<str name="echoParams">explicit</str>
|
40
|
+
<str name="sort">score desc, pub_date_sort desc, title_sort asc</str>
|
41
|
+
<int name="rows">20</int>
|
42
|
+
<str name="q.alt">*:*</str>
|
43
|
+
<str name="mm">6<-1 6<90%</str>
|
44
|
+
<int name="qs">1</int>
|
45
|
+
<int name="ps">0</int>
|
46
|
+
<float name="tie">0.01</float>
|
47
|
+
<bool name="lowercaseOperators">false</bool>
|
48
|
+
<!-- in case lucene query parser -->
|
49
|
+
<str name="df">all_search</str>
|
50
|
+
<str name="q.op">AND</str>
|
51
|
+
|
52
|
+
<str name="qf">
|
53
|
+
title_245a_exact_search^1000
|
54
|
+
title_245a_unstem_search^500
|
55
|
+
title_245a_search^75 vern_title_245a_search^75
|
56
|
+
title_245_unstem_search^75
|
57
|
+
title_245_search^50 vern_title_245_search^50
|
58
|
+
title_uniform_unstem_search^50
|
59
|
+
title_uniform_search^20 vern_title_uniform_search^20
|
60
|
+
title_variant_unstem_search^20
|
61
|
+
title_variant_search^15 vern_title_variant_search^15
|
62
|
+
title_related_unstem_search^15
|
63
|
+
title_related_search^10 vern_title_related_search^10
|
64
|
+
series_exact_search^10
|
65
|
+
series_unstem_search^5
|
66
|
+
series_search^2 vern_series_search^2
|
67
|
+
|
68
|
+
author_1xx_unstem_search^25
|
69
|
+
author_1xx_search^20 vern_author_1xx_search^20
|
70
|
+
author_7xx_unstem_search^20
|
71
|
+
author_7xx_search^10 vern_author_7xx_search^10
|
72
|
+
author_8xx_unstem_search^10
|
73
|
+
author_8xx_search^5 vern_author_8xx_search^5
|
74
|
+
|
75
|
+
topic_unstem_search^50
|
76
|
+
topic_search^20 vern_topic_search^20
|
77
|
+
geographic_unstem_search^20
|
78
|
+
geographic_search^10 vern_geographic_search^10
|
79
|
+
subject_other_unstem_search^10
|
80
|
+
subject_other_search^5 vern_subject_other_search^5
|
81
|
+
db_az_subject_search^5
|
82
|
+
topic_subx_unstem_search^5
|
83
|
+
topic_subx_search^2 vern_topic_subx_search^2
|
84
|
+
geographic_subz_unstem_search^5
|
85
|
+
geographic_subz_search^2 vern_geographic_subz_search^2
|
86
|
+
subject_other_subvy_unstem_search^5
|
87
|
+
subject_other_subvy_search^2 vern_subject_other_subvy_search^2
|
88
|
+
subject_all_unstem_search^5
|
89
|
+
subject_all_search^2 vern_subject_all_search^2
|
90
|
+
|
91
|
+
toc_unstem_search^5
|
92
|
+
toc_search^2 vern_toc_search^2
|
93
|
+
context_unstem_search^5
|
94
|
+
context_search^2 vern_context_search^2
|
95
|
+
summary_unstem_search^5
|
96
|
+
summary_search^2 vern_summary_search^2
|
97
|
+
|
98
|
+
pub_date_search^2
|
99
|
+
isbn_search^1.5
|
100
|
+
issn_search^1.5
|
101
|
+
id
|
102
|
+
druid
|
103
|
+
oclc
|
104
|
+
barcode_search
|
105
|
+
physical vern_physical
|
106
|
+
award_search
|
107
|
+
collection_search
|
108
|
+
all_unstem_search^5
|
109
|
+
all_search vern_all_search
|
110
|
+
</str>
|
111
|
+
<str name="pf"> <!-- (phrase boost within result set) -->
|
112
|
+
title_245a_exact_search^5000
|
113
|
+
title_245a_unstem_search^2500
|
114
|
+
title_245a_search^375 vern_title_245a_search^375
|
115
|
+
title_245_unstem_search^375
|
116
|
+
title_245_search^250 vern_title_245_search^250
|
117
|
+
title_uniform_unstem_search^250
|
118
|
+
title_uniform_search^100 vern_title_uniform_search^100
|
119
|
+
title_variant_unstem_search^100
|
120
|
+
title_variant_search^75 vern_title_variant_search^75
|
121
|
+
title_related_unstem_search^75
|
122
|
+
title_related_search^50 vern_title_related_search^50
|
123
|
+
series_exact_search^50
|
124
|
+
series_unstem_search^25
|
125
|
+
series_search^10 vern_series_search^10
|
126
|
+
|
127
|
+
author_1xx_unstem_search^125
|
128
|
+
author_1xx_search^100 vern_author_1xx_search^100
|
129
|
+
author_7xx_unstem_search^100
|
130
|
+
author_7xx_search^50 vern_author_7xx_search^50
|
131
|
+
author_8xx_unstem_search^50
|
132
|
+
author_8xx_search^25 vern_author_8xx_search^25
|
133
|
+
|
134
|
+
topic_unstem_search^250
|
135
|
+
topic_search^100 vern_topic_search^100
|
136
|
+
geographic_unstem_search^100
|
137
|
+
geographic_search^50 vern_geographic_search^50
|
138
|
+
subject_other_unstem_search^50
|
139
|
+
subject_other_search^25 vern_subject_other_search^25
|
140
|
+
db_az_subject_search^25
|
141
|
+
topic_subx_unstem_search^25
|
142
|
+
topic_subx_search^10 vern_topic_subx_search^10
|
143
|
+
geographic_subz_unstem_search^25
|
144
|
+
geographic_subz_search^10 vern_geographic_subz_search^10
|
145
|
+
subject_other_subvy_unstem_search^25
|
146
|
+
subject_other_subvy_search^10 vern_subject_other_subvy_search^10
|
147
|
+
subject_all_unstem_search^25
|
148
|
+
subject_all_search^10 vern_subject_all_search^10
|
149
|
+
|
150
|
+
toc_unstem_search^25
|
151
|
+
toc_search^10 vern_toc_search^10
|
152
|
+
context_unstem_search^25
|
153
|
+
context_search^10 vern_context_search^10
|
154
|
+
summary_unstem_search^25
|
155
|
+
summary_search^10 vern_summary_search^10
|
156
|
+
|
157
|
+
pub_date_search^10
|
158
|
+
issn_search^7.5
|
159
|
+
physical^5 vern_physical^5
|
160
|
+
award_search^5
|
161
|
+
collection_search^5
|
162
|
+
all_unstem_search^25
|
163
|
+
all_search^5 vern_all_search^5
|
164
|
+
</str>
|
165
|
+
<str name="pf3"> <!-- (token trigrams boost within result set) -->
|
166
|
+
title_245a_search^1500 vern_title_245a_search^1500
|
167
|
+
title_245_search^225 vern_title_245_search^225
|
168
|
+
title_uniform_search^150 vern_title_uniform_search^150
|
169
|
+
title_variant_search^60 vern_title_variant_search^60
|
170
|
+
title_related_search^45 vern_title_related_search^45
|
171
|
+
series_search^30 vern_series_search^30
|
172
|
+
|
173
|
+
author_1xx_search^75 vern_author_1xx_search^75
|
174
|
+
author_7xx_search^60 vern_author_7xx_search^60
|
175
|
+
author_8xx_search^30 vern_author_8xx_search^30
|
176
|
+
|
177
|
+
topic_search^150 vern_topic_search^150
|
178
|
+
geographic_search^60 vern_geographic_search^60
|
179
|
+
subject_other_search^30 vern_subject_other_search^30
|
180
|
+
db_az_subject_search^15
|
181
|
+
topic_subx_search^15 vern_topic_subx_search^15
|
182
|
+
geographic_subz_search^15 vern_geographic_subz_search^15
|
183
|
+
subject_other_subvy_search^15 vern_subject_other_subvy_search^15
|
184
|
+
subject_all_search^15 vern_subject_all_search^15
|
185
|
+
|
186
|
+
toc_search^7.5 vern_toc_search^7.5
|
187
|
+
context_search^7.5 vern_context_search^7.5
|
188
|
+
summary_search^7.5 vern_summary_search^7.5
|
189
|
+
physical^3 vern_physical^3
|
190
|
+
award_search^3
|
191
|
+
collection_search^3
|
192
|
+
all_search^3 vern_all_search^3
|
193
|
+
</str>
|
194
|
+
<str name="pf2"> <!--(token bigrams boost within result set) -->
|
195
|
+
title_245a_search^1000 vern_title_245a_search^1000
|
196
|
+
title_245_search^150 vern_title_245_search^150
|
197
|
+
title_uniform_search^100 vern_title_uniform_search^100
|
198
|
+
title_variant_search^40 vern_title_variant_search^40
|
199
|
+
title_related_search^30 vern_title_related_search^30
|
200
|
+
series_search^20 vern_series_search^20
|
201
|
+
|
202
|
+
author_1xx_search^50 vern_author_1xx_search^50
|
203
|
+
author_7xx_search^40 vern_author_7xx_search^40
|
204
|
+
author_8xx_search^20 vern_author_8xx_search^20
|
205
|
+
|
206
|
+
topic_search^100 vern_topic_search^100
|
207
|
+
geographic_search^40 vern_geographic_search^40
|
208
|
+
subject_other_search^20 vern_subject_other_search^20
|
209
|
+
db_az_subject_search^10
|
210
|
+
topic_subx_search^10 vern_topic_subx_search^10
|
211
|
+
geographic_subz_search^10 vern_geographic_subz_search^10
|
212
|
+
subject_other_subvy_search^10 vern_subject_other_subvy_search^10
|
213
|
+
subject_all_search^10 vern_subject_all_search^10
|
214
|
+
|
215
|
+
toc_search^5 vern_toc_search^5
|
216
|
+
context_search^5 vern_context_search^5
|
217
|
+
summary_search^5 vern_summary_search^5
|
218
|
+
physical^2 vern_physical^2
|
219
|
+
award_search^2
|
220
|
+
collection_search^2
|
221
|
+
all_search^2 vern_all_search^2
|
222
|
+
</str>
|
223
|
+
|
224
|
+
<str name="qf_cjk">
|
225
|
+
title_245a_exact_search^1000
|
226
|
+
title_245a_unstem_search^500
|
227
|
+
title_245a_search^75 vern_title_245a_search^75 cjk_title_245a_search^75
|
228
|
+
title_245_unstem_search^75
|
229
|
+
title_245_search^50 vern_title_245_search^50 cjk_title_245_search^50
|
230
|
+
title_uniform_unstem_search^50
|
231
|
+
title_uniform_search^20 vern_title_uniform_search^20 cjk_title_uniform_search^20
|
232
|
+
title_variant_unstem_search^20
|
233
|
+
title_variant_search^15 vern_title_variant_search^15 cjk_title_variant_search^15
|
234
|
+
title_related_unstem_search^15
|
235
|
+
title_related_search^10 vern_title_related_search^10 cjk_title_related_search^10
|
236
|
+
series_exact_search^10
|
237
|
+
series_unstem_search^5
|
238
|
+
series_search^2 vern_series_search^2 cjk_series_search^2
|
239
|
+
|
240
|
+
author_1xx_unstem_search^25
|
241
|
+
author_1xx_search^20 vern_author_1xx_search^20 cjk_author_1xx_search^20
|
242
|
+
author_7xx_unstem_search^20
|
243
|
+
author_7xx_search^10 vern_author_7xx_search^10 cjk_author_7xx_search^10
|
244
|
+
author_8xx_unstem_search^10
|
245
|
+
author_8xx_search^5 vern_author_8xx_search^5 cjk_author_8xx_search^5
|
246
|
+
|
247
|
+
topic_unstem_search^50
|
248
|
+
topic_search^20 vern_topic_search^20 cjk_topic_search^20
|
249
|
+
geographic_unstem_search^20
|
250
|
+
geographic_search^10 vern_geographic_search^10 cjk_geographic_search^10
|
251
|
+
subject_other_unstem_search^10
|
252
|
+
subject_other_search^5 vern_subject_other_search^5 cjk_subject_other_search^5
|
253
|
+
db_az_subject_search^5
|
254
|
+
topic_subx_unstem_search^5
|
255
|
+
topic_subx_search^2 vern_topic_subx_search^2 cjk_topic_subx_search^2
|
256
|
+
geographic_subz_unstem_search^5
|
257
|
+
geographic_subz_search^2 vern_geographic_subz_search^2 cjk_geographic_subz_search^2
|
258
|
+
subject_other_subvy_unstem_search^5
|
259
|
+
subject_other_subvy_search^2 vern_subject_other_subvy_search^2 cjk_subject_other_subvy_search^2
|
260
|
+
subject_all_unstem_search^5
|
261
|
+
subject_all_search^2 vern_subject_all_search^2 cjk_subject_all_search^2
|
262
|
+
|
263
|
+
toc_unstem_search^5
|
264
|
+
toc_search^2 vern_toc_search^2 cjk_toc_search^2
|
265
|
+
context_unstem_search^5
|
266
|
+
context_search^2 vern_context_search^2 cjk_context_search^2
|
267
|
+
summary_unstem_search^5
|
268
|
+
summary_search^2 vern_summary_search^2 cjk_summary_search^2
|
269
|
+
|
270
|
+
pub_date_search^2
|
271
|
+
isbn_search^1.5
|
272
|
+
issn_search^1.5
|
273
|
+
id
|
274
|
+
oclc
|
275
|
+
barcode_search
|
276
|
+
physical vern_physical cjk_physical_search
|
277
|
+
award_search
|
278
|
+
collection_search
|
279
|
+
all_unstem_search^5
|
280
|
+
all_search vern_all_search cjk_all_search
|
281
|
+
</str>
|
282
|
+
<str name="pf_cjk"> <!-- (phrase boost within result set) -->
|
283
|
+
title_245a_exact_search^5000
|
284
|
+
title_245a_unstem_search^2500
|
285
|
+
title_245a_search^375 vern_title_245a_search^375 cjk_title_245a_search^375
|
286
|
+
title_245_unstem_search^375
|
287
|
+
title_245_search^250 vern_title_245_search^250 cjk_title_245_search^250
|
288
|
+
title_uniform_unstem_search^250
|
289
|
+
title_uniform_search^100 vern_title_uniform_search^100 cjk_title_uniform_search^100
|
290
|
+
title_variant_unstem_search^100
|
291
|
+
title_variant_search^75 vern_title_variant_search^75 cjk_title_variant_search^75
|
292
|
+
title_related_unstem_search^75
|
293
|
+
title_related_search^50 vern_title_related_search^50 cjk_title_related_search^50
|
294
|
+
series_exact_search^50
|
295
|
+
series_unstem_search^25
|
296
|
+
series_search^10 vern_series_search^10 cjk_series_search^10
|
297
|
+
|
298
|
+
author_1xx_unstem_search^125
|
299
|
+
author_1xx_search^100 vern_author_1xx_search^100 cjk_author_1xx_search^100
|
300
|
+
author_7xx_unstem_search^100
|
301
|
+
author_7xx_search^50 vern_author_7xx_search^50 cjk_author_7xx_search^50
|
302
|
+
author_8xx_unstem_search^50
|
303
|
+
author_8xx_search^25 vern_author_8xx_search^25 cjk_author_8xx_search^25
|
304
|
+
|
305
|
+
topic_unstem_search^250
|
306
|
+
topic_search^100 vern_topic_search^100 cjk_topic_search^100
|
307
|
+
geographic_unstem_search^100
|
308
|
+
geographic_search^50 vern_geographic_search^50 cjk_geographic_search^50
|
309
|
+
subject_other_unstem_search^50
|
310
|
+
subject_other_search^25 vern_subject_other_search^25 cjk_subject_other_search^25
|
311
|
+
db_az_subject_search^25
|
312
|
+
topic_subx_unstem_search^25
|
313
|
+
topic_subx_search^10 vern_topic_subx_search^10 cjk_topic_subx_search^10
|
314
|
+
geographic_subz_unstem_search^25
|
315
|
+
geographic_subz_search^10 vern_geographic_subz_search^10 cjk_geographic_subz_search^10
|
316
|
+
subject_other_subvy_unstem_search^25
|
317
|
+
subject_other_subvy_search^10 vern_subject_other_subvy_search^10 cjk_subject_other_subvy_search^10
|
318
|
+
subject_all_unstem_search^25
|
319
|
+
subject_all_search^10 vern_subject_all_search^10 cjk_subject_all_search^10
|
320
|
+
|
321
|
+
toc_unstem_search^25
|
322
|
+
toc_search^10 vern_toc_search^10 cjk_toc_search^10
|
323
|
+
context_unstem_search^25
|
324
|
+
context_search^10 vern_context_search^10 cjk_context_search^10
|
325
|
+
summary_unstem_search^25
|
326
|
+
summary_search^10 vern_summary_search^10 cjk_summary_search^10
|
327
|
+
|
328
|
+
pub_date_search^10
|
329
|
+
issn_search^7.5
|
330
|
+
physical^5 vern_physical^5 cjk_physical_search^5
|
331
|
+
award_search^5
|
332
|
+
collection_search^5
|
333
|
+
all_unstem_search^25
|
334
|
+
all_search^5 vern_all_search^5 cjk_all_search^5
|
335
|
+
</str>
|
336
|
+
<str name="pf3_cjk"> <!-- (token trigrams boost within result set) -->
|
337
|
+
title_245a_search^1500 vern_title_245a_search^1500 cjk_title_245a_search^1500
|
338
|
+
title_245_search^225 vern_title_245_search^225 cjk_title_245_search^225
|
339
|
+
title_uniform_search^150 vern_title_uniform_search^150 cjk_title_uniform_search^150
|
340
|
+
title_variant_search^60 vern_title_variant_search^60 cjk_title_variant_search^60
|
341
|
+
title_related_search^45 vern_title_related_search^45 cjk_title_related_search^45
|
342
|
+
series_search^30 vern_series_search^30 cjk_series_search^30
|
343
|
+
|
344
|
+
author_1xx_search^75 vern_author_1xx_search^75 cjk_author_1xx_search^75
|
345
|
+
author_7xx_search^60 vern_author_7xx_search^60 cjk_author_7xx_search^60
|
346
|
+
author_8xx_search^30 vern_author_8xx_search^30 cjk_author_8xx_search^30
|
347
|
+
|
348
|
+
topic_search^150 vern_topic_search^150 cjk_topic_search^150
|
349
|
+
geographic_search^60 vern_geographic_search^60 cjk_geographic_search^60
|
350
|
+
subject_other_search^30 vern_subject_other_search^30 cjk_subject_other_search^30
|
351
|
+
db_az_subject_search^15
|
352
|
+
topic_subx_search^15 vern_topic_subx_search^15 cjk_topic_subx_search^15
|
353
|
+
geographic_subz_search^15 vern_geographic_subz_search^15 cjk_geographic_subz_search^15
|
354
|
+
subject_other_subvy_search^15 vern_subject_other_subvy_search^15 cjk_subject_other_subvy_search^15
|
355
|
+
subject_all_search^15 vern_subject_all_search^15 cjk_subject_all_search^15
|
356
|
+
|
357
|
+
toc_search^7.5 vern_toc_search^7.5 cjk_toc_search^7.5
|
358
|
+
context_search^7.5 vern_context_search^7.5 cjk_context_search^7.5
|
359
|
+
summary_search^7.5 vern_summary_search^7.5 cjk_summary_search^7.5
|
360
|
+
physical^3 vern_physical^3 cjk_physical_search^3
|
361
|
+
award_search^3
|
362
|
+
collection_search^3
|
363
|
+
all_search^3 vern_all_search^3 cjk_all_search^3
|
364
|
+
</str>
|
365
|
+
<str name="pf2_cjk"> <!--(token bigrams boost within result set) -->
|
366
|
+
title_245a_search^1000 vern_title_245a_search^1000 cjk_title_245a_search^1000
|
367
|
+
title_245_search^150 vern_title_245_search^150 cjk_title_245_search^150
|
368
|
+
title_uniform_search^100 vern_title_uniform_search^100 cjk_title_uniform_search^100
|
369
|
+
title_variant_search^40 vern_title_variant_search^40 cjk_title_variant_search^40
|
370
|
+
title_related_search^30 vern_title_related_search^30 cjk_title_related_search^30
|
371
|
+
series_search^20 vern_series_search^20 cjk_series_search^20
|
372
|
+
|
373
|
+
author_1xx_search^50 vern_author_1xx_search^50 cjk_author_1xx_search^50
|
374
|
+
author_7xx_search^40 vern_author_7xx_search^40 cjk_author_7xx_search^40
|
375
|
+
author_8xx_search^20 vern_author_8xx_search^20 cjk_author_8xx_search^20
|
376
|
+
|
377
|
+
topic_search^100 vern_topic_search^100 cjk_topic_search^100
|
378
|
+
geographic_search^40 vern_geographic_search^40 cjk_geographic_search^40
|
379
|
+
subject_other_search^20 vern_subject_other_search^20 cjk_subject_other_search^20
|
380
|
+
db_az_subject_search^10
|
381
|
+
topic_subx_search^10 vern_topic_subx_search^10 cjk_topic_subx_search^10
|
382
|
+
geographic_subz_search^10 vern_geographic_subz_search^10 cjk_geographic_subz_search^10
|
383
|
+
subject_other_subvy_search^10 vern_subject_other_subvy_search^10 cjk_subject_other_subvy_search^10
|
384
|
+
subject_all_search^10 vern_subject_all_search^10 cjk_subject_all_search^10
|
385
|
+
|
386
|
+
toc_search^5 vern_toc_search^5 cjk_toc_search^5
|
387
|
+
context_search^5 vern_context_search^5 cjk_context_search^5
|
388
|
+
summary_search^5 vern_summary_search^5 cjk_summary_search^5
|
389
|
+
physical^2 vern_physical^2 cjk_physical_search^2
|
390
|
+
award_search^2
|
391
|
+
collection_search^2
|
392
|
+
all_search^2 vern_all_search^2 cjk_all_search^2
|
393
|
+
</str>
|
394
|
+
|
395
|
+
|
396
|
+
<str name="qf_title">
|
397
|
+
title_245a_exact_search^350
|
398
|
+
title_245a_unstem_search^100
|
399
|
+
title_245a_search^75 vern_title_245a_search^75
|
400
|
+
title_245_unstem_search^75
|
401
|
+
title_245_search^50 vern_title_245_search^50
|
402
|
+
title_uniform_unstem_search^50
|
403
|
+
title_uniform_search^20 vern_title_uniform_search^20
|
404
|
+
title_variant_unstem_search^20
|
405
|
+
title_variant_search^10 vern_title_variant_search^10
|
406
|
+
title_related_unstem_search^10
|
407
|
+
title_related_search^5 vern_title_related_search^5
|
408
|
+
series_exact_search^5
|
409
|
+
series_unstem_search^2
|
410
|
+
series_search vern_series_search
|
411
|
+
</str>
|
412
|
+
<str name="pf_title"> <!-- (phrase) -->
|
413
|
+
title_245a_exact_search^1750
|
414
|
+
title_245a_unstem_search^500
|
415
|
+
title_245a_search^375 vern_title_245a_search^375
|
416
|
+
title_245_unstem_search^375
|
417
|
+
title_245_search^250 vern_title_245_search^250
|
418
|
+
title_uniform_unstem_search^250
|
419
|
+
title_uniform_search^100 vern_title_uniform_search^100
|
420
|
+
title_variant_unstem_search^100
|
421
|
+
title_variant_search^50 vern_title_variant_search^50
|
422
|
+
title_related_unstem_search^50
|
423
|
+
title_related_search^25 vern_title_related_search^25
|
424
|
+
series_exact_search^25
|
425
|
+
series_unstem_search^10
|
426
|
+
series_search^5 vern_series_search^5
|
427
|
+
</str>
|
428
|
+
<str name="pf3_title"> <!-- (token trigrams) -->
|
429
|
+
title_245a_search^300 vern_title_245a_search^300
|
430
|
+
title_245_search^225 vern_title_245_search^225
|
431
|
+
title_uniform_search^150 vern_title_uniform_search^150
|
432
|
+
title_variant_search^60 vern_title_variant_search^60
|
433
|
+
title_related_search^15 vern_title_related_search^15
|
434
|
+
series_search^3 vern_series_search^3
|
435
|
+
</str>
|
436
|
+
<str name="pf2_title"> <!-- (token bigrams) -->
|
437
|
+
title_245a_search^200 vern_title_245a_search^200
|
438
|
+
title_245_search^150 vern_title_245_search^150
|
439
|
+
title_uniform_search^100 vern_title_uniform_search^100
|
440
|
+
title_variant_search^40 vern_title_variant_search^40
|
441
|
+
title_related_search^10 vern_title_related_search^10
|
442
|
+
series_search^2 vern_series_search^2
|
443
|
+
</str>
|
444
|
+
|
445
|
+
<str name="qf_title_cjk">
|
446
|
+
title_245a_exact_search^350
|
447
|
+
title_245a_unstem_search^100
|
448
|
+
title_245a_search^75 vern_title_245a_search^75 cjk_title_245a_search^75
|
449
|
+
title_245_unstem_search^75
|
450
|
+
title_245_search^50 vern_title_245_search^50 cjk_title_245_search^50
|
451
|
+
title_uniform_unstem_search^50
|
452
|
+
title_uniform_search^20 vern_title_uniform_search^20 cjk_title_uniform_search^20
|
453
|
+
title_variant_unstem_search^20
|
454
|
+
title_variant_search^10 vern_title_variant_search^10 cjk_title_variant_search^10
|
455
|
+
title_related_unstem_search^10
|
456
|
+
title_related_search^5 vern_title_related_search^5 cjk_title_related_search^5
|
457
|
+
series_exact_search^5
|
458
|
+
series_unstem_search^2
|
459
|
+
series_search vern_series_search cjk_series_search
|
460
|
+
</str>
|
461
|
+
<str name="pf_title_cjk"> <!-- (phrase) -->
|
462
|
+
title_245a_exact_search^1750
|
463
|
+
title_245a_unstem_search^500
|
464
|
+
title_245a_search^375 vern_title_245a_search^375 cjk_title_245a_search^375
|
465
|
+
title_245_unstem_search^375
|
466
|
+
title_245_search^250 vern_title_245_search^250 cjk_title_245_search^250
|
467
|
+
title_uniform_unstem_search^250
|
468
|
+
title_uniform_search^100 vern_title_uniform_search^100 cjk_title_uniform_search^100
|
469
|
+
title_variant_unstem_search^100
|
470
|
+
title_variant_search^50 vern_title_variant_search^50 cjk_title_variant_search^50
|
471
|
+
title_related_unstem_search^50
|
472
|
+
title_related_search^25 vern_title_related_search^25 cjk_title_related_search^25
|
473
|
+
series_exact_search^25
|
474
|
+
series_unstem_search^10
|
475
|
+
series_search^5 vern_series_search^5 cjk_series_search^5
|
476
|
+
</str>
|
477
|
+
<str name="pf3_title_cjk"> <!-- (token trigrams) -->
|
478
|
+
title_245a_search^300 vern_title_245a_search^300 cjk_title_245a_search^300
|
479
|
+
title_245_search^225 vern_title_245_search^225 cjk_title_245_search^225
|
480
|
+
title_uniform_search^150 vern_title_uniform_search^150 cjk_title_uniform_search^150
|
481
|
+
title_variant_search^60 vern_title_variant_search^60 cjk_title_variant_search^60
|
482
|
+
title_related_search^15 vern_title_related_search^15 cjk_title_related_search^15
|
483
|
+
series_search^3 vern_series_search^3 cjk_series_search^3
|
484
|
+
</str>
|
485
|
+
<str name="pf2_title_cjk"> <!-- (token bigrams) -->
|
486
|
+
title_245a_search^200 vern_title_245a_search^200 cjk_title_245a_search^200
|
487
|
+
title_245_search^150 vern_title_245_search^150 cjk_title_245_search^150
|
488
|
+
title_uniform_search^100 vern_title_uniform_search^100 cjk_title_uniform_search^100
|
489
|
+
title_variant_search^40 vern_title_variant_search^40 cjk_title_variant_search^40
|
490
|
+
title_related_search^10 vern_title_related_search^10 cjk_title_related_search^10
|
491
|
+
series_search^2 vern_series_search^2 cjk_series_search^2
|
492
|
+
</str>
|
493
|
+
|
494
|
+
|
495
|
+
<str name="qf_author">
|
496
|
+
author_1xx_unstem_search^20
|
497
|
+
author_1xx_search^5 vern_author_1xx_search^5
|
498
|
+
author_7xx_unstem_search^10
|
499
|
+
author_7xx_search^2 vern_author_7xx_search^2
|
500
|
+
author_8xx_unstem_search^2
|
501
|
+
author_8xx_search vern_author_8xx_search
|
502
|
+
</str>
|
503
|
+
<str name="pf_author"> <!-- (phrase) -->
|
504
|
+
author_1xx_search^100 vern_author_1xx_search^100
|
505
|
+
author_7xx_search^50 vern_author_7xx_search^50
|
506
|
+
author_8xx_search^10 vern_author_8xx_search^10
|
507
|
+
</str>
|
508
|
+
<str name="pf3_author"> <!-- (token trigrams) -->
|
509
|
+
author_1xx_search^60 vern_author_1xx_search^60
|
510
|
+
author_7xx_search^30 vern_author_7xx_search^30
|
511
|
+
author_8xx_search^5 vern_author_8xx_search^5
|
512
|
+
</str>
|
513
|
+
<str name="pf2_author"> <!-- (token bigrams) -->
|
514
|
+
author_1xx_search^40 vern_author_1xx_search^40
|
515
|
+
author_7xx_search^20 vern_author_7xx_search^20
|
516
|
+
author_8xx_search^2 vern_author_8xx_search^2
|
517
|
+
</str>
|
518
|
+
|
519
|
+
<str name="qf_author_cjk">
|
520
|
+
author_1xx_unstem_search^20
|
521
|
+
author_1xx_search^5 vern_author_1xx_search^5 cjk_author_1xx_search^5
|
522
|
+
author_7xx_unstem_search^10
|
523
|
+
author_7xx_search^2 vern_author_7xx_search^2 cjk_author_7xx_search^2
|
524
|
+
author_8xx_unstem_search^2
|
525
|
+
author_8xx_search vern_author_8xx_search cjk_author_8xx_search
|
526
|
+
</str>
|
527
|
+
<str name="pf_author_cjk"> <!-- (phrase) -->
|
528
|
+
author_1xx_search^100 vern_author_1xx_search^100 cjk_author_1xx_search^100
|
529
|
+
author_7xx_search^50 vern_author_7xx_search^50 cjk_author_7xx_search^50
|
530
|
+
author_8xx_search^10 vern_author_8xx_search^10 cjk_author_8xx_search^10
|
531
|
+
</str>
|
532
|
+
<str name="pf3_author_cjk"> <!-- (token trigrams) -->
|
533
|
+
author_1xx_search^60 vern_author_1xx_search^60 cjk_author_1xx_search^60
|
534
|
+
author_7xx_search^30 vern_author_7xx_search^30 cjk_author_7xx_search^30
|
535
|
+
author_8xx_search^5 vern_author_8xx_search^5 cjk_author_8xx_search^5
|
536
|
+
</str>
|
537
|
+
<str name="pf2_author_cjk"> <!-- (token bigrams) -->
|
538
|
+
author_1xx_search^40 vern_author_1xx_search^40 cjk_author_1xx_search^40
|
539
|
+
author_7xx_search^20 vern_author_7xx_search^20 cjk_author_7xx_search^20
|
540
|
+
author_8xx_search^2 vern_author_8xx_search^2 cjk_author_8xx_search^2
|
541
|
+
</str>
|
542
|
+
|
543
|
+
|
544
|
+
<str name="qf_subject">
|
545
|
+
topic_unstem_search^50
|
546
|
+
topic_search^20 vern_topic_search^20
|
547
|
+
geographic_unstem_search^20
|
548
|
+
geographic_search^10 vern_geographic_search^10
|
549
|
+
subject_other_unstem_search^10
|
550
|
+
subject_other_search^5 vern_subject_other_search^5
|
551
|
+
topic_subx_unstem_search^2
|
552
|
+
topic_subx_search vern_topic_subx_search
|
553
|
+
geographic_subz_unstem_search^2
|
554
|
+
geographic_subz_search vern_geographic_subz_search
|
555
|
+
subject_other_subvy_unstem_search^2
|
556
|
+
subject_other_subvy_search vern_subject_other_subvy_search
|
557
|
+
subject_all_unstem_search^2
|
558
|
+
subject_all_search vern_subject_all_search
|
559
|
+
db_az_subject_search
|
560
|
+
</str>
|
561
|
+
<str name="pf_subject"> <!-- (phrase) -->
|
562
|
+
topic_unstem_search^250
|
563
|
+
topic_search^100 vern_topic_search^100
|
564
|
+
geographic_unstem_search^100
|
565
|
+
geographic_search^50 vern_geographic_search^50
|
566
|
+
subject_other_unstem_search^25
|
567
|
+
subject_other_search^25 vern_subject_other_search^25
|
568
|
+
topic_subx_unstem_search^10
|
569
|
+
topic_subx_search^5 vern_topic_subx_search^5
|
570
|
+
geographic_subz_unstem_search^10
|
571
|
+
geographic_subz_search^5 vern_geographic_subz_search^5
|
572
|
+
subject_other_subvy_unstem_search^10
|
573
|
+
subject_other_subvy_search^5 vern_subject_other_subvy_search^5
|
574
|
+
subject_all_unstem_search^10
|
575
|
+
subject_all_search^5 vern_subject_all_search^5
|
576
|
+
db_az_subject_search^5
|
577
|
+
</str>
|
578
|
+
<str name="pf3_subject"> <!-- (token trigrams) -->
|
579
|
+
topic_search^150 vern_topic_search^150
|
580
|
+
subject_all_search^75 vern_subject_all_search^75
|
581
|
+
db_az_subject_search^3
|
582
|
+
</str>
|
583
|
+
<str name="pf2_subject"> <!-- (token bigrams) -->
|
584
|
+
topic_search^100 vern_topic_search^100
|
585
|
+
subject_all_search^50 vern_subject_all_search^50
|
586
|
+
db_az_subject_search^2
|
587
|
+
</str>
|
588
|
+
|
589
|
+
<str name="qf_subject_cjk">
|
590
|
+
topic_unstem_search^50
|
591
|
+
topic_search^20 vern_topic_search^20 cjk_topic_search^20
|
592
|
+
geographic_unstem_search^20
|
593
|
+
geographic_search^10 vern_geographic_search^10 cjk_geographic_search^10
|
594
|
+
subject_other_unstem_search^10
|
595
|
+
subject_other_search^5 vern_subject_other_search^5 cjk_subject_other_search^5
|
596
|
+
topic_subx_unstem_search^2
|
597
|
+
topic_subx_search vern_topic_subx_search cjk_topic_subx_search
|
598
|
+
geographic_subz_unstem_search^2
|
599
|
+
geographic_subz_search vern_geographic_subz_search cjk_geographic_subz_search
|
600
|
+
subject_other_subvy_unstem_search^2
|
601
|
+
subject_other_subvy_search vern_subject_other_subvy_search cjk_subject_other_subvy_search
|
602
|
+
subject_all_unstem_search^2
|
603
|
+
subject_all_search vern_subject_all_search cjk_subject_all_search
|
604
|
+
db_az_subject_search
|
605
|
+
</str>
|
606
|
+
<str name="pf_subject_cjk"> <!-- (phrase) -->
|
607
|
+
topic_unstem_search^250
|
608
|
+
topic_search^100 vern_topic_search^100 cjk_topic_search^100
|
609
|
+
geographic_unstem_search^100
|
610
|
+
geographic_search^50 vern_geographic_search^50 cjk_geographic_search^50
|
611
|
+
subject_other_unstem_search^25
|
612
|
+
subject_other_search^25 vern_subject_other_search^25 cjk_subject_other_search^25
|
613
|
+
topic_subx_unstem_search^10
|
614
|
+
topic_subx_search^5 vern_topic_subx_search^5 cjk_topic_subx_search^5
|
615
|
+
geographic_subz_unstem_search^10
|
616
|
+
geographic_subz_search^5 vern_geographic_subz_search^5 cjk_geographic_subz_search^5
|
617
|
+
subject_other_subvy_unstem_search^10
|
618
|
+
subject_other_subvy_search^5 vern_subject_other_subvy_search^5 cjk_subject_other_subvy_search^5
|
619
|
+
subject_all_unstem_search^10
|
620
|
+
subject_all_search^5 vern_subject_all_search^5 cjk_subject_all_search^5
|
621
|
+
db_az_subject_search^5
|
622
|
+
</str>
|
623
|
+
<str name="pf3_subject_cjk"> <!-- (token trigrams) -->
|
624
|
+
topic_search^150 vern_topic_search^150 cjk_topic_search^150
|
625
|
+
subject_all_search^75 vern_subject_all_search^75 cjk_subject_all_search^75
|
626
|
+
db_az_subject_search^3
|
627
|
+
</str>
|
628
|
+
<str name="pf2_subject_cjk"> <!-- (token bigrams) -->
|
629
|
+
topic_search^100 vern_topic_search^100 cjk_topic_search^100
|
630
|
+
subject_all_search^50 vern_subject_all_search^50 cjk_subject_all_search^50
|
631
|
+
db_az_subject_search^2
|
632
|
+
</str>
|
633
|
+
|
634
|
+
|
635
|
+
<str name="qf_series">
|
636
|
+
series_exact_search^5
|
637
|
+
series_unstem_search^2
|
638
|
+
series_search vern_series_search
|
639
|
+
</str>
|
640
|
+
<str name="pf_series"> <!-- (phrase) -->
|
641
|
+
series_exact_search^25
|
642
|
+
series_search^10 vern_series_search^10
|
643
|
+
</str>
|
644
|
+
<str name="pf3_series"> <!-- (token trigrams) -->
|
645
|
+
series_search^5 vern_series_search^5
|
646
|
+
</str>
|
647
|
+
<str name="pf2_series"> <!-- (token bigrams) -->
|
648
|
+
series_search^2 vern_series_search^2
|
649
|
+
</str>
|
650
|
+
|
651
|
+
<str name="qf_series_cjk">
|
652
|
+
series_exact_search^5
|
653
|
+
series_unstem_search^2
|
654
|
+
series_search vern_series_search cjk_series_search
|
655
|
+
</str>
|
656
|
+
<str name="pf_series_cjk"> <!-- (phrase) -->
|
657
|
+
series_exact_search^25
|
658
|
+
series_search^10 vern_series_search^10 cjk_series_search^10
|
659
|
+
</str>
|
660
|
+
<str name="pf3_series_cjk"> <!-- (token trigrams) -->
|
661
|
+
series_search^5 vern_series_search^5 cjk_series_search^5
|
662
|
+
</str>
|
663
|
+
<str name="pf2_series_cjk"> <!-- (token bigrams) -->
|
664
|
+
series_search^2 vern_series_search^2 cjk_series_search^2
|
665
|
+
</str>
|
666
|
+
|
667
|
+
|
668
|
+
<!-- for course reserves searches -->
|
669
|
+
<str name="qf_crez">
|
670
|
+
crez_instructor_search
|
671
|
+
crez_course_name_search
|
672
|
+
crez_course_id_search
|
673
|
+
</str>
|
674
|
+
<str name="pf_crez">
|
675
|
+
crez_instructor_search^2
|
676
|
+
crez_course_name_search^2
|
677
|
+
</str>
|
678
|
+
<str name="sort_crez">score desc, title_sort asc, pub_date_sort desc</str>
|
679
|
+
|
680
|
+
|
681
|
+
<!-- for advanced search publisher text box -->
|
682
|
+
<str name="qf_pub_info">
|
683
|
+
pub_search vern_pub_search
|
684
|
+
pub_country
|
685
|
+
pub_date_search
|
686
|
+
</str>
|
687
|
+
<str name="pf_pub_info">
|
688
|
+
pub_search^5 vern_pub_search^5
|
689
|
+
pub_country^5
|
690
|
+
pub_date_search^5
|
691
|
+
</str>
|
692
|
+
<str name="pf3_pub_info">pub_search^3 vern_pub_search^3</str>
|
693
|
+
<str name="pf2_pub_info">pub_search^2 vern_pub_search^2</str>
|
694
|
+
|
695
|
+
<str name="qf_pub_info_cjk">
|
696
|
+
pub_search vern_pub_search cjk_pub_search
|
697
|
+
pub_country
|
698
|
+
pub_date_search
|
699
|
+
</str>
|
700
|
+
<str name="pf_pub_info_cjk">
|
701
|
+
pub_search^5 vern_pub_search^5 cjk_pub_search^5
|
702
|
+
pub_country^5
|
703
|
+
pub_date_search^5
|
704
|
+
</str>
|
705
|
+
<str name="pf3_pub_info_cjk">pub_search^3 vern_pub_search^3 cjk_pub_search^3</str>
|
706
|
+
<str name="pf2_pub_info_cjk">pub_search^2 vern_pub_search^2 cjk_pub_search^2</str>
|
707
|
+
|
708
|
+
<!-- for advanced search number text box -->
|
709
|
+
<str name="qf_number">
|
710
|
+
id
|
711
|
+
isbn_search
|
712
|
+
issn_search
|
713
|
+
oclc
|
714
|
+
barcode_search
|
715
|
+
callnum_search
|
716
|
+
</str>
|
717
|
+
<str name="pf_number">issn_search^5 callnum_search^5</str>
|
718
|
+
<str name="pf3_number">callnum_search^3</str>
|
719
|
+
<str name="pf2_number">callnum_search^2</str>
|
720
|
+
|
721
|
+
<bool name="facet">true</bool>
|
722
|
+
<int name="facet.mincount">1</int>
|
723
|
+
<int name="facet.limit">21</int>
|
724
|
+
<str name="facet.field">access_facet</str>
|
725
|
+
<str name="f.access_facet.facet.method">enum</str>
|
726
|
+
<str name="facet.field">author_person_facet</str>
|
727
|
+
<str name="facet.field">author_other_facet</str>
|
728
|
+
<str name="facet.field">building_facet</str>
|
729
|
+
<str name="f.building_facet.facet.method">enum</str>
|
730
|
+
<str name="f.building_facet.facet.limit">-1</str>
|
731
|
+
<str name="facet.field">callnum_facet_hsim</str>
|
732
|
+
<str name="f.callnum_facet_hsim.facet.sort">index</str>
|
733
|
+
<int name="f.callnum_facet_hsim.facet.limit">-1</int>
|
734
|
+
<str name="f.callnum_facet_hsim.facet.method">enum</str>
|
735
|
+
<str name="facet.field">collection</str>
|
736
|
+
<str name="f.collection.facet.method">enum</str>
|
737
|
+
<str name="facet.field">db_az_subject</str>
|
738
|
+
<str name="f.db_az_subject.facet.method">enum</str>
|
739
|
+
<str name="f.db_az_subject.facet.sort">index</str>
|
740
|
+
<str name="facet.field">display_type</str>
|
741
|
+
<str name="f.display_type.facet.method">enum</str>
|
742
|
+
<str name="facet.field">era_facet</str>
|
743
|
+
<str name="facet.field">format_main_ssim</str>
|
744
|
+
<int name="f.format_main_ssim.facet.limit">-1</int>
|
745
|
+
<str name="f.format_main_ssim.facet.method">enum</str>
|
746
|
+
<str name="facet.field">format_physical_ssim</str>
|
747
|
+
<int name="f.format_physical_ssim.facet.limit">20</int>
|
748
|
+
<str name="f.format_physical_ssim.facet.method">enum</str>
|
749
|
+
<str name="facet.field">genre_ssim</str>
|
750
|
+
<str name="f.genre_ssim.facet.method">enum</str>
|
751
|
+
<str name="facet.field">format</str>
|
752
|
+
<str name="f.format.facet.method">enum</str>
|
753
|
+
<str name="facet.field">geographic_facet</str>
|
754
|
+
<str name="facet.field">language</str>
|
755
|
+
<str name="facet.field">pub_date</str>
|
756
|
+
<str name="facet.field">pub_year_tisim</str>
|
757
|
+
<str name="facet.field">topic_facet</str>
|
758
|
+
|
759
|
+
<!-- Highlighting defaults -->
|
760
|
+
<str name="hl.fl">all_search</str>
|
761
|
+
|
762
|
+
<str name="fl">
|
763
|
+
score,
|
764
|
+
id,
|
765
|
+
author_corp_display, vern_author_corp_display,
|
766
|
+
author_meeting_display, vern_author_meeting_display,
|
767
|
+
author_person_display, vern_author_person_display,
|
768
|
+
author_person_full_display, vern_author_person_full_display,
|
769
|
+
collection,
|
770
|
+
collection_type,
|
771
|
+
collection_with_title,
|
772
|
+
crez_course_info,
|
773
|
+
db_az_subject,
|
774
|
+
display_type,
|
775
|
+
file_id,
|
776
|
+
format,
|
777
|
+
format_main_ssim,
|
778
|
+
format_physical_ssim,
|
779
|
+
genre_ssim,
|
780
|
+
imprint_display,
|
781
|
+
isbn_display,
|
782
|
+
item_display,
|
783
|
+
lccn,
|
784
|
+
marcbib_xml,
|
785
|
+
mhld_display,
|
786
|
+
modsxml,
|
787
|
+
oclc,
|
788
|
+
physical, vern_physical,
|
789
|
+
pub_date,
|
790
|
+
publication_year_isi,
|
791
|
+
beginning_year_isi,
|
792
|
+
earliest_year_isi,
|
793
|
+
earliest_poss_year_isi,
|
794
|
+
release_year_isi,
|
795
|
+
reprint_year_isi,
|
796
|
+
ending_year_isi,
|
797
|
+
latest_year_isi,
|
798
|
+
latest_poss_year_isi,
|
799
|
+
production_year_isi,
|
800
|
+
original_year_isi,
|
801
|
+
copyright_year_isi,
|
802
|
+
pub_date_display,
|
803
|
+
summary_display,
|
804
|
+
title_245a_display, vern_title_245a_display,
|
805
|
+
title_245c_display, vern_title_245c_display,
|
806
|
+
title_display, vern_title_display,
|
807
|
+
title_full_display, vern_title_full_display,
|
808
|
+
title_uniform_display, vern_title_uniform_display
|
809
|
+
url_fulltext,
|
810
|
+
url_restricted,
|
811
|
+
url_suppl,
|
812
|
+
url_sfx
|
813
|
+
</str>
|
814
|
+
</lst>
|
815
|
+
</requestHandler>
|
816
|
+
|
817
|
+
<requestHandler name="standard" class="solr.SearchHandler">
|
818
|
+
<lst name="defaults">
|
819
|
+
<str name="echoParams">explicit</str>
|
820
|
+
<str name="defType">lucene</str>
|
821
|
+
</lst>
|
822
|
+
</requestHandler>
|
823
|
+
|
824
|
+
<!-- for requests to get a single document; use id=666 instead of q=id:666 -->
|
825
|
+
<requestHandler name="document" class="solr.SearchHandler" >
|
826
|
+
<lst name="defaults">
|
827
|
+
<str name="echoParams">all</str>
|
828
|
+
<str name="fl">*</str>
|
829
|
+
<str name="rows">1</str>
|
830
|
+
<str name="q">{!raw f=id v=$id}</str> <!-- use id=666 instead of q=id:666 -->
|
831
|
+
</lst>
|
832
|
+
</requestHandler>
|
833
|
+
|
834
|
+
|
835
|
+
<searchComponent name="spellcheck" class="solr.SpellCheckComponent">
|
836
|
+
<str name="queryAnalyzerFieldType">textSpell</str>
|
837
|
+
<!-- Multiple "Spell Checkers" can be declared and used by this component
|
838
|
+
(e.g. for title_spell field)
|
839
|
+
-->
|
840
|
+
<lst name="spellchecker">
|
841
|
+
<str name="name">default</str>
|
842
|
+
<str name="field">spell</str>
|
843
|
+
<str name="spellcheckIndexDir">./spell</str>
|
844
|
+
<str name="buildOnOptimize">true</str>
|
845
|
+
</lst>
|
846
|
+
</searchComponent>
|
847
|
+
|
848
|
+
<requestHandler name="/replication" class="solr.ReplicationHandler" startup="lazy" />
|
849
|
+
|
850
|
+
<requestDispatcher handleSelect="true" >
|
851
|
+
<requestParsers enableRemoteStreaming="true" multipartUploadLimitInKB="2048" />
|
852
|
+
</requestDispatcher>
|
853
|
+
|
854
|
+
<!-- realtime get handler, guaranteed to return the latest stored fields
|
855
|
+
of any document, without the need to commit or open a new searcher. The current
|
856
|
+
implementation relies on the updateLog feature being enabled. -->
|
857
|
+
<requestHandler name="/get" class="solr.RealTimeGetHandler">
|
858
|
+
<lst name="defaults">
|
859
|
+
<str name="omitHeader">true</str>
|
860
|
+
</lst>
|
861
|
+
</requestHandler>
|
862
|
+
|
863
|
+
<requestHandler name="/analysis/field" startup="lazy" class="solr.FieldAnalysisRequestHandler" />
|
864
|
+
<requestHandler name="/update" class="solr.UpdateRequestHandler" />
|
865
|
+
<requestHandler name="/admin/" class="org.apache.solr.handler.admin.AdminHandlers" />
|
866
|
+
|
867
|
+
<requestHandler name="/admin/ping" class="solr.PingRequestHandler">
|
868
|
+
<lst name="invariants">
|
869
|
+
<str name="q">solrpingquery</str>
|
870
|
+
</lst>
|
871
|
+
<lst name="defaults">
|
872
|
+
<str name="echoParams">all</str>
|
873
|
+
</lst>
|
874
|
+
</requestHandler>
|
875
|
+
|
876
|
+
<!-- config for the admin interface -->
|
877
|
+
<admin>
|
878
|
+
<defaultQuery>search</defaultQuery>
|
879
|
+
</admin>
|
880
|
+
|
881
|
+
</config>
|