outoftime-sunspot 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (100) hide show
  1. data/History.txt +7 -0
  2. data/Manifest.txt +104 -0
  3. data/PostInstall.txt +7 -0
  4. data/README.rdoc +115 -0
  5. data/Rakefile +27 -0
  6. data/config/hoe.rb +74 -0
  7. data/config/requirements.rb +15 -0
  8. data/lib/light_config.rb +40 -0
  9. data/lib/sunspot/adapters.rb +54 -0
  10. data/lib/sunspot/conditions.rb +50 -0
  11. data/lib/sunspot/conditions_builder.rb +37 -0
  12. data/lib/sunspot/configuration.rb +17 -0
  13. data/lib/sunspot/field.rb +108 -0
  14. data/lib/sunspot/field_builder.rb +37 -0
  15. data/lib/sunspot/indexer.rb +65 -0
  16. data/lib/sunspot/query.rb +115 -0
  17. data/lib/sunspot/query_builder.rb +30 -0
  18. data/lib/sunspot/restriction.rb +72 -0
  19. data/lib/sunspot/scope_builder.rb +33 -0
  20. data/lib/sunspot/search.rb +83 -0
  21. data/lib/sunspot/session.rb +43 -0
  22. data/lib/sunspot/type.rb +62 -0
  23. data/lib/sunspot/util.rb +13 -0
  24. data/lib/sunspot/version.rb +10 -0
  25. data/lib/sunspot.rb +50 -0
  26. data/setup.rb +1585 -0
  27. data/solr/README.txt +36 -0
  28. data/solr/etc/jetty.xml +206 -0
  29. data/solr/etc/webdefault.xml +379 -0
  30. data/solr/exampledocs/books.csv +11 -0
  31. data/solr/exampledocs/hd.xml +46 -0
  32. data/solr/exampledocs/ipod_other.xml +50 -0
  33. data/solr/exampledocs/ipod_video.xml +35 -0
  34. data/solr/exampledocs/mem.xml +58 -0
  35. data/solr/exampledocs/monitor.xml +31 -0
  36. data/solr/exampledocs/monitor2.xml +30 -0
  37. data/solr/exampledocs/mp500.xml +39 -0
  38. data/solr/exampledocs/post.jar +0 -0
  39. data/solr/exampledocs/post.sh +28 -0
  40. data/solr/exampledocs/sd500.xml +33 -0
  41. data/solr/exampledocs/solr.xml +38 -0
  42. data/solr/exampledocs/spellchecker.xml +58 -0
  43. data/solr/exampledocs/utf8-example.xml +42 -0
  44. data/solr/exampledocs/vidcard.xml +52 -0
  45. data/solr/lib/jetty-6.1.3.jar +0 -0
  46. data/solr/lib/jetty-util-6.1.3.jar +0 -0
  47. data/solr/lib/jsp-2.1/ant-1.6.5.jar +0 -0
  48. data/solr/lib/jsp-2.1/core-3.1.1.jar +0 -0
  49. data/solr/lib/jsp-2.1/jsp-2.1.jar +0 -0
  50. data/solr/lib/jsp-2.1/jsp-api-2.1.jar +0 -0
  51. data/solr/lib/servlet-api-2.5-6.1.3.jar +0 -0
  52. data/solr/solr/README.txt +52 -0
  53. data/solr/solr/bin/abc +176 -0
  54. data/solr/solr/bin/abo +176 -0
  55. data/solr/solr/bin/backup +108 -0
  56. data/solr/solr/bin/backupcleaner +142 -0
  57. data/solr/solr/bin/commit +128 -0
  58. data/solr/solr/bin/optimize +129 -0
  59. data/solr/solr/bin/readercycle +129 -0
  60. data/solr/solr/bin/rsyncd-disable +77 -0
  61. data/solr/solr/bin/rsyncd-enable +76 -0
  62. data/solr/solr/bin/rsyncd-start +145 -0
  63. data/solr/solr/bin/rsyncd-stop +105 -0
  64. data/solr/solr/bin/scripts-util +83 -0
  65. data/solr/solr/bin/snapcleaner +148 -0
  66. data/solr/solr/bin/snapinstaller +168 -0
  67. data/solr/solr/bin/snappuller +248 -0
  68. data/solr/solr/bin/snappuller-disable +77 -0
  69. data/solr/solr/bin/snappuller-enable +77 -0
  70. data/solr/solr/bin/snapshooter +109 -0
  71. data/solr/solr/conf/admin-extra.html +31 -0
  72. data/solr/solr/conf/protwords.txt +21 -0
  73. data/solr/solr/conf/schema.xml +231 -0
  74. data/solr/solr/conf/scripts.conf +24 -0
  75. data/solr/solr/conf/solrconfig.xml +394 -0
  76. data/solr/solr/conf/stopwords.txt +57 -0
  77. data/solr/solr/conf/synonyms.txt +31 -0
  78. data/solr/start.jar +0 -0
  79. data/solr/webapps/solr.war +0 -0
  80. data/tasks/deployment.rake +34 -0
  81. data/tasks/environment.rake +7 -0
  82. data/tasks/rcov.rake +6 -0
  83. data/tasks/solr.rake +12 -0
  84. data/tasks/website.rake +17 -0
  85. data/test/api/test_build_search.rb +216 -0
  86. data/test/api/test_helper.rb +4 -0
  87. data/test/api/test_indexer.rb +110 -0
  88. data/test/api/test_retrieve_search.rb +114 -0
  89. data/test/api/test_session.rb +46 -0
  90. data/test/custom_expectation.rb +53 -0
  91. data/test/integration/test_field_types.rb +62 -0
  92. data/test/integration/test_helper.rb +1 -0
  93. data/test/integration/test_keyword_search.rb +32 -0
  94. data/test/integration/test_pagination.rb +32 -0
  95. data/test/mocks/base_class.rb +2 -0
  96. data/test/mocks/comment.rb +28 -0
  97. data/test/mocks/mock_adapter.rb +25 -0
  98. data/test/mocks/post.rb +41 -0
  99. data/test/test_helper.rb +31 -0
  100. metadata +191 -0
