acts_as_solr_reloaded 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (197) hide show
  1. data/LICENSE +22 -0
  2. data/README.markdown +64 -0
  3. data/README.rdoc +93 -0
  4. data/Rakefile +71 -0
  5. data/TESTING_THE_PLUGIN +25 -0
  6. data/VERSION +1 -0
  7. data/config/solr.yml +14 -0
  8. data/config/solr_environment.rb +35 -0
  9. data/generators/dynamic_attributes_migration/dynamic_attributes_migration_generator.rb +7 -0
  10. data/generators/dynamic_attributes_migration/templates/migration.rb +15 -0
  11. data/generators/local_migration/local_migration_generator.rb +7 -0
  12. data/generators/local_migration/templates/migration.rb +16 -0
  13. data/lib/acts_as_solr.rb +65 -0
  14. data/lib/acts_as_solr/acts_methods.rb +363 -0
  15. data/lib/acts_as_solr/class_methods.rb +240 -0
  16. data/lib/acts_as_solr/common_methods.rb +89 -0
  17. data/lib/acts_as_solr/deprecation.rb +61 -0
  18. data/lib/acts_as_solr/dynamic_attribute.rb +3 -0
  19. data/lib/acts_as_solr/instance_methods.rb +194 -0
  20. data/lib/acts_as_solr/lazy_document.rb +18 -0
  21. data/lib/acts_as_solr/local.rb +4 -0
  22. data/lib/acts_as_solr/parser_methods.rb +248 -0
  23. data/lib/acts_as_solr/search_results.rb +74 -0
  24. data/lib/acts_as_solr/solr_fixtures.rb +13 -0
  25. data/lib/acts_as_solr/tasks.rb +10 -0
  26. data/lib/acts_as_solr/tasks/database.rake +16 -0
  27. data/lib/acts_as_solr/tasks/solr.rake +142 -0
  28. data/lib/acts_as_solr/tasks/test.rake +5 -0
  29. data/lib/solr.rb +26 -0
  30. data/lib/solr/connection.rb +177 -0
  31. data/lib/solr/document.rb +75 -0
  32. data/lib/solr/exception.rb +13 -0
  33. data/lib/solr/field.rb +36 -0
  34. data/lib/solr/importer.rb +19 -0
  35. data/lib/solr/importer/array_mapper.rb +26 -0
  36. data/lib/solr/importer/delimited_file_source.rb +38 -0
  37. data/lib/solr/importer/hpricot_mapper.rb +27 -0
  38. data/lib/solr/importer/mapper.rb +51 -0
  39. data/lib/solr/importer/solr_source.rb +41 -0
  40. data/lib/solr/importer/xpath_mapper.rb +35 -0
  41. data/lib/solr/indexer.rb +52 -0
  42. data/lib/solr/request.rb +26 -0
  43. data/lib/solr/request/add_document.rb +58 -0
  44. data/lib/solr/request/base.rb +36 -0
  45. data/lib/solr/request/commit.rb +29 -0
  46. data/lib/solr/request/delete.rb +48 -0
  47. data/lib/solr/request/dismax.rb +46 -0
  48. data/lib/solr/request/index_info.rb +22 -0
  49. data/lib/solr/request/modify_document.rb +46 -0
  50. data/lib/solr/request/optimize.rb +19 -0
  51. data/lib/solr/request/ping.rb +36 -0
  52. data/lib/solr/request/select.rb +54 -0
  53. data/lib/solr/request/spellcheck.rb +30 -0
  54. data/lib/solr/request/standard.rb +406 -0
  55. data/lib/solr/request/update.rb +23 -0
  56. data/lib/solr/response.rb +27 -0
  57. data/lib/solr/response/add_document.rb +17 -0
  58. data/lib/solr/response/base.rb +42 -0
  59. data/lib/solr/response/commit.rb +15 -0
  60. data/lib/solr/response/delete.rb +13 -0
  61. data/lib/solr/response/dismax.rb +8 -0
  62. data/lib/solr/response/index_info.rb +26 -0
  63. data/lib/solr/response/modify_document.rb +17 -0
  64. data/lib/solr/response/optimize.rb +14 -0
  65. data/lib/solr/response/ping.rb +26 -0
  66. data/lib/solr/response/ruby.rb +42 -0
  67. data/lib/solr/response/select.rb +17 -0
  68. data/lib/solr/response/spellcheck.rb +20 -0
  69. data/lib/solr/response/standard.rb +65 -0
  70. data/lib/solr/response/xml.rb +39 -0
  71. data/lib/solr/solrtasks.rb +27 -0
  72. data/lib/solr/util.rb +32 -0
  73. data/lib/solr/xml.rb +44 -0
  74. data/solr/README.txt +36 -0
  75. data/solr/etc/jetty.xml +212 -0
  76. data/solr/etc/webdefault.xml +379 -0
  77. data/solr/exampledocs/books.csv +11 -0
  78. data/solr/exampledocs/hd.xml +46 -0
  79. data/solr/exampledocs/ipod_other.xml +50 -0
  80. data/solr/exampledocs/ipod_video.xml +35 -0
  81. data/solr/exampledocs/locales.xml +16 -0
  82. data/solr/exampledocs/mem.xml +58 -0
  83. data/solr/exampledocs/monitor.xml +31 -0
  84. data/solr/exampledocs/monitor2.xml +30 -0
  85. data/solr/exampledocs/mp500.xml +39 -0
  86. data/solr/exampledocs/post.jar +0 -0
  87. data/solr/exampledocs/post.sh +28 -0
  88. data/solr/exampledocs/sd500.xml +33 -0
  89. data/solr/exampledocs/solr.xml +38 -0
  90. data/solr/exampledocs/spellchecker.xml +58 -0
  91. data/solr/exampledocs/test_utf8.sh +83 -0
  92. data/solr/exampledocs/utf8-example.xml +42 -0
  93. data/solr/exampledocs/vidcard.xml +52 -0
  94. data/solr/lib/jetty-6.1.3.jar +0 -0
  95. data/solr/lib/jetty-util-6.1.3.jar +0 -0
  96. data/solr/lib/jsp-2.1/ant-1.6.5.jar +0 -0
  97. data/solr/lib/jsp-2.1/core-3.1.1.jar +0 -0
  98. data/solr/lib/jsp-2.1/jsp-2.1.jar +0 -0
  99. data/solr/lib/jsp-2.1/jsp-api-2.1.jar +0 -0
  100. data/solr/lib/servlet-api-2.5-6.1.3.jar +0 -0
  101. data/solr/multicore/README.txt +3 -0
  102. data/solr/multicore/core0/conf/schema.xml +41 -0
  103. data/solr/multicore/core0/conf/solrconfig.xml +40 -0
  104. data/solr/multicore/core1/conf/schema.xml +41 -0
  105. data/solr/multicore/core1/conf/solrconfig.xml +40 -0
  106. data/solr/multicore/exampledocs/ipod_other.xml +34 -0
  107. data/solr/multicore/exampledocs/ipod_video.xml +22 -0
  108. data/solr/multicore/solr.xml +35 -0
  109. data/solr/solr/README.txt +52 -0
  110. data/solr/solr/bin/abc +190 -0
  111. data/solr/solr/bin/abo +190 -0
  112. data/solr/solr/bin/backup +117 -0
  113. data/solr/solr/bin/backupcleaner +142 -0
  114. data/solr/solr/bin/commit +133 -0
  115. data/solr/solr/bin/optimize +134 -0
  116. data/solr/solr/bin/readercycle +129 -0
  117. data/solr/solr/bin/rsyncd-disable +77 -0
  118. data/solr/solr/bin/rsyncd-enable +76 -0
  119. data/solr/solr/bin/rsyncd-start +145 -0
  120. data/solr/solr/bin/rsyncd-stop +105 -0
  121. data/solr/solr/bin/scripts-util +99 -0
  122. data/solr/solr/bin/snapcleaner +154 -0
  123. data/solr/solr/bin/snapinstaller +198 -0
  124. data/solr/solr/bin/snappuller +269 -0
  125. data/solr/solr/bin/snappuller-disable +77 -0
  126. data/solr/solr/bin/snappuller-enable +77 -0
  127. data/solr/solr/bin/snapshooter +136 -0
  128. data/solr/solr/conf/admin-extra.html +31 -0
  129. data/solr/solr/conf/elevate.xml +36 -0
  130. data/solr/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
  131. data/solr/solr/conf/protwords.txt +21 -0
  132. data/solr/solr/conf/schema.xml +132 -0
  133. data/solr/solr/conf/scripts.conf +24 -0
  134. data/solr/solr/conf/solrconfig.xml +906 -0
  135. data/solr/solr/conf/spellings.txt +2 -0
  136. data/solr/solr/conf/stopwords.txt +58 -0
  137. data/solr/solr/conf/synonyms.txt +31 -0
  138. data/solr/solr/conf/xslt/example.xsl +132 -0
  139. data/solr/solr/conf/xslt/example_atom.xsl +67 -0
  140. data/solr/solr/conf/xslt/example_rss.xsl +66 -0
  141. data/solr/solr/conf/xslt/luke.xsl +337 -0
  142. data/solr/solr/lib/localsolr.jar +0 -0
  143. data/solr/solr/lib/lucene-spatial-2.9-dev.jar +0 -0
  144. data/solr/start.jar +0 -0
  145. data/solr/webapps/solr.war +0 -0
  146. data/test/config/solr.yml +2 -0
  147. data/test/db/connections/mysql/connection.rb +11 -0
  148. data/test/db/connections/sqlite/connection.rb +8 -0
  149. data/test/db/migrate/001_create_books.rb +15 -0
  150. data/test/db/migrate/002_create_movies.rb +12 -0
  151. data/test/db/migrate/003_create_categories.rb +11 -0
  152. data/test/db/migrate/004_create_electronics.rb +16 -0
  153. data/test/db/migrate/005_create_authors.rb +12 -0
  154. data/test/db/migrate/006_create_postings.rb +9 -0
  155. data/test/db/migrate/007_create_posts.rb +13 -0
  156. data/test/db/migrate/008_create_gadgets.rb +11 -0
  157. data/test/db/migrate/009_create_dynamic_attributes.rb +15 -0
  158. data/test/db/migrate/010_create_advertises.rb +13 -0
  159. data/test/db/migrate/011_create_locals.rb +15 -0
  160. data/test/db/test.db +0 -0
  161. data/test/fixtures/advertises.yml +12 -0
  162. data/test/fixtures/authors.yml +9 -0
  163. data/test/fixtures/books.yml +13 -0
  164. data/test/fixtures/categories.yml +7 -0
  165. data/test/fixtures/db_definitions/mysql.sql +41 -0
  166. data/test/fixtures/dynamic_attributes.yml +11 -0
  167. data/test/fixtures/electronics.yml +49 -0
  168. data/test/fixtures/locals.yml +9 -0
  169. data/test/fixtures/movies.yml +9 -0
  170. data/test/fixtures/postings.yml +10 -0
  171. data/test/functional/acts_as_solr_test.rb +463 -0
  172. data/test/functional/association_indexing_test.rb +37 -0
  173. data/test/functional/faceted_search_test.rb +163 -0
  174. data/test/functional/multi_solr_search_test.rb +57 -0
  175. data/test/models/advertise.rb +6 -0
  176. data/test/models/author.rb +10 -0
  177. data/test/models/book.rb +10 -0
  178. data/test/models/category.rb +8 -0
  179. data/test/models/dynamic_attribute.rb +7 -0
  180. data/test/models/electronic.rb +25 -0
  181. data/test/models/gadget.rb +9 -0
  182. data/test/models/local.rb +7 -0
  183. data/test/models/movie.rb +17 -0
  184. data/test/models/novel.rb +2 -0
  185. data/test/models/post.rb +3 -0
  186. data/test/models/posting.rb +11 -0
  187. data/test/test_helper.rb +56 -0
  188. data/test/unit/acts_methods_shoulda.rb +95 -0
  189. data/test/unit/class_methods_shoulda.rb +85 -0
  190. data/test/unit/common_methods_shoulda.rb +111 -0
  191. data/test/unit/instance_methods_shoulda.rb +372 -0
  192. data/test/unit/lazy_document_shoulda.rb +34 -0
  193. data/test/unit/parser_instance.rb +19 -0
  194. data/test/unit/parser_methods_shoulda.rb +338 -0
  195. data/test/unit/solr_instance.rb +74 -0
  196. data/test/unit/test_helper.rb +24 -0
  197. metadata +290 -0
