muck-raker 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (172) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +24 -0
  3. data/Rakefile +76 -0
  4. data/VERSION +1 -0
  5. data/app/controllers/admin/recommender/feeds_controller.rb +174 -0
  6. data/app/controllers/recommender/default_controller.rb +15 -0
  7. data/app/controllers/recommender/entries_controller.rb +79 -0
  8. data/app/controllers/recommender/recommendations_controller.rb +46 -0
  9. data/app/controllers/recommender/search_controller.rb +82 -0
  10. data/app/helpers/muck_raker_helper.rb +29 -0
  11. data/app/models/click.rb +2 -0
  12. data/app/models/cloud_cache.rb +9 -0
  13. data/app/models/entry.rb +274 -0
  14. data/app/models/feed.rb +29 -0
  15. data/app/models/language.rb +2 -0
  16. data/app/models/oai_endpoint.rb +2 -0
  17. data/app/models/recommendation.rb +2 -0
  18. data/app/models/service.rb +2 -0
  19. data/app/models/subject.rb +2 -0
  20. data/app/models/user.rb +36 -0
  21. data/app/views/default/_advertisements.html.erb +30 -0
  22. data/app/views/default/_language_list.html.erb +5 -0
  23. data/app/views/default/index.html.erb +3 -0
  24. data/app/views/default/tour.html.erb +15 -0
  25. data/app/views/default/widgets.html.erb +4 -0
  26. data/app/views/documents/.tmp_not_found.html +0 -0
  27. data/app/views/entries/_cloud_type_selector.html.erb +9 -0
  28. data/app/views/entries/_result.html.erb +10 -0
  29. data/app/views/entries/_tag_cloud.html.erb +4 -0
  30. data/app/views/entries/_tags.html.erb +7 -0
  31. data/app/views/entries/browse_by_tags.html.erb +33 -0
  32. data/app/views/entries/collections.html.erb +28 -0
  33. data/app/views/entries/details.html.erb +39 -0
  34. data/app/views/entries/index.html.erb +8 -0
  35. data/app/views/entries/search.html.erb +21 -0
  36. data/app/views/entries/show.html.erb +19 -0
  37. data/app/views/entries/track_clicks.html.erb +0 -0
  38. data/app/views/feeds/_feed_selection.html.erb +1 -0
  39. data/app/views/feeds/edit.html.erb +107 -0
  40. data/app/views/feeds/harvest_now.html.erb +3 -0
  41. data/app/views/feeds/index.html.erb +95 -0
  42. data/app/views/feeds/new.html.erb +109 -0
  43. data/app/views/feeds/unban.html.erb +3 -0
  44. data/app/views/layouts/_flashes.html.erb +5 -0
  45. data/app/views/layouts/default.html.erb +35 -0
  46. data/app/views/layouts/default_old.html.erb +43 -0
  47. data/app/views/layouts/global/_header.html.erb +16 -0
  48. data/app/views/layouts/global/_search_box.html.erb +13 -0
  49. data/app/views/layouts/recommendations.html.erb +17 -0
  50. data/app/views/recommendations/document_not_found.html.erb +13 -0
  51. data/app/views/recommendations/index.pjs.erb +44 -0
  52. data/app/views/recommendations/index.rss.builder +37 -0
  53. data/app/views/recommendations/index.xml.builder +34 -0
  54. data/app/views/recommendations/index_js.pjs.erb +35 -0
  55. data/app/views/search/_languages.html.erb +6 -0
  56. data/app/views/search/_result.html.erb +9 -0
  57. data/app/views/search/_search_box.html.erb +9 -0
  58. data/app/views/search/index.html.erb +5 -0
  59. data/app/views/search/results.atom.builder +27 -0
  60. data/app/views/search/results.html.erb +35 -0
  61. data/app/views/search/results.pjs.erb +13 -0
  62. data/app/views/search/results.rdf.builder +24 -0
  63. data/app/views/search/results.rss.builder +31 -0
  64. data/app/views/search/results.xml.builder +19 -0
  65. data/config/muck_raker_routes.rb +39 -0
  66. data/config/solr/README.txt +0 -0
  67. data/config/solr/cores/de/conf/protwords.txt +21 -0
  68. data/config/solr/cores/de/conf/schema.xml +81 -0
  69. data/config/solr/cores/de/conf/solrconfig.xml +304 -0
  70. data/config/solr/cores/de/conf/stopwords.txt +341 -0
  71. data/config/solr/cores/de/conf/synonyms.txt +31 -0
  72. data/config/solr/cores/en/conf/protwords.txt +21 -0
  73. data/config/solr/cores/en/conf/schema.xml +83 -0
  74. data/config/solr/cores/en/conf/solrconfig.xml +304 -0
  75. data/config/solr/cores/en/conf/stopwords.txt +341 -0
  76. data/config/solr/cores/en/conf/synonyms.txt +31 -0
  77. data/config/solr/cores/es/conf/protwords.txt +21 -0
  78. data/config/solr/cores/es/conf/schema.xml +81 -0
  79. data/config/solr/cores/es/conf/solrconfig.xml +304 -0
  80. data/config/solr/cores/es/conf/stopwords.txt +206 -0
  81. data/config/solr/cores/es/conf/synonyms.txt +31 -0
  82. data/config/solr/cores/fr/conf/protwords.txt +21 -0
  83. data/config/solr/cores/fr/conf/schema.xml +82 -0
  84. data/config/solr/cores/fr/conf/solrconfig.xml +304 -0
  85. data/config/solr/cores/fr/conf/stopwords.txt +57 -0
  86. data/config/solr/cores/fr/conf/synonyms.txt +31 -0
  87. data/config/solr/cores/ja/conf/protwords.txt +21 -0
  88. data/config/solr/cores/ja/conf/schema.xml +69 -0
  89. data/config/solr/cores/ja/conf/solrconfig.xml +304 -0
  90. data/config/solr/cores/ja/conf/stopwords.txt +341 -0
  91. data/config/solr/cores/ja/conf/synonyms.txt +31 -0
  92. data/config/solr/cores/nl/conf/protwords.txt +21 -0
  93. data/config/solr/cores/nl/conf/schema.xml +78 -0
  94. data/config/solr/cores/nl/conf/solrconfig.xml +304 -0
  95. data/config/solr/cores/nl/conf/stopwords.txt +45691 -0
  96. data/config/solr/cores/nl/conf/synonyms.txt +31 -0
  97. data/config/solr/cores/ru/conf/protwords.txt +21 -0
  98. data/config/solr/cores/ru/conf/schema.xml +78 -0
  99. data/config/solr/cores/ru/conf/solrconfig.xml +304 -0
  100. data/config/solr/cores/ru/conf/stopwords.txt +341 -0
  101. data/config/solr/cores/ru/conf/synonyms.txt +31 -0
  102. data/config/solr/cores/zh/conf/protwords.txt +21 -0
  103. data/config/solr/cores/zh/conf/schema.xml +72 -0
  104. data/config/solr/cores/zh/conf/solrconfig.xml +304 -0
  105. data/config/solr/cores/zh/conf/stopwords.txt +341 -0
  106. data/config/solr/cores/zh/conf/synonyms.txt +31 -0
  107. data/config/solr/solr.xml +50 -0
  108. data/db/bootstrap/feeds.yml +4268 -0
  109. data/db/bootstrap/oai_endpoints.yml +6 -0
  110. data/db/bootstrap/services.yml +172 -0
  111. data/db/migrate/20090602191243_create_muck_raker.rb +304 -0
  112. data/install.rb +1 -0
  113. data/lib/muck_raker/initialize_routes.rb +8 -0
  114. data/lib/muck_raker/languages.rb +53 -0
  115. data/lib/muck_raker.rb +6 -0
  116. data/locales/en.yml +42 -0
  117. data/rails/init.rb +27 -0
  118. data/raker/lib/aggregatord.jar +0 -0
  119. data/raker/lib/aggregatord.properties +45 -0
  120. data/raker/lib/apache-solr-common-1.3.0.jar +0 -0
  121. data/raker/lib/apache-solr-core-1.3.0.jar +0 -0
  122. data/raker/lib/apache-solr-dataimporthandler-1.3.0.jar +0 -0
  123. data/raker/lib/axis.jar +0 -0
  124. data/raker/lib/commons-codec-1.3.jar +0 -0
  125. data/raker/lib/commons-csv-1.0-SNAPSHOT-r609327.jar +0 -0
  126. data/raker/lib/commons-daemon.jar +0 -0
  127. data/raker/lib/commons-dbcp-1.2.1.jar +0 -0
  128. data/raker/lib/commons-discovery-0.2.jar +0 -0
  129. data/raker/lib/commons-fileupload-1.2.jar +0 -0
  130. data/raker/lib/commons-httpclient-3.1.jar +0 -0
  131. data/raker/lib/commons-io-1.3.1.jar +0 -0
  132. data/raker/lib/commons-logging-1.0.4.jar +0 -0
  133. data/raker/lib/commons-pool-1.3.jar +0 -0
  134. data/raker/lib/delicious-1.13.jar +0 -0
  135. data/raker/lib/flickrapi-1.0a9.jar +0 -0
  136. data/raker/lib/geronimo-stax-api_1.0_spec-1.0.1.jar +0 -0
  137. data/raker/lib/javax.jms.jar +0 -0
  138. data/raker/lib/jaxrpc.jar +0 -0
  139. data/raker/lib/jdom.jar +0 -0
  140. data/raker/lib/jericho.jar +0 -0
  141. data/raker/lib/junit-4.3.jar +0 -0
  142. data/raker/lib/log4j-1.2.8.jar +0 -0
  143. data/raker/lib/lucene-analyzers-2.4-dev.jar +0 -0
  144. data/raker/lib/lucene-core-2.4-dev.jar +0 -0
  145. data/raker/lib/lucene-highlighter-2.4-dev.jar +0 -0
  146. data/raker/lib/lucene-memory-2.4-dev.jar +0 -0
  147. data/raker/lib/lucene-queries-2.4-dev.jar +0 -0
  148. data/raker/lib/lucene-snowball-2.4-dev.jar +0 -0
  149. data/raker/lib/lucene-spellchecker-2.4-dev.jar +0 -0
  150. data/raker/lib/mail.jar +0 -0
  151. data/raker/lib/mysql-connector-java-5.1.7-bin.jar +0 -0
  152. data/raker/lib/recommenderd.jar +0 -0
  153. data/raker/lib/recommenderd.properties +64 -0
  154. data/raker/lib/rome-1.0.jar +0 -0
  155. data/raker/lib/rome.properties +90 -0
  156. data/raker/lib/solr-commons-csv-pom.xml.template +36 -0
  157. data/raker/lib/solr-lucene-analyzers-pom.xml.template +35 -0
  158. data/raker/lib/solr-lucene-contrib-pom.xml.template +48 -0
  159. data/raker/lib/solr-lucene-core-pom.xml.template +36 -0
  160. data/raker/lib/solr-lucene-highlighter-pom.xml.template +38 -0
  161. data/raker/lib/solr-lucene-queries-pom.xml.template +38 -0
  162. data/raker/lib/solr-lucene-snowball-pom.xml.template +36 -0
  163. data/raker/lib/solr-lucene-spellchecker-pom.xml.template +36 -0
  164. data/raker/lib/stax-utils.jar +0 -0
  165. data/raker/lib/wsdl4j-1.5.1.jar +0 -0
  166. data/raker/lib/wstx-asl-3.2.7.jar +0 -0
  167. data/tasks/bootstrap.rake +18 -0
  168. data/tasks/raker.rake +68 -0
  169. data/test/recommender_test.rb +8 -0
  170. data/test/test_helper.rb +20 -0
  171. data/uninstall.rb +1 -0
  172. metadata +253 -0