@@ -0,0 +1,46 @@
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">SP2514N</field>
21
+ <field name="name">Samsung SpinPoint P120 SP2514N - hard drive - 250 GB - ATA-133</field>
22
+ <field name="manu">Samsung Electronics Co. Ltd.</field>
23
+ <field name="cat">electronics</field>
24
+ <field name="cat">hard drive</field>
25
+ <field name="features">7200RPM, 8MB cache, IDE Ultra ATA-133</field>
26
+ <field name="features">NoiseGuard, SilentSeek technology, Fluid Dynamic Bearing (FDB) motor</field>
27
+ <field name="price">92</field>
28
+ <field name="popularity">6</field>
29
+ <field name="inStock">true</field>
30
+ </doc>
31
+
32
+ <doc>
33
+ <field name="id">6H500F0</field>
34
+ <field name="name">Maxtor DiamondMax 11 - hard drive - 500 GB - SATA-300</field>
35
+ <field name="manu">Maxtor Corp.</field>
36
+ <field name="cat">electronics</field>
37
+ <field name="cat">hard drive</field>
38
+ <field name="features">SATA 3.0Gb/s, NCQ</field>
39
+ <field name="features">8.5ms seek</field>
40
+ <field name="features">16MB cache</field>
41
+ <field name="price">350</field>
42
+ <field name="popularity">6</field>
43
+ <field name="inStock">true</field>
44
+ </doc>
45
+ </add>
46
+
@@ -0,0 +1,50 @@
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
+ <field name="manu">Belkin</field>
24
+ <field name="cat">electronics</field>
25
+ <field name="cat">connector</field>
26
+ <field name="features">car power adapter, white</field>
27
+ <field name="weight">4</field>
28
+ <field name="price">19.95</field>
29
+ <field name="popularity">1</field>
30
+ <field name="inStock">false</field>
31
+ </doc>
32
+
33
+ <doc>
34
+ <field name="id">IW-02</field>
35
+ <field name="name">iPod &amp; iPod Mini USB 2.0 Cable</field>
36
+ <field name="manu">Belkin</field>
37
+ <field name="cat">electronics</field>
38
+ <field name="cat">connector</field>
39
+ <field name="features">car power adapter for iPod, white</field>
40
+ <field name="weight">2</field>
41
+ <field name="price">11.50</field>
42
+ <field name="popularity">1</field>
43
+ <field name="inStock">false</field>
44
+ </doc>
45
+
46
+
47
+ </add>
48
+
49
+
50
+
@@ -0,0 +1,35 @@
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
+ <field name="manu">Apple Computer Inc.</field>
22
+ <field name="cat">electronics</field>
23
+ <field name="cat">music</field>
24
+ <field name="features">iTunes, Podcasts, Audiobooks</field>
25
+ <field name="features">Stores up to 15,000 songs, 25,000 photos, or 150 hours of video</field>
26
+ <field name="features">2.5-inch, 320x240 color TFT LCD display with LED backlight</field>
27
+ <field name="features">Up to 20 hours of battery life</field>
28
+ <field name="features">Plays AAC, MP3, WAV, AIFF, Audible, Apple Lossless, H.264 video</field>
29
+ <field name="features">Notes, Calendar, Phone book, Hold button, Date display, Photo wallet, Built-in games, JPEG photo playback, Upgradeable firmware, USB 2.0 compatibility, Playback speed control, Rechargeable capability, Battery level indication</field>
30
+ <field name="includes">earbud headphones, USB cable</field>
31
+ <field name="weight">5.5</field>
32
+ <field name="price">399.00</field>
33
+ <field name="popularity">10</field>
34
+ <field name="inStock">true</field>
35
+ </doc></add>
@@ -0,0 +1,58 @@
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">TWINX2048-3200PRO</field>
21
+ <field name="name">CORSAIR XMS 2GB (2 x 1GB) 184-Pin DDR SDRAM Unbuffered DDR 400 (PC 3200) Dual Channel Kit System Memory - Retail</field>
22
+ <field name="manu">Corsair Microsystems Inc.</field>
23
+ <field name="cat">electronics</field>
24
+ <field name="cat">memory</field>
25
+ <field name="features">CAS latency 2, 2-3-3-6 timing, 2.75v, unbuffered, heat-spreader</field>
26
+ <field name="price">185</field>
27
+ <field name="popularity">5</field>
28
+ <field name="inStock">true</field>
29
+ </doc>
30
+
31
+ <doc>
32
+ <field name="id">VS1GB400C3</field>
33
+ <field name="name">CORSAIR ValueSelect 1GB 184-Pin DDR SDRAM Unbuffered DDR 400 (PC 3200) System Memory - Retail</field>
34
+ <field name="manu">Corsair Microsystems Inc.</field>
35
+ <field name="cat">electronics</field>
36
+ <field name="cat">memory</field>
37
+ <field name="price">74.99</field>
38
+ <field name="popularity">7</field>
39
+ <field name="inStock">true</field>
40
+ </doc>
41
+
42
+ <doc>
43
+ <field name="id">VDBDB1A16</field>
44
+ <field name="name">A-DATA V-Series 1GB 184-Pin DDR SDRAM Unbuffered DDR 400 (PC 3200) System Memory - OEM</field>
45
+ <field name="manu">A-DATA Technology Inc.</field>
46
+ <field name="cat">electronics</field>
47
+ <field name="cat">memory</field>
48
+ <field name="features">CAS latency 3, 2.7v</field>
49
+ <!-- note: price is missing on this one -->
50
+ <field name="popularity">5</field>
51
+ <field name="inStock">true</field>
52
+
53
+ </doc>
54
+
55
+
56
+
57
+ </add>
58
+
@@ -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
+ <add><doc>
19
+ <field name="id">3007WFP</field>
20
+ <field name="name">Dell Widescreen UltraSharp 3007WFP</field>
21
+ <field name="manu">Dell, Inc.</field>
22
+ <field name="cat">electronics</field>
23
+ <field name="cat">monitor</field>
24
+ <field name="features">30" TFT active matrix LCD, 2560 x 1600, .25mm dot pitch, 700:1 contrast</field>
25
+ <field name="includes">USB cable</field>
26
+ <field name="weight">401.6</field>
27
+ <field name="price">2199</field>
28
+ <field name="popularity">6</field>
29
+ <field name="inStock">true</field>
30
+ </doc></add>
31
+
@@ -0,0 +1,30 @@
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">VA902B</field>
20
+ <field name="name">ViewSonic VA902B - flat panel display - TFT - 19"</field>
21
+ <field name="manu">ViewSonic Corp.</field>
22
+ <field name="cat">electronics</field>
23
+ <field name="cat">monitor</field>
24
+ <field name="features">19" TFT active matrix LCD, 8ms response time, 1280 x 1024 native resolution</field>
25
+ <field name="weight">190.4</field>
26
+ <field name="price">279.95</field>
27
+ <field name="popularity">6</field>
28
+ <field name="inStock">true</field>
29
+ </doc></add>
30
+
@@ -0,0 +1,39 @@
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">0579B002</field>
20
+ <field name="name">Canon PIXMA MP500 All-In-One Photo Printer</field>
21
+ <field name="manu">Canon Inc.</field>
22
+ <field name="cat">electronics</field>
23
+ <field name="cat">multifunction printer</field>
24
+ <field name="cat">printer</field>
25
+ <field name="cat">scanner</field>
26
+ <field name="cat">copier</field>
27
+ <field name="features">Multifunction ink-jet color photo printer</field>
28
+ <field name="features">Flatbed scanner, optical scan resolution of 1,200 x 2,400 dpi</field>
29
+ <field name="features">2.5" color LCD preview screen</field>
30
+ <field name="features">Duplex Copying</field>
31
+ <field name="features">Printing speed up to 29ppm black, 19ppm color</field>
32
+ <field name="features">Hi-Speed USB</field>
33
+ <field name="features">memory card: CompactFlash, Micro Drive, SmartMedia, Memory Stick, Memory Stick Pro, SD Card, and MultiMediaCard</field>
34
+ <field name="weight">352</field>
35
+ <field name="price">179.99</field>
36
+ <field name="popularity">6</field>
37
+ <field name="inStock">true</field>
38
+ </doc></add>
39
+
Binary file
@@ -0,0 +1,28 @@
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
+ FILES=$*
18
+ URL=http://localhost:8983/solr/update
19
+
20
+ for f in $FILES; do
21
+ echo Posting file $f to $URL
22
+ curl $URL --data-binary @$f -H 'Content-type:text/xml; charset=utf-8'
23
+ echo
24
+ done
25
+
26
+ #send the commit command to make sure all the changes are flushed and visible
27
+ curl $URL --data-binary '<commit/>' -H 'Content-type:text/xml; charset=utf-8'
28
+ echo
@@ -0,0 +1,33 @@
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">9885A004</field>
20
+ <field name="name">Canon PowerShot SD500</field>
21
+ <field name="manu">Canon Inc.</field>
22
+ <field name="cat">electronics</field>
23
+ <field name="cat">camera</field>
24
+ <field name="features">3x zoop, 7.1 megapixel Digital ELPH</field>
25
+ <field name="features">movie clips up to 640x480 @30 fps</field>
26
+ <field name="features">2.0" TFT LCD, 118,000 pixels</field>
27
+ <field name="features">built in flash, red-eye reduction</field>
28
+ <field name="includes">32MB SD card, USB cable, AV cable, battery</field>
29
+ <field name="weight">6.4</field>
30
+ <field name="price">329.95</field>
31
+ <field name="popularity">7</field>
32
+ <field name="inStock">true</field>
33
+ </doc></add>
@@ -0,0 +1,38 @@
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">SOLR1000</field>
21
+ <field name="name">Solr, the Enterprise Search Server</field>
22
+ <field name="manu">Apache Software Foundation</field>
23
+ <field name="cat">software</field>
24
+ <field name="cat">search</field>
25
+ <field name="features">Advanced Full-Text Search Capabilities using Lucene</field>
26
+ <field name="features">Optimizied for High Volume Web Traffic</field>
27
+ <field name="features">Standards Based Open Interfaces - XML and HTTP</field>
28
+ <field name="features">Comprehensive HTML Administration Interfaces</field>
29
+ <field name="features">Scalability - Efficient Replication to other Solr Search Servers</field>
30
+ <field name="features">Flexible and Adaptable with XML configuration and Schema</field>
31
+ <field name="features">Good unicode support: h&#xE9;llo (hello with an accent over the e)</field>
32
+ <field name="price">0</field>
33
+ <field name="popularity">10</field>
34
+ <field name="inStock">true</field>
35
+ <field name="incubationdate_dt">2006-01-17T00:00:00.000Z</field>
36
+ </doc>
37
+ </add>
38
+
@@ -0,0 +1,58 @@
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
+ <add>
18
+ <doc>
19
+ <field name="id">1</field>
20
+ <field name="word">ipod</field>
21
+ </doc>
22
+ <doc>
23
+ <field name="id">2</field>
24
+ <field name="word">ipod nano</field>
25
+ </doc>
26
+ <doc>
27
+ <field name="id">3</field>
28
+ <field name="word">ipod video</field>
29
+ </doc>
30
+ <doc>
31
+ <field name="id">4</field>
32
+ <field name="word">ipod shuffle</field>
33
+ </doc>
34
+ <doc>
35
+ <field name="id">5</field>
36
+ <field name="word">wii</field>
37
+ </doc>
38
+ <doc>
39
+ <field name="id">6</field>
40
+ <field name="word">blackberry</field>
41
+ </doc>
42
+ <doc>
43
+ <field name="id">7</field>
44
+ <field name="word">blackjack</field>
45
+ </doc>
46
+ <doc>
47
+ <field name="id">8</field>
48
+ <field name="word">creative</field>
49
+ </doc>
50
+ <doc>
51
+ <field name="id">9</field>
52
+ <field name="word">creative labs</field>
53
+ </doc>
54
+ <doc>
55
+ <field name="id">10</field>
56
+ <field name="word">creative zen</field>
57
+ </doc>
58
+ </add>
@@ -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,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,52 @@
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...)
49
+
50
+ bin/
51
+ This directory is optional. It is the default location used for
52
+ keeping the replication scripts.