<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: acts_as_solr with rich document indexing</title>
	<atom:link href="http://www.lucidimagination.com/blog/2009/02/17/acts_as_solr_cell/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lucidimagination.com/blog/2009/02/17/acts_as_solr_cell/</link>
	<description>Exclusively dedicated to Apache Lucene/Solr open source search technology</description>
	<lastBuildDate>Thu, 11 Mar 2010 00:36:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Brad T</title>
		<link>http://www.lucidimagination.com/blog/2009/02/17/acts_as_solr_cell/comment-page-1/#comment-4399</link>
		<dc:creator>Brad T</dc:creator>
		<pubDate>Thu, 11 Mar 2010 00:36:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=89#comment-4399</guid>
		<description>I&#039;m having trouble with one of the steps above:

p -R apache-solr-nightly/example/solr/lib resume/vendor/plugins/acts_as_solr/solr/solr/

The problem is, the directory doesn&#039;t exist: there is no /example/solr/lib directory in the nightly build. When I grab a build from the link above, and look under  apache-solr-1.5-dev/example/solr there is a /bin /conf and /data directory, but no lib

Also, acts_as_solr/solr/solr doesn&#039;t contain a lib directory either. 

Which files should appear in the lib directory in the nightly build? Am I replacing files with the same name in the plugin, or adding files which aren&#039;t there already?

Any help would be much appreciated. This tutorial is exactly what I&#039;ve been looking for, and I can&#039;t quite get it to work.

