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,58 @@
1
+ # Licensed to the Apache Software Foundation (ASF) under one or more
2
+ # contributor license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright ownership.
4
+ # The ASF licenses this file to You under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with
6
+ # the License. You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+
16
+ #-----------------------------------------------------------------------
17
+ # a couple of test stopwords to test that the words are really being
18
+ # configured from this file:
19
+ stopworda
20
+ stopwordb
21
+
22
+ #Standard english stop words taken from Lucene's StopAnalyzer
23
+ a
24
+ an
25
+ and
26
+ are
27
+ as
28
+ at
29
+ be
30
+ but
31
+ by
32
+ for
33
+ if
34
+ in
35
+ into
36
+ is
37
+ it
38
+ no
39
+ not
40
+ of
41
+ on
42
+ or
43
+ s
44
+ such
45
+ t
46
+ that
47
+ the
48
+ their
49
+ then
50
+ there
51
+ these
52
+ they
53
+ this
54
+ to
55
+ was
56
+ will
57
+ with
58
+
@@ -0,0 +1,31 @@
1
+ # The ASF licenses this file to You under the Apache License, Version 2.0
2
+ # (the "License"); you may not use this file except in compliance with
3
+ # the License. You may obtain a copy of the License at
4
+ #
5
+ # http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software
8
+ # distributed under the License is distributed on an "AS IS" BASIS,
9
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10
+ # See the License for the specific language governing permissions and
11
+ # limitations under the License.
12
+
13
+ #-----------------------------------------------------------------------
14
+ #some test synonym mappings unlikely to appear in real input text
15
+ aaa => aaaa
16
+ bbb => bbbb1 bbbb2
17
+ ccc => cccc1,cccc2
18
+ a\=>a => b\=>b
19
+ a\,a => b\,b
20
+ fooaaa,baraaa,bazaaa
21
+
22
+ # Some synonym groups specific to this example
23
+ GB,gib,gigabyte,gigabytes
24
+ MB,mib,megabyte,megabytes
25
+ Television, Televisions, TV, TVs
26
+ #notice we use "gib" instead of "GiB" so any WordDelimiterFilter coming
27
+ #after us won't split it into two words.
28
+
29
+ # Synonym mappings can be used for spelling correction too
30
+ pixima => pixma
31
+
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <solr sharedLib="lib" persistent="true">
3
+ <cores adminPath="/admin/cores">
4
+ <core default="true" instanceDir="db" name="db"></core>
5
+ <core default="false" instanceDir="rss" name="rss"></core>
6
+ <core default="false" instanceDir="mail" name="mail"></core>
7
+ </cores>
8
+ </solr>
@@ -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,48 @@
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
+ <field name="manufacturedate_dt">2006-02-13T15:26:37Z</field>
31
+ </doc>
32
+
33
+ <doc>
34
+ <field name="id">6H500F0</field>
35
+ <field name="name">Maxtor DiamondMax 11 - hard drive - 500 GB - SATA-300</field>
36
+ <field name="manu">Maxtor Corp.</field>
37
+ <field name="cat">electronics</field>
38
+ <field name="cat">hard drive</field>
39
+ <field name="features">SATA 3.0Gb/s, NCQ</field>
40
+ <field name="features">8.5ms seek</field>
41
+ <field name="features">16MB cache</field>
42
+ <field name="price">350</field>
43
+ <field name="popularity">6</field>
44
+ <field name="inStock">true</field>
45
+ <field name="manufacturedate_dt">2006-02-13T15:26:37Z</field>
46
+ </doc>
47
+ </add>
48
+
@@ -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
+
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
+ <field name="manufacturedate_dt">2005-08-01T16:30:25Z</field>
32
+ </doc>
33
+
34
+ <doc>
35
+ <field name="id">IW-02</field>
36
+ <field name="name">iPod &amp; iPod Mini USB 2.0 Cable</field>
37
+ <field name="manu">Belkin</field>
38
+ <field name="cat">electronics</field>
39
+ <field name="cat">connector</field>
40
+ <field name="features">car power adapter for iPod, white</field>
41
+ <field name="weight">2</field>
42
+ <field name="price">11.50</field>
43
+ <field name="popularity">1</field>
44
+ <field name="inStock">false</field>
45
+ <field name="manufacturedate_dt">2006-02-14T23:55:59Z</field>
46
+ </doc>
47
+
48
+
49
+ </add>
50
+
51
+
52
+
@@ -0,0 +1,36 @@
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
+ <field name="manufacturedate_dt">2005-10-12T08:00:00Z</field>
36
+ </doc></add>
@@ -0,0 +1,60 @@
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
+ <field name="manufacturedate_dt">2006-02-13T15:26:37Z</field>
30
+ </doc>
31
+
32
+ <doc>
33
+ <field name="id">VS1GB400C3</field>
34
+ <field name="name">CORSAIR ValueSelect 1GB 184-Pin DDR SDRAM Unbuffered DDR 400 (PC 3200) System Memory - Retail</field>
35
+ <field name="manu">Corsair Microsystems Inc.</field>
36
+ <field name="cat">electronics</field>
37
+ <field name="cat">memory</field>
38
+ <field name="price">74.99</field>
39
+ <field name="popularity">7</field>
40
+ <field name="inStock">true</field>
41
+ <field name="manufacturedate_dt">2006-02-13T15:26:37Z</field>
42
+ </doc>
43
+
44
+ <doc>
45
+ <field name="id">VDBDB1A16</field>
46
+ <field name="name">A-DATA V-Series 1GB 184-Pin DDR SDRAM Unbuffered DDR 400 (PC 3200) System Memory - OEM</field>
47
+ <field name="manu">A-DATA Technology Inc.</field>
48
+ <field name="cat">electronics</field>
49
+ <field name="cat">memory</field>
50
+ <field name="features">CAS latency 3, 2.7v</field>
51
+ <!-- note: price & popularity is missing on this one -->
52
+ <field name="popularity">0</field>
53
+ <field name="inStock">true</field>
54
+ <field name="manufacturedate_dt">2006-02-13T15:26:37Z</field>
55
+ </doc>
56
+
57
+
58
+
59
+ </add>
60
+
@@ -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
+
@@ -0,0 +1,57 @@
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-payload</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
+ <field name="payloads">electronics|6.0 memory|3.0</field>
30
+ </doc>
31
+
32
+ <doc>
33
+ <field name="id">VS1GB400C3-payload</field>
34
+ <field name="name">CORSAIR ValueSelect 1GB 184-Pin DDR SDRAM Unbuffered DDR 400 (PC 3200) System Memory - Retail</field>
35
+ <field name="manu">Corsair Microsystems Inc.</field>
36
+ <field name="cat">electronics</field>
37
+ <field name="cat">memory</field>
38
+ <field name="price">74.99</field>
39
+ <field name="popularity">7</field>
40
+ <field name="inStock">true</field>
41
+ <field name="payloads">electronics|4.0 memory|2.0</field>
42
+ </doc>
43
+
44
+ <doc>
45
+ <field name="id">VDBDB1A16-payload</field>
46
+ <field name="name">A-DATA V-Series 1GB 184-Pin DDR SDRAM Unbuffered DDR 400 (PC 3200) System Memory - OEM</field>
47
+ <field name="manu">A-DATA Technology Inc.</field>
48
+ <field name="cat">electronics</field>
49
+ <field name="cat">memory</field>
50
+ <field name="features">CAS latency 3, 2.7v</field>
51
+ <!-- note: price is missing on this one -->
52
+ <field name="popularity">5</field>
53
+ <field name="inStock">true</field>
54
+ <field name="payloads">electronics|0.9 memory|0.1</field>
55
+ </doc>
56
+ </add>
57
+
@@ -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,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><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
+ <field name="manufacturedate_dt">2006-02-13T15:26:37Z</field>
34
+ </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
+