solrsrv 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (102) hide show
  1. data/.document +5 -0
  2. data/.gitignore +11 -0
  3. data/LICENSE +20 -0
  4. data/README.md +27 -0
  5. data/Rakefile +28 -0
  6. data/VERSION +1 -0
  7. data/apache-solr-1.4.0/README.txt +42 -0
  8. data/apache-solr-1.4.0/etc/jetty.xml +212 -0
  9. data/apache-solr-1.4.0/etc/webdefault.xml +379 -0
  10. data/apache-solr-1.4.0/example-DIH/README.txt +43 -0
  11. data/apache-solr-1.4.0/example-DIH/hsqldb/ex.backup +0 -0
  12. data/apache-solr-1.4.0/example-DIH/hsqldb/ex.data +0 -0
  13. data/apache-solr-1.4.0/example-DIH/hsqldb/ex.log +2 -0
  14. data/apache-solr-1.4.0/example-DIH/hsqldb/ex.properties +17 -0
  15. data/apache-solr-1.4.0/example-DIH/hsqldb/ex.script +12 -0
  16. data/apache-solr-1.4.0/example-DIH/solr/db/conf/admin-extra.html +31 -0
  17. data/apache-solr-1.4.0/example-DIH/solr/db/conf/db-data-config.xml +31 -0
  18. data/apache-solr-1.4.0/example-DIH/solr/db/conf/elevate.xml +36 -0
  19. data/apache-solr-1.4.0/example-DIH/solr/db/conf/protwords.txt +21 -0
  20. data/apache-solr-1.4.0/example-DIH/solr/db/conf/schema.xml +356 -0
  21. data/apache-solr-1.4.0/example-DIH/solr/db/conf/scripts.conf +24 -0
  22. data/apache-solr-1.4.0/example-DIH/solr/db/conf/solrconfig.xml +705 -0
  23. data/apache-solr-1.4.0/example-DIH/solr/db/conf/stopwords.txt +58 -0
  24. data/apache-solr-1.4.0/example-DIH/solr/db/conf/synonyms.txt +31 -0
  25. data/apache-solr-1.4.0/example-DIH/solr/db/conf/xslt/example.xsl +132 -0
  26. data/apache-solr-1.4.0/example-DIH/solr/db/conf/xslt/example_atom.xsl +63 -0
  27. data/apache-solr-1.4.0/example-DIH/solr/db/conf/xslt/example_rss.xsl +62 -0
  28. data/apache-solr-1.4.0/example-DIH/solr/db/conf/xslt/luke.xsl +345 -0
  29. data/apache-solr-1.4.0/example-DIH/solr/db/lib/hsqldb-1.8.0.10.jar +0 -0
  30. data/apache-solr-1.4.0/example-DIH/solr/mail/conf/data-config.xml +11 -0
  31. data/apache-solr-1.4.0/example-DIH/solr/mail/conf/protwords.txt +21 -0
  32. data/apache-solr-1.4.0/example-DIH/solr/mail/conf/schema.xml +370 -0
  33. data/apache-solr-1.4.0/example-DIH/solr/mail/conf/solrconfig.xml +807 -0
  34. data/apache-solr-1.4.0/example-DIH/solr/mail/conf/stopwords.txt +58 -0
  35. data/apache-solr-1.4.0/example-DIH/solr/mail/conf/synonyms.txt +31 -0
  36. data/apache-solr-1.4.0/example-DIH/solr/rss/conf/admin-extra.html +31 -0
  37. data/apache-solr-1.4.0/example-DIH/solr/rss/conf/elevate.xml +36 -0
  38. data/apache-solr-1.4.0/example-DIH/solr/rss/conf/protwords.txt +21 -0
  39. data/apache-solr-1.4.0/example-DIH/solr/rss/conf/rss-data-config.xml +26 -0
  40. data/apache-solr-1.4.0/example-DIH/solr/rss/conf/schema.xml +316 -0
  41. data/apache-solr-1.4.0/example-DIH/solr/rss/conf/scripts.conf +24 -0
  42. data/apache-solr-1.4.0/example-DIH/solr/rss/conf/solrconfig.xml +704 -0
  43. data/apache-solr-1.4.0/example-DIH/solr/rss/conf/stopwords.txt +58 -0
  44. data/apache-solr-1.4.0/example-DIH/solr/rss/conf/synonyms.txt +31 -0
  45. data/apache-solr-1.4.0/example-DIH/solr/solr.xml +8 -0
  46. data/apache-solr-1.4.0/exampledocs/books.csv +11 -0
  47. data/apache-solr-1.4.0/exampledocs/hd.xml +48 -0
  48. data/apache-solr-1.4.0/exampledocs/ipod_other.xml +52 -0
  49. data/apache-solr-1.4.0/exampledocs/ipod_video.xml +36 -0
  50. data/apache-solr-1.4.0/exampledocs/mem.xml +60 -0
  51. data/apache-solr-1.4.0/exampledocs/monitor.xml +31 -0
  52. data/apache-solr-1.4.0/exampledocs/monitor2.xml +30 -0
  53. data/apache-solr-1.4.0/exampledocs/mp500.xml +39 -0
  54. data/apache-solr-1.4.0/exampledocs/payload.xml +57 -0
  55. data/apache-solr-1.4.0/exampledocs/post.jar +0 -0
  56. data/apache-solr-1.4.0/exampledocs/post.sh +28 -0
  57. data/apache-solr-1.4.0/exampledocs/sd500.xml +34 -0
  58. data/apache-solr-1.4.0/exampledocs/solr.xml +38 -0
  59. data/apache-solr-1.4.0/exampledocs/test_utf8.sh +83 -0
  60. data/apache-solr-1.4.0/exampledocs/utf8-example.xml +42 -0
  61. data/apache-solr-1.4.0/exampledocs/vidcard.xml +54 -0
  62. data/apache-solr-1.4.0/lib/jetty-6.1.3.jar +0 -0
  63. data/apache-solr-1.4.0/lib/jetty-util-6.1.3.jar +0 -0
  64. data/apache-solr-1.4.0/lib/jsp-2.1/ant-1.6.5.jar +0 -0
  65. data/apache-solr-1.4.0/lib/jsp-2.1/core-3.1.1.jar +0 -0
  66. data/apache-solr-1.4.0/lib/jsp-2.1/jsp-2.1.jar +0 -0
  67. data/apache-solr-1.4.0/lib/jsp-2.1/jsp-api-2.1.jar +0 -0
  68. data/apache-solr-1.4.0/lib/servlet-api-2.5-6.1.3.jar +0 -0
  69. data/apache-solr-1.4.0/logs/.gitkeep +0 -0
  70. data/apache-solr-1.4.0/multicore/README.txt +3 -0
  71. data/apache-solr-1.4.0/multicore/core0/conf/schema.xml +41 -0
  72. data/apache-solr-1.4.0/multicore/core0/conf/solrconfig.xml +40 -0
  73. data/apache-solr-1.4.0/multicore/core1/conf/schema.xml +41 -0
  74. data/apache-solr-1.4.0/multicore/core1/conf/solrconfig.xml +40 -0
  75. data/apache-solr-1.4.0/multicore/exampledocs/ipod_other.xml +34 -0
  76. data/apache-solr-1.4.0/multicore/exampledocs/ipod_video.xml +22 -0
  77. data/apache-solr-1.4.0/multicore/solr.xml +35 -0
  78. data/apache-solr-1.4.0/solr/README.txt +54 -0
  79. data/apache-solr-1.4.0/solr/conf/admin-extra.html +31 -0
  80. data/apache-solr-1.4.0/solr/conf/elevate.xml +36 -0
  81. data/apache-solr-1.4.0/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
  82. data/apache-solr-1.4.0/solr/conf/protwords.txt +21 -0
  83. data/apache-solr-1.4.0/solr/conf/schema.xml +569 -0
  84. data/apache-solr-1.4.0/solr/conf/scripts.conf +24 -0
  85. data/apache-solr-1.4.0/solr/conf/solrconfig.xml +1033 -0
  86. data/apache-solr-1.4.0/solr/conf/spellings.txt +2 -0
  87. data/apache-solr-1.4.0/solr/conf/stopwords.txt +58 -0
  88. data/apache-solr-1.4.0/solr/conf/synonyms.txt +31 -0
  89. data/apache-solr-1.4.0/solr/conf/xslt/example.xsl +132 -0
  90. data/apache-solr-1.4.0/solr/conf/xslt/example_atom.xsl +67 -0
  91. data/apache-solr-1.4.0/solr/conf/xslt/example_rss.xsl +66 -0
  92. data/apache-solr-1.4.0/solr/conf/xslt/luke.xsl +337 -0
  93. data/apache-solr-1.4.0/start.jar +0 -0
  94. data/apache-solr-1.4.0/webapps/solr.war +0 -0
  95. data/bin/solrsrv +39 -0
  96. data/lib/generators/solrsrv/update_config/templates/solrsrv.yml +17 -0
  97. data/lib/generators/solrsrv/update_config/update_config_generator.rb +17 -0
  98. data/lib/solrsrv/engine.rb +6 -0
  99. data/lib/solrsrv.rb +5 -0
  100. data/lib/tasks/solrsrv.rake +49 -0
  101. data/solrsrv.gemspec +143 -0
  102. metadata +184 -0
