Re: Solr on trunk throwing 404 errors

2007-11-15 Thread Thiago Jackiw
Ha! That did it. Thanks. Is that because I'm using the trunk and not a released version? -- Thiago Jackiw On Nov 15, 2007 2:49 PM, Mike Klaas <[EMAIL PROTECTED]> wrote: > Have you build the project ('$ ant example')? > > -Mike > > > On 15-Nov-07, at 2:

Re: Solr on trunk throwing 404 errors

2007-11-15 Thread Thiago Jackiw
1 - - [15/11/2007:22:34:58 +] "GET /solr HTTP/1.1" 404 1291 127.0.0.1 - - [15/11/2007:22:34:05 +] "POST /solr/update HTTP/1.1" 404 1298 Thanks. -- Thiago Jackiw On Nov 15, 2007 1:12 PM, Grant Ingersoll <[EMAIL PROTECTED]> wrote: > Are there any exceptio

Solr on trunk throwing 404 errors

2007-11-15 Thread Thiago Jackiw
I've just downloaded the trunk version of Solr (great changes by the way, kudos!) and all I get after the server starts are 404 errors whenever I send requests. Any ideas why this could be happening? Thanks, -- Thiago Jackiw

Returning a list of matching words

2007-08-09 Thread Thiago Jackiw
solr, rails record_b: solr I'm not looking into using the highlight feature for that. Thanks, -- Thiago Jackiw

Re: Same record belonging to multiple facets

2007-07-05 Thread Thiago Jackiw
Is it that simple? Cool, I'll give it a try. -- Thiago Jackiw On 7/5/07, Martin Grotzke <[EMAIL PROTECTED]> wrote: On Thu, 2007-07-05 at 12:39 -0700, Thiago Jackiw wrote: > Is there a way for a record to belong to multiple facets? If so, how > would one go about implementing

Same record belonging to multiple facets

2007-07-05 Thread Thiago Jackiw
"John Doe" his record would appear under both "Cars" and "Electronics" facet categories. Thanks. -- Thiago Jackiw

Re: Rejecting fields with null values

2007-06-20 Thread Thiago Jackiw
ss searching for fields that require to have a value like the way you explained is a good way to go. Thanks! -- Thiago Jackiw acts_as_solr => http://acts-as-solr.railsfreaks.com On 6/20/07, Chris Hostetter <[EMAIL PROTECTED]> wrote: : I'm not sure if this is possible or not, but,

Rejecting fields with null values

2007-06-20 Thread Thiago Jackiw
hanks, -- Thiago Jackiw acts_as_solr => http://acts-as-solr.railsfreaks.com

[ANN] acts_as_solr v.0.9 has been released

2007-06-18 Thread Thiago Jackiw
boosting on a per-field basis or on the entire document acts_as_solr :fields => [{:price => {:boost => 5.0}}], :boost => 5.0 end FIX: Fixed the acts_as_solr limitation to only accept test|development|production environments. ===== /Changes For more info: http://acts_as_solr.railsfreaks.com OR if your browser/isp can't render: http://acts-as-solr.railsfreaks.com -- Thiago Jackiw

Re: Delete entire index

2007-06-13 Thread Thiago Jackiw
Matt, I could be wrong, but I think you can send a "delete by query" syntax: *:* -- Thiago Jackiw acts_as_solr => http://acts-as-solr.railsfreaks.com On 6/13/07, Matt Mitchell <[EMAIL PROTECTED]> wrote: Hi, Is there a way to have Solr completely remove the current index?

[ANN] acts_as_solr v.0.8.5 has been released

2007-05-16 Thread Thiago Jackiw
(http://opensvn.csie.org/acts_as_solr/trunk) aren't being updated anymore and will become obsolete by release version 1.0. Please use the addresses mentioned above. Have fun! -- Thiago Jackiw

[ANN] acts_as_solr has a new home, please update

2007-05-13 Thread Thiago Jackiw
The current address (http://acts-as-solr.rubyforge.org) will be obsolete by release version 1.0 -- Thiago Jackiw

[acts_as_solr] Release v.0.8 is out

2007-05-11 Thread Thiago Jackiw
en to find instances of your model, just do: Model.find_by_solr(query) or Model.find_id_by_solr(query) Or if you want to specify the starting row and the number of rows per page: Model.find_by_solr(query, :start => 0, :rows => 10) Get it while it's hot => http://acts-as-solr.rubyforge.org -- Thiago

Returning all rows from a query

2007-05-08 Thread Thiago Jackiw
Is there a way to retrieve all rows found without having to specify a value for it (?q=sales&rows=HUGE_NUMBER)? For instance, what I'd like to do would be something like "rows=*" or "rows=all" and that would return all the records found, without any limits. Thanks.