@@ -0,0 +1,341 @@
1
+ # Licensed to the Apache Software Foundation (ASF) under one or more
2
+ # contributor license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright ownership.
4
+ # The ASF licenses this file to You under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with
6
+ # the License. You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+
16
+ #-----------------------------------------------------------------------
17
+ # a couple of test stopwords to test that the words are really being
18
+ # configured from this file:
19
+ stopworda
20
+ stopwordb
21
+
22
+ #stopwords list i found on the internet
23
+ a
24
+ about
25
+ above
26
+ across
27
+ after
28
+ afterwards
29
+ again
30
+ against
31
+ all
32
+ almost
33
+ alone
34
+ along
35
+ already
36
+ also
37
+ although
38
+ always
39
+ am
40
+ among
41
+ amongst
42
+ amoungst
43
+ amount
44
+ an
45
+ and
46
+ another
47
+ any
48
+ anyhow
49
+ anyone
50
+ anything
51
+ anyway
52
+ anywhere
53
+ are
54
+ around
55
+ as
56
+ at
57
+ back
58
+ be
59
+ became
60
+ because
61
+ become
62
+ becomes
63
+ becoming
64
+ been
65
+ before
66
+ beforehand
67
+ behind
68
+ being
69
+ below
70
+ beside
71
+ besides
72
+ between
73
+ beyond
74
+ bill
75
+ both
76
+ bottom
77
+ but
78
+ by
79
+ call
80
+ can
81
+ cannot
82
+ cant
83
+ co
84
+ computer
85
+ con
86
+ could
87
+ couldnt
88
+ cry
89
+ de
90
+ describe
91
+ detail
92
+ do
93
+ done
94
+ down
95
+ due
96
+ during
97
+ each
98
+ eg
99
+ eight
100
+ either
101
+ eleven
102
+ else
103
+ elsewhere
104
+ empty
105
+ enough
106
+ etc
107
+ even
108
+ ever
109
+ every
110
+ everyone
111
+ everything
112
+ everywhere
113
+ except
114
+ few
115
+ fifteen
116
+ fify
117
+ fill
118
+ find
119
+ fire
120
+ first
121
+ five
122
+ for
123
+ former
124
+ formerly
125
+ forty
126
+ found
127
+ four
128
+ from
129
+ front
130
+ full
131
+ further
132
+ get
133
+ give
134
+ go
135
+ had
136
+ has
137
+ hasnt
138
+ have
139
+ he
140
+ hence
141
+ her
142
+ here
143
+ hereafter
144
+ hereby
145
+ herein
146
+ hereupon
147
+ hers
148
+ herself
149
+ him
150
+ himself
151
+ his
152
+ how
153
+ however
154
+ hundred
155
+ i
156
+ ie
157
+ if
158
+ in
159
+ inc
160
+ indeed
161
+ interest
162
+ into
163
+ is
164
+ it
165
+ its
166
+ itself
167
+ keep
168
+ last
169
+ latter
170
+ latterly
171
+ least
172
+ less
173
+ ltd
174
+ made
175
+ many
176
+ may
177
+ me
178
+ meanwhile
179
+ might
180
+ mill
181
+ mine
182
+ more
183
+ moreover
184
+ most
185
+ mostly
186
+ move
187
+ much
188
+ must
189
+ my
190
+ myself
191
+ name
192
+ namely
193
+ neither
194
+ never
195
+ nevertheless
196
+ next
197
+ nine
198
+ no
199
+ nobody
200
+ none
201
+ noone
202
+ nor
203
+ not
204
+ nothing
205
+ now
206
+ nowhere
207
+ of
208
+ off
209
+ often
210
+ on
211
+ once
212
+ one
213
+ only
214
+ onto
215
+ or
216
+ other
217
+ others
218
+ otherwise
219
+ our
220
+ ours
221
+ ourselves
222
+ out
223
+ over
224
+ own
225
+ part
226
+ per
227
+ perhaps
228
+ please
229
+ put
230
+ rather
231
+ re
232
+ same
233
+ see
234
+ seem
235
+ seemed
236
+ seeming
237
+ seems
238
+ serious
239
+ several
240
+ she
241
+ should
242
+ show
243
+ side
244
+ since
245
+ sincere
246
+ six
247
+ sixty
248
+ so
249
+ some
250
+ somehow
251
+ someone
252
+ something
253
+ sometime
254
+ sometimes
255
+ somewhere
256
+ still
257
+ such
258
+ system
259
+ take
260
+ ten
261
+ than
262
+ that
263
+ the
264
+ their
265
+ them
266
+ themselves
267
+ then
268
+ thence
269
+ there
270
+ thereafter
271
+ thereby
272
+ therefore
273
+ therein
274
+ thereupon
275
+ these
276
+ they
277
+ thick
278
+ thin
279
+ third
280
+ this
281
+ those
282
+ though
283
+ three
284
+ through
285
+ throughout
286
+ thru
287
+ thus
288
+ to
289
+ together
290
+ too
291
+ top
292
+ toward
293
+ towards
294
+ twelve
295
+ twenty
296
+ two
297
+ un
298
+ under
299
+ until
300
+ up
301
+ upon
302
+ us
303
+ very
304
+ via
305
+ was
306
+ we
307
+ well
308
+ were
309
+ what
310
+ whatever
311
+ when
312
+ whence
313
+ whenever
314
+ where
315
+ whereafter
316
+ whereas
317
+ whereby
318
+ wherein
319
+ whereupon
320
+ wherever
321
+ whether
322
+ which
323
+ while
324
+ whither
325
+ who
326
+ whoever
327
+ whole
328
+ whom
329
+ whose
330
+ why
331
+ will
332
+ with
333
+ within
334
+ without
335
+ would
336
+ yet
337
+ you
338
+ your
339
+ yours
340
+ yourself
341
+ yourselves
@@ -0,0 +1,31 @@
1
+ # The ASF licenses this file to You under the Apache License, Version 2.0
2
+ # (the "License"); you may not use this file except in compliance with
3
+ # the License. You may obtain a copy of the License at
4
+ #
5
+ # http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software
8
+ # distributed under the License is distributed on an "AS IS" BASIS,
9
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10
+ # See the License for the specific language governing permissions and
11
+ # limitations under the License.
12
+
13
+ #-----------------------------------------------------------------------
14
+ #some test synonym mappings unlikely to appear in real input text
15
+ aaa => aaaa
16
+ bbb => bbbb1 bbbb2
17
+ ccc => cccc1,cccc2
18
+ a\=>a => b\=>b
19
+ a\,a => b\,b
20
+ fooaaa,baraaa,bazaaa
21
+
22
+ # Some synonym groups specific to this example
23
+ GB,gib,gigabyte,gigabytes
24
+ MB,mib,megabyte,megabytes
25
+ Television, Televisions, TV, TVs
26
+ #notice we use "gib" instead of "GiB" so any WordDelimiterFilter coming
27
+ #after us won't split it into two words.
28
+
29
+ # Synonym mappings can be used for spelling correction too
30
+ pixima => pixma
31
+
@@ -0,0 +1,21 @@
1
+ # The ASF licenses this file to You under the Apache License, Version 2.0
2
+ # (the "License"); you may not use this file except in compliance with
3
+ # the License. You may obtain a copy of the License at
4
+ #
5
+ # http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software
8
+ # distributed under the License is distributed on an "AS IS" BASIS,
9
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10
+ # See the License for the specific language governing permissions and
11
+ # limitations under the License.
12
+
13
+ #-----------------------------------------------------------------------
14
+ # Use a protected word file to protect against the stemmer reducing two
15
+ # unrelated words to the same base word.
16
+
17
+ # Some non-words that normally won't be encountered,
18
+ # just to test that they won't be stemmed.
19
+ dontstems
20
+ zwhacky
21
+
@@ -0,0 +1,83 @@
1
+ <?xml version="1.0" ?>
2
+ <!--
3
+ Licensed to the Apache Software Foundation (ASF) under one or more
4
+ contributor license agreements. See the NOTICE file distributed with
5
+ this work for additional information regarding copyright ownership.
6
+ The ASF licenses this file to You under the Apache License, Version 2.0
7
+ (the "License"); you may not use this file except in compliance with
8
+ the License. You may obtain a copy of the License at
9
+
10
+ http://www.apache.org/licenses/LICENSE-2.0
11
+
12
+ Unless required by applicable law or agreed to in writing, software
13
+ distributed under the License is distributed on an "AS IS" BASIS,
14
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ See the License for the specific language governing permissions and
16
+ limitations under the License.
17
+ -->
18
+
19
+ <schema name="en" version="1.1">
20
+ <types>
21
+ <fieldtype name="string" class="solr.StrField" sortMissingLast="true" omitNorms="true"/>
22
+ <fieldType name="integer" class="solr.IntField" omitNorms="false"/>
23
+ <fieldType name="text" class="solr.TextField" positionIncrementGap="100">
24
+ <analyzer type="index">
25
+ <tokenizer class="solr.HTMLStripWhitespaceTokenizerFactory"/>
26
+ <filter class="solr.ISOLatin1AccentFilterFactory"/>
27
+ <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt"/>
28
+ <filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateNumberParts="1" catenateWords="1" catenateNumbers="1" catenateAll="0"/>
29
+ <filter class="solr.LowerCaseFilterFactory"/>
30
+ <filter class="solr.EnglishPorterFilterFactory" protected="protwords.txt"/>
31
+ <filter class="solr.LengthFilterFactory" min="2" max="100" />
32
+ </analyzer>
33
+ <analyzer type="query">
34
+ <tokenizer class="solr.WhitespaceTokenizerFactory"/>
35
+ <filter class="solr.ISOLatin1AccentFilterFactory"/>
36
+ <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true"/>
37
+ <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt"/>
38
+ <filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateNumberParts="1" catenateWords="0" catenateNumbers="0" catenateAll="0"/>
39
+ <filter class="solr.LowerCaseFilterFactory"/>
40
+ <filter class="solr.EnglishPorterFilterFactory" protected="protwords.txt"/>
41
+ <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
42
+ </analyzer>
43
+ </fieldType>
44
+ <fieldType name="tag" class="solr.TextField" positionIncrementGap="100">
45
+ <analyzer type="index">
46
+ <tokenizer class="solr.HTMLStripWhitespaceTokenizerFactory"/>
47
+ <filter class="solr.ISOLatin1AccentFilterFactory"/>
48
+ <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt"/>
49
+ <filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateNumberParts="1" catenateWords="1" catenateNumbers="1" catenateAll="0"/>
50
+ <filter class="solr.LowerCaseFilterFactory"/>
51
+ <filter class="solr.LengthFilterFactory" min="2" max="100" />
52
+ </analyzer>
53
+ </fieldType>
54
+ </types>
55
+
56
+ <fields>
57
+ <!-- general -->
58
+ <field name="id" type="string" indexed="true" stored="true" multiValued="false" required="true"/>
59
+
60
+ <field name="pk_i" type="integer" indexed="true" stored="true"/>
61
+ <field name="pk_s" type="string" indexed="true" stored="true"/>
62
+ <field name="text" type="text" indexed="true" stored="true" termVectors="true" multiValued="true"/>
63
+ <field name="tag" type="tag" indexed="true" stored="true" termVectors="true" multiValued="true"/>
64
+ <dynamicField name="*_i" type="integer" indexed="true" stored="false"/>
65
+ <dynamicField name="*_t" type="text" indexed="true" stored="true"/>
66
+ <dynamicField name="*_s" type="string" indexed="true" stored="true"/>
67
+ <dynamicField name="*_facet" type="string" indexed="true" stored="false"/>
68
+ <dynamicField name="*_s_mv" type="string" indexed="true" stored="false" multiValued="true"/>
69
+ </fields>
70
+
71
+ <!-- field to use to determine and enforce document uniqueness. -->
72
+ <uniqueKey>id</uniqueKey>
73
+
74
+ <copyField source="*_t" dest="text"/>
75
+ <copyField source="*_facet" dest="text"/>
76
+
77
+ <!-- field for the QueryParser to use when an explicit fieldname is absent -->
78
+ <defaultSearchField>text</defaultSearchField>
79
+
80
+ <!-- SolrQueryParser configuration: defaultOperator="AND|OR" -->
81
+ <solrQueryParser defaultOperator="OR"/>
82
+ </schema>
83
+