Spatial search question

2013-04-12 Thread kfdroid
We currently do a radius search from a given Lat/Long point and it works great. I have a new requirement to do a search on a larger radius from the same point, but not include the smaller radius. Kind of a donut (torus) shaped search. How would I do this (Solr 4)? Search where radius is between

Re: Can Solr v1.4 and v4.0 co-exist in Tomcat?

2012-11-20 Thread kfdroid
I renamed the 4.0 .war file solr4.war and put it in the \lib directory of Tomcat (where solr.war already exists for version 1.4.1). I have a new core created using the solr example that came with 4.0. It looks like I can run queries and do a few other things using the URL, but the Solr Admin UI do

Re: solr4 MULTIPOLYGON search syntax

2012-11-20 Thread kfdroid
I think you may be missing a set of parenthesis, instead of MULTIPOLYGON((point,point,point)),((point,point,point)) you need MULTIPOLYGON(((point,point,point)),((point,point,point))) -- View this message in context: http://lucene.472066.n3.nabble.com/solr4-MULTIPOLYGON-search-syntax-tp4021199p

Re: Can Solr v1.4 and v4.0 co-exist in Tomcat?

2012-11-20 Thread kfdroid
Thanks, that helped with a different issue I was having. However the Admin UI issue is a known issue with IE9 (and possibly IE8) https://issues.apache.org/jira/browse/SOLR-3876 https://issues.apache.org/jira/browse/SOLR-3841 basically IE is not supported for the Solr Admin UI at this time. I insta

Searching across multiple collections (cores)

2013-03-14 Thread kfdroid
I've been looking all over for a clear answer to this question and can't seem to find one. It seems like a very basic concept to me though so maybe I'm using the wrong terminology. I want to be able to search across multiple collections (as it is now called in SolrCloud world, previously called Co

Re: Searching across multiple collections (cores)

2013-03-14 Thread kfdroid
I'm assuming from that link I would use the following: /Query all shards of multiple compatible collections, explicitly specified:/ http://localhost:8983/solr/collection1/select?collection=collection1_NY,collection1_NJ,collection1_CT where collection1_NY, NJ and CT could be books, movies, music i

question on tokenization control

2012-05-01 Thread kfdroid
I have a field that is defined using what I believe is fairly standard "text" fieldType. I have documents with the words 'evaluate', 'evaluating', 'evaluation' in them. When I search on the whole word, obviously it works, if I search on 'eval' it finds nothing. However for some reason if I search o

Can Solr v1.4 and v4.0 co-exist in Tomcat?

2012-11-19 Thread kfdroid
I have an existing v1.4 implementation of Solr that supports 2 lines of business. For a third line of business the need to do Geo searching requires using Solr 4.0. I'd like to minimize the impact to the existing lines of business (let them upgrade at their own pace), however I want to share hardwa