Some guide about setting up local/geo search at solr

2009-11-14 Thread Bertie Shen
Hey, I spent some times figuring out how to set up local/geo/spatial search at solr. I hope the following description can help given the current status. 1) Download localsolr. I download it from http://developer.k-int.com/m2snapshots/localsolr/localsolr/1.5/ and put jar file (in my case,

Solr date and string search problem

2009-11-14 Thread ashokcz
Hi , I have been using solr1.2 for a year and now i m facing a weird problem. Till now i have used only string and number solr types for the search field . and whatever string the users are trying to search will pass it on to the search engine and it will find in appropraite fields and return me

field collapse using 'adjacent' 'includeCollapsedDocs' + 'sort' query field

2009-11-14 Thread michael8
Hi, This almost seems like a bug, but I can't be sure so I'm seeking confirmation. Basically I am building a site that presents search results in reverse chronologically order. I am also leveraging the field collapse feature so that I can group results using 'adjacent' mode and have solr

converting over from sphinx

2009-11-14 Thread Cory Ondrejka
I've been using Sphinx for full text search, but since I want to move my project over to Heroku, need to switch to Solr. Everything's up and running using the acts_as_solr plugin, but I'm curious if I'm using Solr the right way. In particular, I'm doing phrase searching into a corpus of

Re: javabin in .NET?

2009-11-14 Thread Mauricio Scheffer
Original code is here: http://bit.ly/hkCbI I just started porting it here: http://bit.ly/37hiOs It needs: tests/debugging, porting NamedList, SolrDocument, SolrDocumentList Thanks for any help! Cheers, Mauricio 2009/11/14 Noble Paul നോബിള്‍ नोब्ळ् noble.p...@corp.aol.com OK. Is there anyone

Re: Solr date and string search problem

2009-11-14 Thread Lance Norskog
This line is the key: SEVERE: org.apache.solr.core.SolrException: Invalid Date String:'Behavior' at org.apache.solr.schema.DateField.toInternal(DateField.java:108) at The string 'Behavior' is being parsed as a date, and fails. Your query is attempting to find this as a date.

Re: Solr 1.3 query and index perf tank during optimize

2009-11-14 Thread Lance Norskog
Good question! The terms in the deleted documents are left behind, and so the relevance behavior will be off. The other space used directly by documents will be reabsorbed. (??) On Sat, Nov 14, 2009 at 1:28 PM, Jerome L Quinn jlqu...@us.ibm.com wrote: Lance Norskog goks...@gmail.com wrote on

Is there a way to skip cache for a query

2009-11-14 Thread Bertie Shen
Hey, I do not want to disable cache completely by changing the setting in solrconfig.xml. I just want to sometimes skip cache for a query for testing purpose. So is there a parameter like skipcache=true to specify in select/?q=hotversion=2.2start=0rows=10skipcache=true to skip cache for the

Newbie Solr questions

2009-11-14 Thread yz5od2
Hi, I am new to Solr but fairly advanced with lucene. In the past I have created custom Lucene search engines that indexed objects in a Java application, so my background is coming from this requirement a) Since Solr is built on top of lucene, using SolrJ, can I still directly create

Re: Newbie Solr questions

2009-11-14 Thread Avlesh Singh
a) Since Solr is built on top of lucene, using SolrJ, can I still directly create custom documents, specify the field specifics etc (indexed, stored etc) and then map POJOs to those documents, simular to just using the straight lucene API? b) I took a quick look at the SolrJ javadocs but