-</description>
		<content:encoded><![CDATA[<p>I&#8217;m having trouble with one of the steps above:</p>
<p>p -R apache-solr-nightly/example/solr/lib resume/vendor/plugins/acts_as_solr/solr/solr/</p>
<p>The problem is, the directory doesn&#8217;t exist: there is no /example/solr/lib directory in the nightly build. When I grab a build from the link above, and look under  apache-solr-1.5-dev/example/solr there is a /bin /conf and /data directory, but no lib</p>
<p>Also, acts_as_solr/solr/solr doesn&#8217;t contain a lib directory either. </p>
<p>Which files should appear in the lib directory in the nightly build? Am I replacing files with the same name in the plugin, or adding files which aren&#8217;t there already?</p>
<p>Any help would be much appreciated. This tutorial is exactly what I&#8217;ve been looking for, and I can&#8217;t quite get it to work.</p>
<p>-</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shripad K</title>
		<link>http://www.lucidimagination.com/blog/2009/02/17/acts_as_solr_cell/comment-page-1/#comment-4320</link>
		<dc:creator>Shripad K</dc:creator>
		<pubDate>Sun, 07 Feb 2010 16:54:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=89#comment-4320</guid>
		<description>@Vijay:

You seem to be running Rails on windows. Fork is not implemented. Hence heres a hack for your problem:

1. Open \resume\vendor\plugins\acts_as_solr\tasks\solr.rake
2. Add this before the def env_array_to_constants(env):

desc &#039;Starts Solr. on windows . Options accepted: RAILS_ENV=your_env, PORT=XX. Defaults to development if none.&#039;
  task :start_win do
  	require &quot;#{File.dirname(__FILE__)}/../../config/solr_environment.rb&quot;
  begin
    n = Net::HTTP.new(&#039;localhost&#039;, SOLR_PORT)
    n.request_head(&#039;/&#039;).value

  rescue Net::HTTPServerException #responding
    puts &quot;Port #{SOLR_PORT} in use&quot; and return

  rescue Errno::ECONNREFUSED #not responding
    Dir.chdir(SOLR_PATH) do
        exec &quot;java -Dsolr.data.dir=solr/data/#{ENV[&#039;RAILS_ENV&#039;]} -Djetty.port=#{SOLR_PORT} -jar start.jar&quot;
      sleep(5)
      puts &quot;#{ENV[&#039;RAILS_ENV&#039;]} Solr started sucessfuly on #{SOLR_PORT}, pid: #{pid}.&quot;
    end
  end
end


3. Make sure u run rake solr:start_win
4. Cheers

Source: http://webonrails.com/2007/09/13/acts_as_solr-starting-solr-server-on-windows/comment-page-1/#comment-1292</description>
		<content:encoded><![CDATA[<p>@Vijay:</p>
<p>You seem to be running Rails on windows. Fork is not implemented. Hence heres a hack for your problem:</p>
<p>1. Open \resume\vendor\plugins\acts_as_solr\tasks\solr.rake<br />
2. Add this before the def env_array_to_constants(env):</p>
<p>desc &#8216;Starts Solr. on windows . Options accepted: RAILS_ENV=your_env, PORT=XX. Defaults to development if none.&#8217;<br />
  task :start_win do<br />
  	require &#8220;#{File.dirname(__FILE__)}/../../config/solr_environment.rb&#8221;<br />
  begin<br />
    n = Net::HTTP.new(&#8216;localhost&#8217;, SOLR_PORT)<br />
    n.request_head(&#8216;/&#8217;).value</p>
<p>  rescue Net::HTTPServerException #responding<br />
    puts &#8220;Port #{SOLR_PORT} in use&#8221; and return</p>
<p>  rescue Errno::ECONNREFUSED #not responding<br />
    Dir.chdir(SOLR_PATH) do<br />
        exec &#8220;java -Dsolr.data.dir=solr/data/#{ENV['RAILS_ENV']} -Djetty.port=#{SOLR_PORT} -jar start.jar&#8221;<br />
      sleep(5)<br />
      puts &#8220;#{ENV['RAILS_ENV']} Solr started sucessfuly on #{SOLR_PORT}, pid: #{pid}.&#8221;<br />
    end<br />
  end<br />
end</p>
<p>3. Make sure u run rake solr:start_win<br />
4. Cheers</p>
<p>Source: <a href="http://webonrails.com/2007/09/13/acts_as_solr-starting-solr-server-on-windows/comment-page-1/#comment-1292" rel="nofollow">http://webonrails.com/2007/09/13/acts_as_solr-starting-solr-server-on-windows/comment-page-1/#comment-1292</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adedip</title>
		<link>http://www.lucidimagination.com/blog/2009/02/17/acts_as_solr_cell/comment-page-1/#comment-4278</link>
		<dc:creator>adedip</dc:creator>
		<pubDate>Fri, 29 Jan 2010 15:09:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=89#comment-4278</guid>
		<description>I got the nil error too.. but I&#039;m not using facets.. :S
--rake --trace solr:start
(in /home/diego/rptest)
** Invoke solr:start (first_time)
** Execute solr:start
rake aborted!
undefined method `closed?&#039; for nil:NilClass
/usr/lib64/ruby/1.8/net/http.rb:1060:in `request&#039;
/usr/lib64/ruby/1.8/net/http.rb:962:in `request_head&#039;
/home/diego/rptest/vendor/plugins/acts_as_solr/lib/tasks/solr.rake:13
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:636:in `call&#039;
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:636:in `execute&#039;
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:631:in `each&#039;
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:631:in `execute&#039;
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:597:in `invoke_with_call_chain&#039;
/usr/lib64/ruby/1.8/monitor.rb:242:in `synchronize&#039;
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:590:in `invoke_with_call_chain&#039;
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:583:in `invoke&#039;
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2051:in `invoke_task&#039;
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2029:in `top_level&#039;
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2029:in `each&#039;
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2029:in `top_level&#039;
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2068:in `standard_exception_handling&#039;
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2023:in `top_level&#039;
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2001:in `run&#039;
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2068:in `standard_exception_handling&#039;
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:1998:in `run&#039;
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/bin/rake:31
/usr/bin/rake:19:in `load&#039;
/usr/bin/rake:19
--

might it be because of the server/port conflict?
thx :)</description>
		<content:encoded><![CDATA[<p>I got the nil error too.. but I&#8217;m not using facets.. :S<br />
&#8211;rake &#8211;trace solr:start<br />
(in /home/diego/rptest)<br />
** Invoke solr:start (first_time)<br />
** Execute solr:start<br />
rake aborted!<br />
undefined method `closed?&#8217; for nil:NilClass<br />
/usr/lib64/ruby/1.8/net/http.rb:1060:in `request&#8217;<br />
/usr/lib64/ruby/1.8/net/http.rb:962:in `request_head&#8217;<br />
/home/diego/rptest/vendor/plugins/acts_as_solr/lib/tasks/solr.rake:13<br />
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:636:in `call&#8217;<br />
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:636:in `execute&#8217;<br />
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:631:in `each&#8217;<br />
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:631:in `execute&#8217;<br />
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:597:in `invoke_with_call_chain&#8217;<br />
/usr/lib64/ruby/1.8/monitor.rb:242:in `synchronize&#8217;<br />
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:590:in `invoke_with_call_chain&#8217;<br />
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:583:in `invoke&#8217;<br />
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2051:in `invoke_task&#8217;<br />
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2029:in `top_level&#8217;<br />
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2029:in `each&#8217;<br />
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2029:in `top_level&#8217;<br />
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2068:in `standard_exception_handling&#8217;<br />
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2023:in `top_level&#8217;<br />
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2001:in `run&#8217;<br />
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2068:in `standard_exception_handling&#8217;<br />
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:1998:in `run&#8217;<br />
/usr/lib64/ruby/gems/1.8/gems/rake-0.8.7/bin/rake:31<br />
/usr/bin/rake:19:in `load&#8217;<br />
/usr/bin/rake:19<br />
&#8211;</p>
<p>might it be because of the server/port conflict?<br />
thx <img src='http://www.lucidimagination.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vijay</title>
		<link>http://www.lucidimagination.com/blog/2009/02/17/acts_as_solr_cell/comment-page-1/#comment-4016</link>
		<dc:creator>vijay</dc:creator>
		<pubDate>Mon, 09 Nov 2009 09:35:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=89#comment-4016</guid>
		<description>Hi,
I got this error
D:\resume&gt;rake solr:start
(in D:/resume)
rake aborted!
fork() function is unimplemented on this machine
(See full trace by running task with --trace)

i am using ruby on rails version bellow.
ruby 1.8.6
rails 2.3.4

my gems list

*** LOCAL GEMS ***

abstract (1.0.0)
actionmailer (2.3.4, 2.3.3, 2.3.2, 2.2.2, 2.1.1, 2.1.0, 2.0.2, 1.3.3)
actionpack (2.3.4, 2.3.3, 2.3.2, 2.2.2, 2.1.1, 2.1.0, 2.0.2, 1.13.6, 1.13.3)
actionwebservice (1.2.6, 1.2.3)
activemerchant (1.4.2)
activerecord (2.3.4, 2.3.3, 2.3.2, 2.2.2, 2.1.1, 2.1.0, 2.0.2, 1.15.6, 1.15.3)
activerecord-tableless (0.1.0)
activeresource (2.3.4, 2.3.3, 2.3.2, 2.2.2, 2.1.1, 2.1.0, 2.0.2)
activesupport (2.3.4, 2.3.3, 2.3.2, 2.2.2, 2.1.1, 2.1.0, 2.0.2, 1.4.4, 1.4.2)
acts_as_ferret (0.4.4, 0.4.3)
acts_as_reportable (1.1.1, 1.0.1)
addressable (2.1.0, 2.0.1, 2.0.0)
archive-tar-minitar (0.5.2, 0.5.1)
arrayfields (4.7.4, 4.6.0)
authlogic (2.1.2)
builder (2.1.2)
cached_model (1.3.1)
calendar_date_select (1.15)
capistrano (2.5.9, 2.5.3, 2.5.0, 2.1.0)
cgi_multipart_eof_fix (2.5.0)
chriseppstein-compass (0.6.15)
chronic (0.2.3)
cmdparse (2.0.2)
color (1.4.0)
columnize (0.3.1, 0.2, 0.1)
commonwatir (1.6.2)
daemons (1.0.10)
data_objects (0.10.0, 0.9.9, 0.9.8)
diff-lcs (1.1.2)
dm-core (0.10.1, 0.9.8, 0.9.7)
erubis (2.6.5, 2.6.2)
eventmachine (0.12.8, 0.12.0)
extlib (0.9.13, 0.9.9, 0.9.8)
facets (2.7.0, 1.4.5)
fastercsv (1.5.0, 1.4.0, 1.2.3)
fattr (2.1.0, 1.0.3)
feed-normalizer (1.5.1)
ferret (0.11.5)
firewatir (1.6.2)
flexmock (0.8.6, 0.8.2)
fxri (0.3.7, 0.3.6)
fxruby (1.6.19, 1.6.12)
gem_plugin (0.2.3)
gettext (2.0.4, 1.93.0, 1.90.0)
git (1.2.5, 1.0.5)
git-rails (0.2.1)
haml (2.2.9, 2.0.4)
haml-edge (2.3.65)
highline (1.5.1, 1.4.0)
hoe (2.3.3, 1.8.0, 1.5.0, 1.4.0)
hpricot (0.8.1, 0.6)
javan-whenever (0.3.7)
json_pure (1.1.9, 1.1.3)
libxml-ruby (1.1.3)
linecache (0.43)
liquid (2.0.0, 1.9.0)
locale (2.0.4)
log4r (1.1.2, 1.0.5)
mailfactory (1.4.0)
main (4.0.0, 2.8.2)
mechanize (0.9.3, 0.8.5)
memcache-client (1.7.5, 1.5.0)
merb-action-args (1.0.12, 1.0.3)
merb-assets (1.0.12, 1.0.3)
merb-auth (1.0.12, 1.0.3)</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I got this error<br />
D:\resume&gt;rake solr:start<br />
(in D:/resume)<br />
rake aborted!<br />
fork() function is unimplemented on this machine<br />
(See full trace by running task with &#8211;trace)</p>
<p>i am using ruby on rails version bellow.<br />
ruby 1.8.6<br />
rails 2.3.4</p>
<p>my gems list</p>
<p>*** LOCAL GEMS ***</p>
<p>abstract (1.0.0)<br />
actionmailer (2.3.4, 2.3.3, 2.3.2, 2.2.2, 2.1.1, 2.1.0, 2.0.2, 1.3.3)<br />
actionpack (2.3.4, 2.3.3, 2.3.2, 2.2.2, 2.1.1, 2.1.0, 2.0.2, 1.13.6, 1.13.3)<br />
actionwebservice (1.2.6, 1.2.3)<br />
activemerchant (1.4.2)<br />
activerecord (2.3.4, 2.3.3, 2.3.2, 2.2.2, 2.1.1, 2.1.0, 2.0.2, 1.15.6, 1.15.3)<br />
activerecord-tableless (0.1.0)<br />
activeresource (2.3.4, 2.3.3, 2.3.2, 2.2.2, 2.1.1, 2.1.0, 2.0.2)<br />
activesupport (2.3.4, 2.3.3, 2.3.2, 2.2.2, 2.1.1, 2.1.0, 2.0.2, 1.4.4, 1.4.2)<br />
acts_as_ferret (0.4.4, 0.4.3)<br />
acts_as_reportable (1.1.1, 1.0.1)<br />
addressable (2.1.0, 2.0.1, 2.0.0)<br />
archive-tar-minitar (0.5.2, 0.5.1)<br />
arrayfields (4.7.4, 4.6.0)<br />
authlogic (2.1.2)<br />
builder (2.1.2)<br />
cached_model (1.3.1)<br />
calendar_date_select (1.15)<br />
capistrano (2.5.9, 2.5.3, 2.5.0, 2.1.0)<br />
cgi_multipart_eof_fix (2.5.0)<br />
chriseppstein-compass (0.6.15)<br />
chronic (0.2.3)<br />
cmdparse (2.0.2)<br />
color (1.4.0)<br />
columnize (0.3.1, 0.2, 0.1)<br />
commonwatir (1.6.2)<br />
daemons (1.0.10)<br />
data_objects (0.10.0, 0.9.9, 0.9.8)<br />
diff-lcs (1.1.2)<br />
dm-core (0.10.1, 0.9.8, 0.9.7)<br />
erubis (2.6.5, 2.6.2)<br />
eventmachine (0.12.8, 0.12.0)<br />
extlib (0.9.13, 0.9.9, 0.9.8)<br />
facets (2.7.0, 1.4.5)<br />
fastercsv (1.5.0, 1.4.0, 1.2.3)<br />
fattr (2.1.0, 1.0.3)<br />
feed-normalizer (1.5.1)<br />
ferret (0.11.5)<br />
firewatir (1.6.2)<br />
flexmock (0.8.6, 0.8.2)<br />
fxri (0.3.7, 0.3.6)<br />
fxruby (1.6.19, 1.6.12)<br />
gem_plugin (0.2.3)<br />
gettext (2.0.4, 1.93.0, 1.90.0)<br />
git (1.2.5, 1.0.5)<br />
git-rails (0.2.1)<br />
haml (2.2.9, 2.0.4)<br />
haml-edge (2.3.65)<br />
highline (1.5.1, 1.4.0)<br />
hoe (2.3.3, 1.8.0, 1.5.0, 1.4.0)<br />
hpricot (0.8.1, 0.6)<br />
javan-whenever (0.3.7)<br />
json_pure (1.1.9, 1.1.3)<br />
libxml-ruby (1.1.3)<br />
linecache (0.43)<br />
liquid (2.0.0, 1.9.0)<br />
locale (2.0.4)<br />
log4r (1.1.2, 1.0.5)<br />
mailfactory (1.4.0)<br />
main (4.0.0, 2.8.2)<br />
mechanize (0.9.3, 0.8.5)<br />
memcache-client (1.7.5, 1.5.0)<br />
merb-action-args (1.0.12, 1.0.3)<br />
merb-assets (1.0.12, 1.0.3)<br />
merb-auth (1.0.12, 1.0.3)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Boyle</title>
		<link>http://www.lucidimagination.com/blog/2009/02/17/acts_as_solr_cell/comment-page-1/#comment-3768</link>
		<dc:creator>Mike Boyle</dc:creator>
		<pubDate>Tue, 29 Sep 2009 10:56:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=89#comment-3768</guid>
		<description>I am just getting started with Ruby and Solr (v 1.3 -- it is all that is available at the customer site). So, my question is, querying via acts_as_solr returns the full doc definition I expect for my model. But, when I query solr directly (http://localhost/solr/select?q=blah..., I only get the id and the pk_i.

I have been mucking about in the schema and solfconfig xml files to no avail. 

Is it possible to have solr return the full doc definition as in acts_as_solr?

Sorry if this is a silly question, I just can&#039;t seem to get any traction on this issue.

Cheers
Mike</description>
		<content:encoded><![CDATA[<p>I am just getting started with Ruby and Solr (v 1.3 &#8212; it is all that is available at the customer site). So, my question is, querying via acts_as_solr returns the full doc definition I expect for my model. But, when I query solr directly (<a href="http://localhost/solr/select?q=blah..." rel="nofollow">http://localhost/solr/select?q=blah&#8230;</a>, I only get the id and the pk_i.</p>
<p>I have been mucking about in the schema and solfconfig xml files to no avail. </p>
<p>Is it possible to have solr return the full doc definition as in acts_as_solr?</p>
<p>Sorry if this is a silly question, I just can&#8217;t seem to get any traction on this issue.</p>
<p>Cheers<br />
Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Reagan</title>
		<link>http://www.lucidimagination.com/blog/2009/02/17/acts_as_solr_cell/comment-page-1/#comment-3609</link>
		<dc:creator>Kevin Reagan</dc:creator>
		<pubDate>Fri, 07 Aug 2009 20:53:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=89#comment-3609</guid>
		<description>I get the same errors as Phil.  I&#039;m pretty darn sure I followed the instructions perfectly (two or 3 times).  I also tried to &quot;ant example&quot; just in case that was the issue.  Nope.

SEVERE: Could not start SOLR. Check solr/home property
java.lang.NoClassDefFoundError: org/apache/solr/util/plugin/SolrCoreAware
	at java.lang.ClassLoader.defineClass1(Native Method)

..../*snip*/....

Thank you.</description>
		<content:encoded><![CDATA[<p>I get the same errors as Phil.  I&#8217;m pretty darn sure I followed the instructions perfectly (two or 3 times).  I also tried to &#8220;ant example&#8221; just in case that was the issue.  Nope.</p>
<p>SEVERE: Could not start SOLR. Check solr/home property<br />
java.lang.NoClassDefFoundError: org/apache/solr/util/plugin/SolrCoreAware<br />
	at java.lang.ClassLoader.defineClass1(Native Method)</p>
<p>&#8230;./*snip*/&#8230;.</p>
<p>Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://www.lucidimagination.com/blog/2009/02/17/acts_as_solr_cell/comment-page-1/#comment-3569</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Wed, 22 Jul 2009 12:04:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=89#comment-3569</guid>
		<description>Hi,

if i add an Solr::Document to the index with solr_add()
i get the following error:

solr_cell_request.rb:13:in `initialize&#039;: undefined method `each&#039; for # (NoMethodError)

---
solr_cell_request.rb:

13: doc.each do &#124;f&#124;
14:   params[&quot;ext.literal.#{f.name}&quot;] = f.value
15:     if f.boost
16:       params[&quot;ext.boost.#{f.name}&quot;] = f.boost
17:     end
18:   end
19:   super(nil,params)
20: end


anyone have an idea on what I doing wrong?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>if i add an Solr::Document to the index with solr_add()<br />
i get the following error:</p>
<p>solr_cell_request.rb:13:in `initialize&#8217;: undefined method `each&#8217; for # (NoMethodError)</p>
<p>&#8212;<br />
solr_cell_request.rb:</p>
<p>13: doc.each do |f|<br />
14:   params["ext.literal.#{f.name}"] = f.value<br />
15:     if f.boost<br />
16:       params["ext.boost.#{f.name}"] = f.boost<br />
17:     end<br />
18:   end<br />
19:   super(nil,params)<br />
20: end</p>
<p>anyone have an idea on what I doing wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erik Hatcher</title>
		<link>http://www.lucidimagination.com/blog/2009/02/17/acts_as_solr_cell/comment-page-1/#comment-3081</link>
		<dc:creator>Erik Hatcher</dc:creator>
		<pubDate>Tue, 05 May 2009 16:41:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=89#comment-3081</guid>
		<description>Pete - what version of Solr are you using?   My hunch is that you didn&#039;t replace the solr.war file properly, as indicated by the copy problem you experienced with the libraries also.

Double check that you ran the cp (copy) commands as stated above.</description>
		<content:encoded><![CDATA[<p>Pete &#8211; what version of Solr are you using?   My hunch is that you didn&#8217;t replace the solr.war file properly, as indicated by the copy problem you experienced with the libraries also.</p>
<p>Double check that you ran the cp (copy) commands as stated above.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pete</title>
		<link>http://www.lucidimagination.com/blog/2009/02/17/acts_as_solr_cell/comment-page-1/#comment-2599</link>
		<dc:creator>Pete</dc:creator>
		<pubDate>Mon, 27 Apr 2009 20:10:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=89#comment-2599</guid>
		<description>I may be just being something of an idiot, but I&#039;m having trouble that I don&#039;t see any questions about...

I followed the guide above, adding the line:

&lt;pre&gt;&lt;/pre&gt;

above.  However, I get the following error:

org.apache.solr.common.SolrException: Error loading class &#039;org.apache.solr.handler.extraction.ExtractingRequestHandler&#039;

I&#039;ve checked that I have the files in the required path (app/vendor/plugins/acts_as_solr/solr/solr) as listed above, but it doesn&#039;t pick it up.  on a whim, I put them in (app/vendor/plugins/acts_as_solr/solr/lib) with the other jar files, and it stops throwing that error, but throws this error now:

java.lang.NoClassDefFoundError: org/apache/solr/util/plugin/SolrCoreAware

which seems even more obtuse to me.  Apparently SolrCoreAware is an interface for allowing plugins to be informed about the SolrCore/ResourceLoader, but I haven&#039;t ever looked at the Solr java source enough to figure that out...

anyone have any thoughts on what I may be doing wrong?

Thanks!
Pete</description>
		<content:encoded><![CDATA[<p>I may be just being something of an idiot, but I&#8217;m having trouble that I don&#8217;t see any questions about&#8230;</p>
<p>I followed the guide above, adding the line:</p>
<pre></pre>
<p>above.  However, I get the following error:</p>
<p>org.apache.solr.common.SolrException: Error loading class &#8216;org.apache.solr.handler.extraction.ExtractingRequestHandler&#8217;</p>
<p>I&#8217;ve checked that I have the files in the required path (app/vendor/plugins/acts_as_solr/solr/solr) as listed above, but it doesn&#8217;t pick it up.  on a whim, I put them in (app/vendor/plugins/acts_as_solr/solr/lib) with the other jar files, and it stops throwing that error, but throws this error now:</p>
<p>java.lang.NoClassDefFoundError: org/apache/solr/util/plugin/SolrCoreAware</p>
<p>which seems even more obtuse to me.  Apparently SolrCoreAware is an interface for allowing plugins to be informed about the SolrCore/ResourceLoader, but I haven&#8217;t ever looked at the Solr java source enough to figure that out&#8230;</p>
<p>anyone have any thoughts on what I may be doing wrong?</p>
<p>Thanks!<br />
Pete</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thanh Doan</title>
		<link>http://www.lucidimagination.com/blog/2009/02/17/acts_as_solr_cell/comment-page-1/#comment-2535</link>
		<dc:creator>Thanh Doan</dc:creator>
		<pubDate>Mon, 27 Apr 2009 07:00:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=89#comment-2535</guid>
		<description>Thanks Erik.</description>
		<content:encoded><![CDATA[<p>Thanks Erik.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
