How to retrieve tokens?

2012-02-23 Thread Thiago
Hi to everybody, My name is Thiago and I'm new with Apache Solr and NoSQL databases. At the moment, I'm working and using Solr for document indexing. My Question is: Is there any way to retrieve the tokens in place of the original data? For example: I have a field using the

How to facet data from a multivalued field?

2012-04-09 Thread Thiago
21 45 91 Is there any possible way to do it with facet search? I don't want the terms, I just want each string including the white spaces. Do I have to change my fieldtype to do this? Thanks to everybody. Thiago -- View this message in context: http://l

Re: How to facet data from a multivalued field?

2012-04-11 Thread Thiago
Thank you very much, Erik. I just changed the fieldtype to String and it worked as I expected. Now I can select the count of the series. Thanks again and thanks the others too. Thiago Erik Hatcher-4 wrote > > Thiago - > > You'll want your series field to be of type "

Problems with Memory

2012-05-11 Thread Thiago
't seems OK. My computer is starting swap and my crawler is running very slow. My professor told me that it is using the cache. What can I do? Is there any option that I should choose to solve this problem? Thanks in advance Thiago -- View this message in context: http://lucene.472066.n3.nabb

How to update one field without losing the others?

2012-06-16 Thread Thiago
osing my fields, but it was posted in 2010. Is this functionality present in solr nowadays? Thanks to everybody, Thiago -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-update-one-field-without-losing-the-others-tp3989959.html Sent from the Solr - User mailing

Re: How to update one field without losing the others?

2012-06-16 Thread Thiago
I'm already downloading the document and updating it with all the changes. I thought it had an easier way to do it. Thanks for the information, Michael Della Bitta. Thiago de Sousa Silveira -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-update-one-field-wi

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

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

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

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:

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.

[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

[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

[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

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.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

Rejecting fields with null values

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

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,

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: 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