@@ -0,0 +1,11 @@
1
+ id,cat,name,price,inStock,author_t,series_t,sequence_i,genre_s
2
+ 0553573403,book,A Game of Thrones,7.99,true,George R.R. Martin,"A Song of Ice and Fire",1,fantasy
3
+ 0553579908,book,A Clash of Kings,7.99,true,George R.R. Martin,"A Song of Ice and Fire",2,fantasy
4
+ 055357342X,book,A Storm of Swords,7.99,true,George R.R. Martin,"A Song of Ice and Fire",3,fantasy
5
+ 0553293354,book,Foundation,7.99,true,Isaac Asimov,Foundation Novels,1,scifi
6
+ 0812521390,book,The Black Company,6.99,false,Glen Cook,The Chronicles of The Black Company,1,fantasy
7
+ 0812550706,book,Ender's Game,6.99,true,Orson Scott Card,Ender,1,scifi
8
+ 0441385532,book,Jhereg,7.95,false,Steven Brust,Vlad Taltos,1,fantasy
9
+ 0380014300,book,Nine Princes In Amber,6.99,true,Roger Zelazny,the Chronicles of Amber,1,fantasy
10
+ 0805080481,book,The Book of Three,5.99,true,Lloyd Alexander,The Chronicles of Prydain,1,fantasy
11
+ 080508049X,book,The Black Cauldron,5.99,true,Lloyd Alexander,The Chronicles of Prydain,2,fantasy
@@ -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,16 @@
1
+ <add>
2
+ <doc>
3
+ <field name="id">01</field>
4
+ <field name="name_t">HOUSE01</field>
5
+ <field name="lat">39.36</field>
6
+ <field name="lng">-77.4027</field>
7
+ <field name="text_t">zxy</field>
8
+ </doc>
9
+ <doc>
10
+ <field name="id">02</field>
11
+ <field name="name_t">HOUSE02</field>
12
+ <field name="lat">38.36</field>
13
+ <field name="lng">-77.4027</field>
14
+ <field name="text_t">zxy</field>
15
+ </doc>
16
+ </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">Optimized 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>