@@ -0,0 +1,83 @@
1
+ #!/bin/sh
2
+ # Licensed to the Apache Software Foundation (ASF) under one or more
3
+ # contributor license agreements. See the NOTICE file distributed with
4
+ # this work for additional information regarding copyright ownership.
5
+ # The ASF licenses this file to You under the Apache License, Version 2.0
6
+ # (the "License"); you may not use this file except in compliance with
7
+ # the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ #Test script to tell if the server is accepting UTF-8
18
+ #The python writer currently escapes non-ascii chars, so it's good for testing
19
+
20
+ URL=http://localhost:8983/solr/select
21
+
22
+ if [ ! -z $1 ]; then
23
+ URL=$1
24
+ fi
25
+
26
+ curl "$URL/select?q=hello&params=explicit&wt=python" 2> /dev/null | grep 'hello' > /dev/null 2>&1
27
+ if [ $? = 0 ]; then
28
+ echo "Solr server is up."
29
+ else
30
+ echo "ERROR: Solr is not up."
31
+ exit 1
32
+ fi
33
+
34
+ curl "$URL/select?q=h%C3%A9llo&echoParams=explicit&wt=python" 2> /dev/null | grep 'h\\u00e9llo' > /dev/null 2>&1
35
+ if [ $? = 0 ]; then
36
+ echo "HTTP GET is accepting UTF-8"
37
+ else
38
+ echo "ERROR: HTTP GET is not accepting UTF-8"
39
+ fi
40
+
41
+ curl $URL/select --data-binary 'q=h%C3%A9llo&echoParams=explicit&wt=python' -H 'Content-type:application/x-www-form-urlencoded; charset=UTF-8' 2> /dev/null | grep 'h\\u00e9llo' > /dev/null 2>&1
42
+ if [ $? = 0 ]; then
43
+ echo "HTTP POST is accepting UTF-8"
44
+ else
45
+ echo "ERROR: HTTP POST is not accepting UTF-8"
46
+ fi
47
+
48
+ curl $URL/select --data-binary 'q=h%C3%A9llo&echoParams=explicit&wt=python' 2> /dev/null | grep 'h\\u00e9llo' > /dev/null 2>&1
49
+ if [ $? = 0 ]; then
50
+ echo "HTTP POST defaults to UTF-8"
51
+ else
52
+ echo "HTTP POST does not default to UTF-8"
53
+ fi
54
+
55
+
56
+ #A codepoint outside of the BMP
57
+ CODEPOINT='\\U00100058'
58
+ #URL encoded UTF8 of the codepoint
59
+ URL_UTF8='%F4%80%81%98'
60
+ #expected return of the python writer (currently uses UTF-16 surrogates)
61
+ EXPECTED='\\udbc0\\udc58'
62
+
63
+ curl "$URL/select?q=$URL_UTF8&echoParams=explicit&wt=python" 2> /dev/null | grep $EXPECTED > /dev/null 2>&1
64
+ if [ $? = 0 ]; then
65
+ echo "HTTP GET is accepting UTF-8 beyond the basic multilingual plane"
66
+ else
67
+ echo "ERROR: HTTP GET is not accepting UTF-8 beyond the basic multilingual plane"
68
+ fi
69
+
70
+ curl $URL/select --data-binary "q=$URL_UTF8&echoParams=explicit&wt=python" -H 'Content-type:application/x-www-form-urlencoded; charset=UTF-8' 2> /dev/null | grep $EXPECTED > /dev/null 2>&1
71
+ if [ $? = 0 ]; then
72
+ echo "HTTP POST is accepting UTF-8 beyond the basic multilingual plane"
73
+ else
74
+ echo "ERROR: HTTP POST is not accepting UTF-8 beyond the basic multilingual plane"
75
+ fi
76
+
77
+ curl "$URL/select?q=$URL_UTF8&echoParams=explicit&wt=python" --data-binary '' 2> /dev/null | grep $EXPECTED > /dev/null 2>&1
78
+ if [ $? = 0 ]; then
79
+ echo "HTTP POST + URL params is accepting UTF-8 beyond the basic multilingual plane"
80
+ else
81
+ echo "ERROR: HTTP POST + URL params is not accepting UTF-8 beyond the basic multilingual plane"
82
+ fi
83
+
@@ -0,0 +1,42 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
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
+ <!--
20
+ After posting this to SOLR with post.sh, searching for "êâîôû" from
21
+ the solr/admin/ search page must return this document.
22
+ -->
23
+
24
+ <add>
25
+ <doc>
26
+ <field name="id">UTF8TEST</field>
27
+ <field name="name">Test with some UTF-8 encoded characters</field>
28
+ <field name="manu">Apache Software Foundation</field>
29
+ <field name="cat">software</field>
30
+ <field name="cat">search</field>
31
+ <field name="features">No accents here</field>
32
+ <field name="features">This is an e acute: é</field>
33
+ <field name="features">eaiou with circumflexes: êâîôû</field>
34
+ <field name="features">eaiou with umlauts: ëäïöü</field>
35
+ <field name="features">tag with escaped chars: &lt;nicetag/&gt;</field>
36
+ <field name="features">escaped ampersand: Bonnie &amp; Clyde</field>
37
+ <field name="price">0</field>
38
+ <!-- no popularity, get the default from schema.xml -->
39
+ <field name="inStock">true</field>
40
+ </doc>
41
+ </add>
42
+
@@ -0,0 +1,54 @@
1
+ <!--
2
+ Licensed to the Apache Software Foundation (ASF) under one or more
3
+ contributor license agreements. See the NOTICE file distributed with
4
+ this work for additional information regarding copyright ownership.
5
+ The ASF licenses this file to You under the Apache License, Version 2.0
6
+ (the "License"); you may not use this file except in compliance with
7
+ the License. You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+ -->
17
+
18
+ <add>
19
+ <doc>
20
+ <field name="id">EN7800GTX/2DHTV/256M</field>
21
+ <field name="name">ASUS Extreme N7800GTX/2DHTV (256 MB)</field>
22
+ <field name="manu">ASUS Computer Inc.</field>
23
+ <field name="cat">electronics</field>
24
+ <field name="cat">graphics card</field>
25
+ <field name="features">NVIDIA GeForce 7800 GTX GPU/VPU clocked at 486MHz</field>
26
+ <field name="features">256MB GDDR3 Memory clocked at 1.35GHz</field>
27
+ <field name="features">PCI Express x16</field>
28
+ <field name="features">Dual DVI connectors, HDTV out, video input</field>
29
+ <field name="features">OpenGL 2.0, DirectX 9.0</field>
30
+ <field name="weight">16</field>
31
+ <field name="price">479.95</field>
32
+ <field name="popularity">7</field>
33
+ <field name="inStock">false</field>
34
+ <field name="manufacturedate_dt">2006-02-13T15:26:37Z/DAY</field>
35
+ </doc>
36
+ <!-- yes, you can add more than one document at a time -->
37
+ <doc>
38
+ <field name="id">100-435805</field>
39
+ <field name="name">ATI Radeon X1900 XTX 512 MB PCIE Video Card</field>
40
+ <field name="manu">ATI Technologies</field>
41
+ <field name="cat">electronics</field>
42
+ <field name="cat">graphics card</field>
43
+ <field name="features">ATI RADEON X1900 GPU/VPU clocked at 650MHz</field>
44
+ <field name="features">512MB GDDR3 SDRAM clocked at 1.55GHz</field>
45
+ <field name="features">PCI Express x16</field>
46
+ <field name="features">dual DVI, HDTV, svideo, composite out</field>
47
+ <field name="features">OpenGL 2.0, DirectX 9.0</field>
48
+ <field name="weight">48</field>
49
+ <field name="price">649.99</field>
50
+ <field name="popularity">7</field>
51
+ <field name="inStock">false</field>
52
+ <field name="manufacturedate_dt">2006-02-13T15:26:37Z/DAY</field>
53
+ </doc>
54
+ </add>
File without changes
@@ -0,0 +1,3 @@
1
+ This is an alternative setup structure to support multiple cores.
2
+
3
+ For general examples on standard solr configuration, see the "solr" directory.
@@ -0,0 +1,41 @@
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="example core zero" version="1.1">
20
+ <types>
21
+ <fieldtype name="string" class="solr.StrField" sortMissingLast="true" omitNorms="true"/>
22
+ </types>
23
+
24
+ <fields>
25
+ <!-- general -->
26
+ <field name="id" type="string" indexed="true" stored="true" multiValued="false" required="true"/>
27
+ <field name="type" type="string" indexed="true" stored="true" multiValued="false" />
28
+ <field name="name" type="string" indexed="true" stored="true" multiValued="false" />
29
+ <field name="core0" type="string" indexed="true" stored="true" multiValued="false" />
30
+ </fields>
31
+
32
+ <!-- field to use to determine and enforce document uniqueness. -->
33
+ <uniqueKey>id</uniqueKey>
34
+
35
+ <!-- field for the QueryParser to use when an explicit fieldname is absent -->
36
+ <defaultSearchField>name</defaultSearchField>
37
+
38
+ <!-- SolrQueryParser configuration: defaultOperator="AND|OR" -->
39
+ <solrQueryParser defaultOperator="OR"/>
40
+ </schema>
41
+
@@ -0,0 +1,40 @@
1
+ <?xml version="1.0" encoding="UTF-8" ?>
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
+ <!--
20
+ This is a stripped down config file used for a simple example...
21
+ It is *not* a good example to work from.
22
+ -->
23
+ <config>
24
+ <updateHandler class="solr.DirectUpdateHandler2" />
25
+
26
+ <requestDispatcher handleSelect="true" >
27
+ <requestParsers enableRemoteStreaming="false" multipartUploadLimitInKB="2048" />
28
+ </requestDispatcher>
29
+
30
+ <requestHandler name="standard" class="solr.StandardRequestHandler" default="true" />
31
+ <requestHandler name="/update" class="solr.XmlUpdateRequestHandler" />
32
+ <requestHandler name="/admin/" class="org.apache.solr.handler.admin.AdminHandlers" />
33
+
34
+ <!-- config for the admin interface -->
35
+ <admin>
36
+ <defaultQuery>solr</defaultQuery>
37
+ </admin>
38
+
39
+ </config>
40
+
@@ -0,0 +1,41 @@
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="example core one" version="1.1">
20
+ <types>
21
+ <fieldtype name="string" class="solr.StrField" sortMissingLast="true" omitNorms="true"/>
22
+ </types>
23
+
24
+ <fields>
25
+ <!-- general -->
26
+ <field name="id" type="string" indexed="true" stored="true" multiValued="false" required="true"/>
27
+ <field name="type" type="string" indexed="true" stored="true" multiValued="false" />
28
+ <field name="name" type="string" indexed="true" stored="true" multiValued="false" />
29
+ <field name="core1" type="string" indexed="true" stored="true" multiValued="false" />
30
+ </fields>
31
+
32
+ <!-- field to use to determine and enforce document uniqueness. -->
33
+ <uniqueKey>id</uniqueKey>
34
+
35
+ <!-- field for the QueryParser to use when an explicit fieldname is absent -->
36
+ <defaultSearchField>name</defaultSearchField>
37
+
38
+ <!-- SolrQueryParser configuration: defaultOperator="AND|OR" -->
39
+ <solrQueryParser defaultOperator="OR"/>
40
+ </schema>
41
+
@@ -0,0 +1,40 @@
1
+ <?xml version="1.0" encoding="UTF-8" ?>
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
+ <!--
20
+ This is a stripped down config file used for a simple example...
21
+ It is *not* a good example to work from.
22
+ -->
23
+ <config>
24
+ <updateHandler class="solr.DirectUpdateHandler2" />
25
+
26
+ <requestDispatcher handleSelect="true" >
27
+ <requestParsers enableRemoteStreaming="false" multipartUploadLimitInKB="2048" />
28
+ </requestDispatcher>
29
+
30
+ <requestHandler name="standard" class="solr.StandardRequestHandler" default="true" />
31
+ <requestHandler name="/update" class="solr.XmlUpdateRequestHandler" />
32
+ <requestHandler name="/admin/" class="org.apache.solr.handler.admin.AdminHandlers" />
33
+
34
+ <!-- config for the admin interface -->
35
+ <admin>
36
+ <defaultQuery>solr</defaultQuery>
37
+ </admin>
38
+
39
+ </config>
40
+
@@ -0,0 +1,34 @@
1
+ <!--
2
+ Licensed to the Apache Software Foundation (ASF) under one or more
3
+ contributor license agreements. See the NOTICE file distributed with
4
+ this work for additional information regarding copyright ownership.
5
+ The ASF licenses this file to You under the Apache License, Version 2.0
6
+ (the "License"); you may not use this file except in compliance with
7
+ the License. You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+ -->
17
+
18
+ <add>
19
+
20
+ <doc>
21
+ <field name="id">F8V7067-APL-KIT</field>
22
+ <field name="name">Belkin Mobile Power Cord for iPod w/ Dock</field>
23
+ </doc>
24
+
25
+ <doc>
26
+ <field name="id">IW-02</field>
27
+ <field name="name">iPod &amp; iPod Mini USB 2.0 Cable</field>
28
+ </doc>
29
+
30
+
31
+ </add>
32
+
33
+
34
+
@@ -0,0 +1,22 @@
1
+ <!--
2
+ Licensed to the Apache Software Foundation (ASF) under one or more
3
+ contributor license agreements. See the NOTICE file distributed with
4
+ this work for additional information regarding copyright ownership.
5
+ The ASF licenses this file to You under the Apache License, Version 2.0
6
+ (the "License"); you may not use this file except in compliance with
7
+ the License. You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+ -->
17
+
18
+ <add><doc>
19
+ <field name="id">MA147LL/A</field>
20
+ <field name="name">Apple 60 GB iPod with Video Playback Black</field>
21
+
22
+ </doc></add>
@@ -0,0 +1,35 @@
1
+ <?xml version="1.0" encoding="UTF-8" ?>
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
+ <!--
20
+ All (relative) paths are relative to the installation path
21
+
22
+ persistent: Save changes made via the API to this file
23
+ sharedLib: path to a lib directory that will be shared across all cores
24
+ -->
25
+ <solr persistent="false">
26
+
27
+ <!--
28
+ adminPath: RequestHandler path to manage cores.
29
+ If 'null' (or absent), cores will not be manageable via request handler
30
+ -->
31
+ <cores adminPath="/admin/cores">
32
+ <core name="core0" instanceDir="core0" />
33
+ <core name="core1" instanceDir="core1" />
34
+ </cores>
35
+ </solr>
@@ -0,0 +1,54 @@
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
+ Example "Solr Home" Directory
18
+ =============================
19
+
20
+ This directory is provided as an example of what a "Solr Home" directory
21
+ should look like.
22
+
23
+ It's not strictly necessary that you copy all of the files in this
24
+ directory when setting up a new instance of Solr, but it is recommended.
25
+
26
+
27
+ Basic Directory Structure
28
+ -------------------------
29
+
30
+ The Solr Home directory typically contains the following subdirectories...
31
+
32
+ conf/
33
+ This directory is mandatory and must contain your solrconfig.xml
34
+ and schema.xml. Any other optional configuration files would also
35
+ be kept here.
36
+
37
+ data/
38
+ This directory is the default location where Solr will keep your
39
+ index, and is used by the replication scripts for dealing with
40
+ snapshots. You can override this location in the solrconfig.xml
41
+ and scripts.conf files. Solr will create this directory if it
42
+ does not already exist.
43
+
44
+ lib/
45
+ This directory is optional. If it exists, Solr will load any Jars
46
+ found in this directory and use them to resolve any "plugins"
47
+ specified in your solrconfig.xml or schema.xml (ie: Analyzers,
48
+ Request Handlers, etc...). Alternatively you can use the <lib>
49
+ syntax in solrconfig.xml to direct Solr to your plugins. See the
50
+ example solrconfig.xml file for details.
51
+
52
+ bin/
53
+ This directory is optional. It is the default location used for
54
+ keeping the replication scripts.
@@ -0,0 +1,31 @@
1
+ <!--
2
+ Licensed to the Apache Software Foundation (ASF) under one or more
3
+ contributor license agreements. See the NOTICE file distributed with
4
+ this work for additional information regarding copyright ownership.
5
+ The ASF licenses this file to You under the Apache License, Version 2.0
6
+ (the "License"); you may not use this file except in compliance with
7
+ the License. You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+ -->
17
+
18
+ <!-- The content of this page will be statically included into the top
19
+ of the admin page. Uncomment this as an example to see there the content
20
+ will show up.
21
+
22
+ <hr>
23
+ <i>This line will appear before the first table</i>
24
+ <tr>
25
+ <td colspan="2">
26
+ This row will be appended to the end of the first table
27
+ </td>
28
+ </tr>
29
+ <hr>
30
+
31
+ -->
@@ -0,0 +1,36 @@
1
+ <?xml version="1.0" encoding="UTF-8" ?>
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
+ <!-- If this file is found in the config directory, it will only be
20
+ loaded once at startup. If it is found in Solr's data
21
+ directory, it will be re-loaded every commit.
22
+ -->
23
+
24
+ <elevate>
25
+ <query text="foo bar">
26
+ <doc id="1" />
27
+ <doc id="2" />
28
+ <doc id="3" />
29
+ </query>
30
+
31
+ <query text="ipod">
32
+ <doc id="MA147LL/A" /> <!-- put the actual ipod at the top -->
33
+ <doc id="IW-02" exclude="true" /> <!-- exclude this cable -->
34
+ </query>
35
+
36
+ </elevate>