acts_as_solr_reloaded 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +22 -0
- data/README.markdown +64 -0
- data/README.rdoc +93 -0
- data/Rakefile +71 -0
- data/TESTING_THE_PLUGIN +25 -0
- data/VERSION +1 -0
- data/config/solr.yml +14 -0
- data/config/solr_environment.rb +35 -0
- data/generators/dynamic_attributes_migration/dynamic_attributes_migration_generator.rb +7 -0
- data/generators/dynamic_attributes_migration/templates/migration.rb +15 -0
- data/generators/local_migration/local_migration_generator.rb +7 -0
- data/generators/local_migration/templates/migration.rb +16 -0
- data/lib/acts_as_solr.rb +65 -0
- data/lib/acts_as_solr/acts_methods.rb +363 -0
- data/lib/acts_as_solr/class_methods.rb +240 -0
- data/lib/acts_as_solr/common_methods.rb +89 -0
- data/lib/acts_as_solr/deprecation.rb +61 -0
- data/lib/acts_as_solr/dynamic_attribute.rb +3 -0
- data/lib/acts_as_solr/instance_methods.rb +194 -0
- data/lib/acts_as_solr/lazy_document.rb +18 -0
- data/lib/acts_as_solr/local.rb +4 -0
- data/lib/acts_as_solr/parser_methods.rb +248 -0
- data/lib/acts_as_solr/search_results.rb +74 -0
- data/lib/acts_as_solr/solr_fixtures.rb +13 -0
- data/lib/acts_as_solr/tasks.rb +10 -0
- data/lib/acts_as_solr/tasks/database.rake +16 -0
- data/lib/acts_as_solr/tasks/solr.rake +142 -0
- data/lib/acts_as_solr/tasks/test.rake +5 -0
- data/lib/solr.rb +26 -0
- data/lib/solr/connection.rb +177 -0
- data/lib/solr/document.rb +75 -0
- data/lib/solr/exception.rb +13 -0
- data/lib/solr/field.rb +36 -0
- data/lib/solr/importer.rb +19 -0
- data/lib/solr/importer/array_mapper.rb +26 -0
- data/lib/solr/importer/delimited_file_source.rb +38 -0
- data/lib/solr/importer/hpricot_mapper.rb +27 -0
- data/lib/solr/importer/mapper.rb +51 -0
- data/lib/solr/importer/solr_source.rb +41 -0
- data/lib/solr/importer/xpath_mapper.rb +35 -0
- data/lib/solr/indexer.rb +52 -0
- data/lib/solr/request.rb +26 -0
- data/lib/solr/request/add_document.rb +58 -0
- data/lib/solr/request/base.rb +36 -0
- data/lib/solr/request/commit.rb +29 -0
- data/lib/solr/request/delete.rb +48 -0
- data/lib/solr/request/dismax.rb +46 -0
- data/lib/solr/request/index_info.rb +22 -0
- data/lib/solr/request/modify_document.rb +46 -0
- data/lib/solr/request/optimize.rb +19 -0
- data/lib/solr/request/ping.rb +36 -0
- data/lib/solr/request/select.rb +54 -0
- data/lib/solr/request/spellcheck.rb +30 -0
- data/lib/solr/request/standard.rb +406 -0
- data/lib/solr/request/update.rb +23 -0
- data/lib/solr/response.rb +27 -0
- data/lib/solr/response/add_document.rb +17 -0
- data/lib/solr/response/base.rb +42 -0
- data/lib/solr/response/commit.rb +15 -0
- data/lib/solr/response/delete.rb +13 -0
- data/lib/solr/response/dismax.rb +8 -0
- data/lib/solr/response/index_info.rb +26 -0
- data/lib/solr/response/modify_document.rb +17 -0
- data/lib/solr/response/optimize.rb +14 -0
- data/lib/solr/response/ping.rb +26 -0
- data/lib/solr/response/ruby.rb +42 -0
- data/lib/solr/response/select.rb +17 -0
- data/lib/solr/response/spellcheck.rb +20 -0
- data/lib/solr/response/standard.rb +65 -0
- data/lib/solr/response/xml.rb +39 -0
- data/lib/solr/solrtasks.rb +27 -0
- data/lib/solr/util.rb +32 -0
- data/lib/solr/xml.rb +44 -0
- data/solr/README.txt +36 -0
- data/solr/etc/jetty.xml +212 -0
- data/solr/etc/webdefault.xml +379 -0
- data/solr/exampledocs/books.csv +11 -0
- data/solr/exampledocs/hd.xml +46 -0
- data/solr/exampledocs/ipod_other.xml +50 -0
- data/solr/exampledocs/ipod_video.xml +35 -0
- data/solr/exampledocs/locales.xml +16 -0
- data/solr/exampledocs/mem.xml +58 -0
- data/solr/exampledocs/monitor.xml +31 -0
- data/solr/exampledocs/monitor2.xml +30 -0
- data/solr/exampledocs/mp500.xml +39 -0
- data/solr/exampledocs/post.jar +0 -0
- data/solr/exampledocs/post.sh +28 -0
- data/solr/exampledocs/sd500.xml +33 -0
- data/solr/exampledocs/solr.xml +38 -0
- data/solr/exampledocs/spellchecker.xml +58 -0
- data/solr/exampledocs/test_utf8.sh +83 -0
- data/solr/exampledocs/utf8-example.xml +42 -0
- data/solr/exampledocs/vidcard.xml +52 -0
- data/solr/lib/jetty-6.1.3.jar +0 -0
- data/solr/lib/jetty-util-6.1.3.jar +0 -0
- data/solr/lib/jsp-2.1/ant-1.6.5.jar +0 -0
- data/solr/lib/jsp-2.1/core-3.1.1.jar +0 -0
- data/solr/lib/jsp-2.1/jsp-2.1.jar +0 -0
- data/solr/lib/jsp-2.1/jsp-api-2.1.jar +0 -0
- data/solr/lib/servlet-api-2.5-6.1.3.jar +0 -0
- data/solr/multicore/README.txt +3 -0
- data/solr/multicore/core0/conf/schema.xml +41 -0
- data/solr/multicore/core0/conf/solrconfig.xml +40 -0
- data/solr/multicore/core1/conf/schema.xml +41 -0
- data/solr/multicore/core1/conf/solrconfig.xml +40 -0
- data/solr/multicore/exampledocs/ipod_other.xml +34 -0
- data/solr/multicore/exampledocs/ipod_video.xml +22 -0
- data/solr/multicore/solr.xml +35 -0
- data/solr/solr/README.txt +52 -0
- data/solr/solr/bin/abc +190 -0
- data/solr/solr/bin/abo +190 -0
- data/solr/solr/bin/backup +117 -0
- data/solr/solr/bin/backupcleaner +142 -0
- data/solr/solr/bin/commit +133 -0
- data/solr/solr/bin/optimize +134 -0
- data/solr/solr/bin/readercycle +129 -0
- data/solr/solr/bin/rsyncd-disable +77 -0
- data/solr/solr/bin/rsyncd-enable +76 -0
- data/solr/solr/bin/rsyncd-start +145 -0
- data/solr/solr/bin/rsyncd-stop +105 -0
- data/solr/solr/bin/scripts-util +99 -0
- data/solr/solr/bin/snapcleaner +154 -0
- data/solr/solr/bin/snapinstaller +198 -0
- data/solr/solr/bin/snappuller +269 -0
- data/solr/solr/bin/snappuller-disable +77 -0
- data/solr/solr/bin/snappuller-enable +77 -0
- data/solr/solr/bin/snapshooter +136 -0
- data/solr/solr/conf/admin-extra.html +31 -0
- data/solr/solr/conf/elevate.xml +36 -0
- data/solr/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
- data/solr/solr/conf/protwords.txt +21 -0
- data/solr/solr/conf/schema.xml +132 -0
- data/solr/solr/conf/scripts.conf +24 -0
- data/solr/solr/conf/solrconfig.xml +906 -0
- data/solr/solr/conf/spellings.txt +2 -0
- data/solr/solr/conf/stopwords.txt +58 -0
- data/solr/solr/conf/synonyms.txt +31 -0
- data/solr/solr/conf/xslt/example.xsl +132 -0
- data/solr/solr/conf/xslt/example_atom.xsl +67 -0
- data/solr/solr/conf/xslt/example_rss.xsl +66 -0
- data/solr/solr/conf/xslt/luke.xsl +337 -0
- data/solr/solr/lib/localsolr.jar +0 -0
- data/solr/solr/lib/lucene-spatial-2.9-dev.jar +0 -0
- data/solr/start.jar +0 -0
- data/solr/webapps/solr.war +0 -0
- data/test/config/solr.yml +2 -0
- data/test/db/connections/mysql/connection.rb +11 -0
- data/test/db/connections/sqlite/connection.rb +8 -0
- data/test/db/migrate/001_create_books.rb +15 -0
- data/test/db/migrate/002_create_movies.rb +12 -0
- data/test/db/migrate/003_create_categories.rb +11 -0
- data/test/db/migrate/004_create_electronics.rb +16 -0
- data/test/db/migrate/005_create_authors.rb +12 -0
- data/test/db/migrate/006_create_postings.rb +9 -0
- data/test/db/migrate/007_create_posts.rb +13 -0
- data/test/db/migrate/008_create_gadgets.rb +11 -0
- data/test/db/migrate/009_create_dynamic_attributes.rb +15 -0
- data/test/db/migrate/010_create_advertises.rb +13 -0
- data/test/db/migrate/011_create_locals.rb +15 -0
- data/test/db/test.db +0 -0
- data/test/fixtures/advertises.yml +12 -0
- data/test/fixtures/authors.yml +9 -0
- data/test/fixtures/books.yml +13 -0
- data/test/fixtures/categories.yml +7 -0
- data/test/fixtures/db_definitions/mysql.sql +41 -0
- data/test/fixtures/dynamic_attributes.yml +11 -0
- data/test/fixtures/electronics.yml +49 -0
- data/test/fixtures/locals.yml +9 -0
- data/test/fixtures/movies.yml +9 -0
- data/test/fixtures/postings.yml +10 -0
- data/test/functional/acts_as_solr_test.rb +463 -0
- data/test/functional/association_indexing_test.rb +37 -0
- data/test/functional/faceted_search_test.rb +163 -0
- data/test/functional/multi_solr_search_test.rb +57 -0
- data/test/models/advertise.rb +6 -0
- data/test/models/author.rb +10 -0
- data/test/models/book.rb +10 -0
- data/test/models/category.rb +8 -0
- data/test/models/dynamic_attribute.rb +7 -0
- data/test/models/electronic.rb +25 -0
- data/test/models/gadget.rb +9 -0
- data/test/models/local.rb +7 -0
- data/test/models/movie.rb +17 -0
- data/test/models/novel.rb +2 -0
- data/test/models/post.rb +3 -0
- data/test/models/posting.rb +11 -0
- data/test/test_helper.rb +56 -0
- data/test/unit/acts_methods_shoulda.rb +95 -0
- data/test/unit/class_methods_shoulda.rb +85 -0
- data/test/unit/common_methods_shoulda.rb +111 -0
- data/test/unit/instance_methods_shoulda.rb +372 -0
- data/test/unit/lazy_document_shoulda.rb +34 -0
- data/test/unit/parser_instance.rb +19 -0
- data/test/unit/parser_methods_shoulda.rb +338 -0
- data/test/unit/solr_instance.rb +74 -0
- data/test/unit/test_helper.rb +24 -0
- metadata +290 -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¶ms=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: <nicetag/></field>
|
36
|
+
<field name="features">escaped ampersand: Bonnie & 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,52 @@
|
|
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
|
+
</doc>
|
35
|
+
<!-- yes, you can add more than one document at a time -->
|
36
|
+
<doc>
|
37
|
+
<field name="id">100-435805</field>
|
38
|
+
<field name="name">ATI Radeon X1900 XTX 512 MB PCIE Video Card</field>
|
39
|
+
<field name="manu">ATI Technologies</field>
|
40
|
+
<field name="cat">electronics</field>
|
41
|
+
<field name="cat">graphics card</field>
|
42
|
+
<field name="features">ATI RADEON X1900 GPU/VPU clocked at 650MHz</field>
|
43
|
+
<field name="features">512MB GDDR3 SDRAM clocked at 1.55GHz</field>
|
44
|
+
<field name="features">PCI Express x16</field>
|
45
|
+
<field name="features">dual DVI, HDTV, svideo, composite out</field>
|
46
|
+
<field name="features">OpenGL 2.0, DirectX 9.0</field>
|
47
|
+
<field name="weight">48</field>
|
48
|
+
<field name="price">649.99</field>
|
49
|
+
<field name="popularity">7</field>
|
50
|
+
<field name="inStock">false</field>
|
51
|
+
</doc>
|
52
|
+
</add>
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -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 & 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>
|