Re: Post filter cache question

2013-10-24 Thread Eric Grobler
Hi Chris Thank you for your response. I will try to migrate to Solr 4.4 first! Best regards On Thu, Oct 24, 2013 at 10:44 PM, Chris Hostetter wrote: > > : Could it be a problem with my cache settings in solrconfig.xml (solr 3.1) > : or is my query wrong? > > 3.1? ouch ... PostFilter wasn't ev

Post filter cache question

2013-10-24 Thread Eric Grobler
Hi If I run this query it is very fast (<10 ms) because it uses a "TopList" filter: q=*:* fl=adr_geopoint,adr_city,filterflags *fq=(filterflags:TopList) * and the number of relevant documents are 3000 out of 7 million. If I run the same query but add a spatial filter with cost: q=*:* fl=adr_geopo

Re: Spatial Circle Search

2013-10-22 Thread Eric Grobler
Bill Bell suggested using frange and here is a stackoverflow example: http://stackoverflow.com/questions/10867113/solr-distance-filtering pt=45.15,-93.85&sfield=store&fq={!frange l=5 u=10 cache=false cost=100}geodist()&fq={!bbox d=10} On Tue, Oct 22, 2013 at 7:43 PM, Eric Grobler

Re: Spatial Distance Range

2013-10-22 Thread Eric Grobler
Hi Bill, I found what you were refering too :-) http://stackoverflow.com/questions/10867113/solr-distance-filtering Thanks! On Tue, Oct 22, 2013 at 3:20 PM, Bill Bell wrote: > Yes frange works > > Bill Bell > Sent from mobile > > > > On Oct 22, 2013, at 8:17 A

Re: Spatial Distance Range

2013-10-22 Thread Eric Grobler
This question was badly phrased. I asked it again under the heading "Spatial Circle Search" On Tue, Oct 22, 2013 at 3:17 PM, Eric Grobler wrote: > Hi Everyone, > > Normally one would search for documents where the location is within a > specified distance, for exam

Spatial Circle Search

2013-10-22 Thread Eric Grobler
Hi Solr experts, fq={!geofilt pt=45.15,-93.85 sfield=store d=5} will return docs with 5 km (the gray area) I want to search in a circle around my location but only between 5 and 10 km, the blue area. Something like: fq={!geofilt pt=45.15,-93.85 sfield=store *d=[10 TO 100]*} [image: Inline image

Re: Spatial Distance Range

2013-10-22 Thread Eric Grobler
Hi Everyone, To explain this better, fq={!geofilt pt=45.15,-93.85 sfield=store d=5} will search the gray area. I want to search in a circle around my location but between 5 and 10 km, the blue area. [image: Inline image 1] Regards Ericz On Tue, Oct 22, 2013 at 3:17 PM, Eric Grobler wrote

Re: Spatial Distance Range

2013-10-22 Thread Eric Grobler
Hi Bill, > Yes frange works Do you mean range specifying kilometers? Regards Eric On Tue, Oct 22, 2013 at 3:20 PM, Bill Bell wrote: > Yes frange works > > Bill Bell > Sent from mobile > > > > On Oct 22, 2013, at 8:17 AM, Eric Grobler > wrote: > > > &g

Spatial Distance Range

2013-10-22 Thread Eric Grobler
Hi Everyone, Normally one would search for documents where the location is within a specified distance, for example widthin 5 km: fq={!geofilt pt=45.15,-93.85 sfield=store d=5}

Re: Solr 4.3.0 geo search with multiple coordinates

2013-05-27 Thread Eric Grobler
I think I found the reason/bug the type was wrong, it should be On Tue, May 28, 2013 at 1:37 AM, Eric Grobler wrote: > Hi Solr experts, > > I have a solr 4.3 schema > "solr.SpatialRecursivePrefixTreeFieldType" geo="true" distErrPct="0.025&qu

Solr 4.3.0 geo search with multiple coordinates

2013-05-27 Thread Eric Grobler
Hi Solr experts, I have a solr 4.3 schema and xml data 51.1164,6.9612 52.3473,9.77564 If I run this query: fq={!geofilt pt=51.11,6.9 sfield=location_geo d=20} I get no result. But if I remove the second geo line and only have this geo coordinate it works: 51.1164,6.9612 *Thus it seems that

Re: Delete query puzzle

2012-10-28 Thread Eric Grobler
rickson >wrote: > > > >> That is very weird. What version of Solr are you using, and is there > >> any way you could get a stack trace when this is happening? > >> > >> Best > >> Erick > >> > >> On Sun, Oct 28, 2012 at 6:22

Re: Delete query puzzle

2012-10-28 Thread Eric Grobler
rote: > That is very weird. What version of Solr are you using, and is there > any way you could get a stack trace when this is happening? > > Best > Erick > > On Sun, Oct 28, 2012 at 6:22 AM, Eric Grobler > wrote: > > Hi > > > > I am a bit confused why th

Delete query puzzle

2012-10-28 Thread Eric Grobler
Hi I am a bit confused why the server sometimes takes 80 seconds to respond when I specify an id to delete than does not even exist in the index. If I loop this query and send a bogus id to delete every minute. 03:27:38 125 ms bogusidthatdoesnotexist commit 03:28:38 125 ms bogusidthatdoesno

Re: Spatial4j

2012-04-23 Thread Eric Grobler
Thank you David, it is fantastic what people like you do for the Solr community. On Mon, Apr 23, 2012 at 8:08 PM, David Smiley (@MITRE.org) < dsmi...@mitre.org> wrote: > Yes, I definitely think so. At a minimum, I expect there will at least be > a > patch or built jar file for you to get going

Re: Spatial4j

2012-04-23 Thread Eric Grobler
. > > ~ David Smiley > > On Apr 23, 2012, at 11:09 AM, Eric Grobler wrote: > > > Hello Solr Community, > > > > We are interested in polygon spatial queries. > > I believe that Spatial4j supports it. > > > > Is there a solr branch available that inc

Spatial4j

2012-04-23 Thread Eric Grobler
Hello Solr Community, We are interested in polygon spatial queries. I believe that Spatial4j supports it. Is there a solr branch available that includes Spatial4j? Will this be part of a furure solr release? Thank you. Best Regards Ericz

Re: Spatial Search and faceting

2012-02-16 Thread Eric Grobler
up.field=city&sort=geodist() desc&rows=10&fl=city > > It might require 2 calls to SOLR to get it the way you want. > > On Wed, Feb 15, 2012 at 5:51 PM, Eric Grobler > wrote: > > Hi Solr community, > > > > I am doing a spatial search and then do a facet by c

Spatial Search and faceting

2012-02-15 Thread Eric Grobler
Hi Solr community, I am doing a spatial search and then do a facet by city. Is it possible to then sort the faceted cities by distance? We would like to display the hits per city, but sort them by distance. Thanks & Regards Ericz q=iphone fq={!bbox} sfield=geopoint pt=49.594857,8.468614 d=50 fl

Re: Function in facet.query like min,max

2012-01-17 Thread Eric Grobler
component so I > could well be wrong. > > Best > Erick > > On Tue, Jan 17, 2012 at 11:16 AM, Eric Grobler > wrote: > > Yes, I have, but unfortunately it works on the whole index and not for a > > particular query. > > > > > > On Tue, J

Re: Function in facet.query like min,max

2012-01-17 Thread Eric Grobler
Yes, I have, but unfortunately it works on the whole index and not for a particular query. On Tue, Jan 17, 2012 at 3:37 PM, Erick Erickson wrote: > have you seen the Stats component? See: > http://wiki.apache.org/solr/StatsComponent > > Best > Erick > > On Tue, Jan 17,

Function in facet.query like min,max

2012-01-17 Thread Eric Grobler
Hi Solr community, Is it possible to return the lowest, highest and average price of a search result using facets? I tried something like: facet.query={!max(price,0)} Is it possible and what is the correct syntax? q=htc android facet=true facet.query=price:[* TO 10] facet.query=price:[11 TO 100]

Re: Document row in solr Result

2011-09-12 Thread Eric Grobler
mission date greater than this > customer's and return the result count. If you have 500 products with an > earlier submission date, your row number is 501. > > Hope this helps, > > Pierre > > > -----Message d'origine- > De : Eric Grobler [mailto:impalah...@goog

Re: Document row in solr Result

2011-09-12 Thread Eric Grobler
2 ... 9922 6344232011-08-10 21:51 Regards Ericz On Mon, Sep 12, 2011 at 9:38 AM, Manish Bafna wrote: > You might not be able to find the row index. > Can you post your query in detail. The kind of inputs and outputs you are > expecting. > > On Mon, Sep 12, 2011 at 2:01 PM, Eric

Re: Document row in solr Result

2011-09-12 Thread Eric Grobler
Hi Manish, Thanks for your reply - but how will that return me the row index of the original query. Regards Ericz On Mon, Sep 12, 2011 at 9:24 AM, Manish Bafna wrote: > fq -> filter query parameter searches within the results. > > On Mon, Sep 12, 2011 at 1:49 PM, Eric Grobler >

Document row in solr Result

2011-09-12 Thread Eric Grobler
Hi Solr experts, If you have a site with products sorted by submission date, the product of a customer might be on page 1 on the first day, and then move down to page x as other customers submit newer entries. To find the row of a product you can of course run the query and loop through the resul

Re: Ebay Kleinanzeigen and Auto Suggest

2011-04-27 Thread Eric Grobler
ene ecosystem search :: http://search-lucene.com/ > > > > - Original Message > > From: Eric Grobler > > To: solr-user@lucene.apache.org > > Sent: Tue, April 26, 2011 1:11:11 PM > > Subject: Ebay Kleinanzeigen and Auto Suggest > > > > Hi > > &g

Re: Ebay Kleinanzeigen and Auto Suggest

2011-04-26 Thread Eric Grobler
e/index.html (used on > http://search-lucene.com/ for example) > > * http://wiki.apache.org/solr/Suggester > > > Otis > > Sematext :: http://sematext.com/ :: Solr - Lucene - Nutch > Lucene ecosystem search :: http://search-lucene.com/ > > > > - Ori

Ebay Kleinanzeigen and Auto Suggest

2011-04-26 Thread Eric Grobler
Hi Someone told me that ebay is using solr. I was looking at their Auto Suggest implementation and I guess they are using Shingles and the TermsComponent. I managed to get a satisfactory implementation but I have a problem with category specific filtering. Ebay suggestions are sensitive to catego

Re: Eclipse: Invalid character constant

2011-04-06 Thread Eric Grobler
ail.com> wrote: > Eric, > > have a look at Line #67 in build.xml :) > > > Regards > Stefan > > Am 06.04.2011 00:28, schrieb Eric Grobler: > > Hi Robert, >> >> Thanks for the fast response! >> >> I used >> https://svn.apache.org/repos/

Re: Eclipse: Invalid character constant

2011-04-05 Thread Eric Grobler
te...@googlemail.com> wrote: > Eric, > > have a look at Line #67 in build.xml :) > > > Regards > Stefan > > Am 06.04.2011 00:28, schrieb Eric Grobler: > > Hi Robert, >> >> Thanks for the fast response! >> >> I used >> https://s

Re: Eclipse: Invalid character constant

2011-04-05 Thread Eric Grobler
your > encoding and your classpath up. > > On Tue, Apr 5, 2011 at 6:10 PM, Eric Grobler >wrote: > > > Hi Everyone, > > > > Some language specific classes like GermanLightStemmer has invalid > > character > > compiler errors for code like: > >

Eclipse: Invalid character constant

2011-04-05 Thread Eric Grobler
Hi Everyone, Some language specific classes like GermanLightStemmer has invalid character compiler errors for code like: switch(s[i]) { case 'ä': case 'à ': case 'á': in Eclipse with JDK 1.6 How do I get rid of these errors? Thanks & Regards Ericz

Re: geodist and spacial search

2011-02-07 Thread Eric Grobler
=store&pt=49.45031,11.077721&; > d=40&fq={!bbox}&sort=geodist%28%29%20asc > > That will sort, and filter up to 40km. > > No need for the > > fq={!func}geodist() > sfield=store > pt=49.45031,11.077721 > > > Bill > > > > > On 2/4/

Re: geodist and spacial search

2011-02-04 Thread Eric Grobler
ilt} stuff on the wiki page. That gives > you your filter to restrict down your result set, then you can sort by exact > distance to get your sort of just those docs that make it through the > filter. > > > On Feb 3, 2011, at 10:24 AM, Eric Grobler wrote: > > > Hi Erick, >

Re: geodist and spacial search

2011-02-03 Thread Eric Grobler
that's independent of > the bbox, but > I could be wrong. > > Best > Erick > > On Wed, Feb 2, 2011 at 11:18 AM, Eric Grobler >wrote: > > > Hi > > > > In http://wiki.apache.org/solr/SpatialSearch > > there is an example of a bbox filter and a geodist function. > > > > Is it possible to do a bbox filter and sort by distance - combine the > two? > > > > Thanks > > Ericz > > >

Re: Solr and Eclipse

2011-02-02 Thread Eric Grobler
> I only use eclipse as a fancy text editor! Eclipse will feed insulted :-) I will just try to create hot keys to start/stop jetty manually. Thanks for your feedback Regards Ericz On Wed, Feb 2, 2011 at 4:26 PM, Robert Muir wrote: > On Wed, Feb 2, 2011 at 11:15 AM, Eric Grobler &

geodist and spacial search

2011-02-02 Thread Eric Grobler
Hi In http://wiki.apache.org/solr/SpatialSearch there is an example of a bbox filter and a geodist function. Is it possible to do a bbox filter and sort by distance - combine the two? Thanks Ericz

Re: Solr and Eclipse

2011-02-02 Thread Eric Grobler
> I always use New...Other...SVN...Checkout Projects from SVN And how do run in eclipse jetty in the example folder? Thanks for your help Ericz On Wed, Feb 2, 2011 at 12:43 PM, Robert Muir wrote: > On Tue, Feb 1, 2011 at 5:59 PM, Eric Grobler > wrote: > > Hi > > >

Re: Solr and Eclipse

2011-02-02 Thread Eric Grobler
> I always use New...Other...SVN...Checkout Projects from SVN Thanks, that seemed to work perfectly :-) On Wed, Feb 2, 2011 at 12:43 PM, Robert Muir wrote: > On Tue, Feb 1, 2011 at 5:59 PM, Eric Grobler > wrote: > > Hi > > > > I am a newbie and I am trying to run so

Solr and Eclipse

2011-02-01 Thread Eric Grobler
Hi I am a newbie and I am trying to run solr in eclipse. >From this url http://wiki.apache.org/solr/HowToContribute#Development_Environment_Tips there is a subclipse example: I use Team -> Share Project and this url: http://svn.apache.org/repos/asf/lucene/dev/trunk but I get a "access forbidd

Facet same field with different preifx

2010-12-03 Thread Eric Grobler
Hi Everyone, Can I facet the same field twice with a different prefix as per example below? facet.field=myfield f.myfield.facet.prefix=*make* f.myfield.facet.sort=count facet.field=myfield f.myfield.facet.prefix=*model* f.myfield.facet.sort=count Thanks and Regards Ericz

Re: Auto Suggest

2010-09-01 Thread Eric Grobler
the whole phrase as just one big term, the > wildcard is very fast. > > -Original Message- > From: Eric Grobler [mailto:impalah...@googlemail.com] > Sent: Wednesday, September 01, 2010 12:35 PM > To: solr-user@lucene.apache.org > Subject: Re: Auto Suggest > > Hi

Re: Auto Suggest

2010-09-01 Thread Eric Grobler
Hi Robert, Interesting approach, how many documents do you have in Solr? I have about 2 million and I just wonder if it might be a bit slow. Regards Johan On Wed, Sep 1, 2010 at 7:38 PM, Robert Petersen wrote: > I do this by replacing the spaces with a '%' in a separate search field > which is

Re: Filter Query question

2010-08-30 Thread Eric Grobler
Hi Grant, Thanks for the explanation. Regards ericz On Mon, Aug 30, 2010 at 3:22 PM, Grant Ingersoll wrote: > > On Aug 30, 2010, at 7:20 AM, Eric Grobler wrote: > > > Hi Solr Community > > > > If you use a filter like: > > q=*:* > > fq=make:Volksw

Filter Query question

2010-08-30 Thread Eric Grobler
Hi Solr Community If you use a filter like: q=*:* fq=make:Volkswagen and then the next query is: q=blue fq=make:Volkswagen will Solr use the filter cache before the main query, or only after a "blue" subset? In other words will this query make more sense? q=(blue) AND (make:Volkswagen)

Re: Slow facet sorting - lex vs count

2010-08-26 Thread Eric Grobler
Hi Yonik, Thanks for your help. I will check the memory. It might also be related to patch SOLR-792 tree faceting I installed. I will remove it and try the same query tomorrow again. Regards Eric On Wed, Aug 25, 2010 at 10:25 PM, Yonik Seeley wrote: > On Wed, Aug 25, 2010 at 7:22 AM, E

Re: Slow facet sorting - lex vs count

2010-08-25 Thread Eric Grobler
Hi Yonik, Thanks for the technical explanation. I will in general try to use lex and sort by count in the client if there are not too many rows. Have a nice day. Regards ericz On Wed, Aug 25, 2010 at 4:41 PM, Yonik Seeley wrote: > On Wed, Aug 25, 2010 at 10:07 AM, Eric Grobler >

Re: Slow facet sorting - lex vs count

2010-08-25 Thread Eric Grobler
speed regresses linearly, 30ms for 10, 300ms for 1000 etc. Regards Eric On Wed, Aug 25, 2010 at 3:28 PM, Yonik Seeley wrote: > On Wed, Aug 25, 2010 at 7:22 AM, Eric Grobler > wrote: > > There is a huge difference doing facet sorting on lex vs count > > The strange thing is tha

Slow facet sorting - lex vs count

2010-08-25 Thread Eric Grobler
Hi Solr experts, There is a huge difference doing facet sorting on lex vs count The strange thing is that count sorting is fast when setting a small limit. I realize I can do sorting in the client, but I am just curious why this is. FAST - 16ms facet.field=city f.city.facet.limit=5000 f.city.face

Re: Date faceting

2010-08-04 Thread Eric Grobler
Thanks Koji, It works :-) Have a nice day. regards ericz On Wed, Aug 4, 2010 at 12:08 PM, Koji Sekiguchi wrote: > (10/08/04 19:42), Eric Grobler wrote: > >> Hi Solr community, >> >> How do I facet on timestamp for example? >> >> I tried something like thi

Date faceting

2010-08-04 Thread Eric Grobler
Hi Solr community, How do I facet on timestamp for example? I tried something like this - but I get no result. facet=true facet.date=timestamp f.facet.timestamp.date.start=2010-01-01T00:00:00Z f.facet.timestamp.date.end=2010-12-31T00:00:00Z f.facet.timestamp.date.gap=+1HOUR f.facet.timestamp.dat

Re: Tree Faceting in Solr 1.4

2010-07-29 Thread Eric Grobler
and I've just not caught up with mails yet?) > >Erik > > > On Jul 23, 2010, at 10:26 AM, Eric Grobler wrote: > > Hi Erik, >> >> I must be doing something wrong :-( >> I took: >> svn co https://svn.apache.org/repos/asf/lucene/dev/trunk myte

Re: A German Question

2010-07-29 Thread Eric Grobler
Hi Christian, Thank you - sounds good - I will try that. regards Ericz On Thu, Jul 29, 2010 at 12:04 PM, Christian Vogler < christian.vog...@gmail.com> wrote: > On Thursday 29 of July 2010 14:00:21 Eric Grobler wrote: > > But faceting then looks like: > > molln >

A German Question

2010-07-29 Thread Eric Grobler
Hi Solr world, I have a city field with german city names like: Mölln München Roßdorf and I want to do filters like: fq=city:München or fq=city:munchen I use this type definition: But faceting then looks like: molln munchen rossdorf How can

Re: LucidWorks 1.4 compilation

2010-07-27 Thread Eric Grobler
I did not realize the LucidWords.jar comes with an option to install the sources :-) On Tue, Jul 27, 2010 at 10:59 AM, Eric Grobler wrote: > Good Morning, afternoon or evening... > > If someone installed Solr using the LucidWorks.jar (1.4) installation how > can one make a smal

LucidWorks 1.4 compilation

2010-07-27 Thread Eric Grobler
Good Morning, afternoon or evening... If someone installed Solr using the LucidWorks.jar (1.4) installation how can one make a small change and recompile. Is there a LucidWorks (tomcat) build somewhere? Regards ericz

Re: Tree Faceting in Solr 1.4

2010-07-23 Thread Eric Grobler
rt > of Solr built-in, but the TODO's in TreeFacetComponent ought to be taken > care of first, to generalize this to N fields levels and maybe some other > must/nice-to-haves. > > Erik > > > > On Jul 23, 2010, at 3:45 AM, Eric Grobler wrote: > > Thanks I saw

Re: Tree Faceting in Solr 1.4

2010-07-23 Thread Eric Grobler
k is an important one that I'd love to see eventually part > of Solr built-in, but the TODO's in TreeFacetComponent ought to be taken > care of first, to generalize this to N fields levels and maybe some other > must/nice-to-haves. > >Erik > > > > On Jul 2

Solr 3.1 dev

2010-07-23 Thread Eric Grobler
Hi Everyone I have a few questions :-) a) Will the next release of solr be 3.0 (instead of 1.5)? b) How stable/mature is the current 3x version? c) Is LocalSolr implemented? where can I find a list of new features? d) Is this the correct method to download the lasted stable version? svn co htt

Re: Tree Faceting in Solr 1.4

2010-07-23 Thread Eric Grobler
able to do same on third level ..Like facet.field= Give me the > counts of cities also in state Karantaka.. > Let me know solution for this... > > Regards, > Rajani Maski > > > > > > On Thu, Jul 22, 2010 at 10:13 PM, Eric Grobler >wrote: > > > Thank y

Re: Tree Faceting in Solr 1.4

2010-07-22 Thread Eric Grobler
; http://www.craftyfella.com/2010/01/faceting-and-multifaceting-syntax-in.html > > -S > > > On Jul 22, 2010, at 5:39 PM, Eric Grobler wrote: > > > Hi Solr Community > > > > If I have: > > COUNTRY CITY > > Germany Berlin > > Germany Hamburg > > Spai

Tree Faceting in Solr 1.4

2010-07-22 Thread Eric Grobler
Hi Solr Community If I have: COUNTRY CITY Germany Berlin Germany Hamburg Spain Madrid Can I do faceting like: Germany Berlin Hamburg Spain Madrid I tried to apply SOLR-792 to the current trunk but it does not seem to be compatible. Maybe there is a similar feature existing in the latest

Re: multi-valued associated fields

2010-05-13 Thread Eric Grobler
Hi Ahmed Thanks again for sharing your insight and experience. I will discuss the multi-core approach with members of our team. Regards Eric On Wed, May 12, 2010 at 9:24 PM, ahammad wrote: > > In our deployment, we thought that complications might arise when > attempting > to hit the Solr serv

Re: multi-valued associated fields

2010-05-12 Thread Eric Grobler
Hi Ahmed, Interesting, I did not think of a multi-core approach. I am not sure, but we might have upto 10 different kinds of data to contend with like property, pets, farming, electronics, travel, auto, jobs, sport etc that might complicate things. Also, one practical limitation we have, is that

Re: multi-valued associated fields

2010-05-12 Thread Eric Grobler
ic fields? Again I'm not sure that works for > you, but > might be worth a look. > > Best > Erick > > On Wed, May 12, 2010 at 4:17 AM, Eric Grobler >wrote: > > > Hi Aditya, > > > > Thanks for your response. > > Yes, a category type would be n

Re: multi-valued associated fields

2010-05-12 Thread Eric Grobler
using faceting queries, You could acheive this. > > Regards > Aditya > www.findbestopensource.com > > > > > On Wed, May 12, 2010 at 12:29 PM, Eric Grobler >wrote: > > > Hallo Solr community, > > > > We are considering Solr for searching on co

multi-valued associated fields

2010-05-12 Thread Eric Grobler
Hallo Solr community, We are considering Solr for searching on content from various partners with wildly different content. Is it possible or practical to work with multi-valued associated fields like this? "Make:Audi, Model:A4, Color:Blue, Year:1998, KM:20, Extras:GPS" "Type:Flat, Rooms:2, P

Re: Embedded Solr search query

2010-05-11 Thread Eric Grobler
#x27;org.apache.solr. > < > http://hudson.zones.apache.org/hudson/job/Solr-trunk/clover/org/apache/solr > /handler/pkg-summary.html<http://hudson.zones.apache.org/hudson/job/Solr-trunk/clover/org/apache/solr%0A/handler/pkg-summary.html>> > handler' > > > > >

Re: Embedded Solr search query

2010-05-07 Thread Eric Grobler
> > > Why not write a custom request handler which can parse, split, execute > and > > combine results to your queries? > > > > > > > > > > > > > > > > From: Eric Grobler [via Lucene] > > [mailto:ml-node+783150-1027691461-124...

Re: Embedded Solr search query

2010-05-07 Thread Eric Grobler
te and > combine results to your queries? > > > > > > > > From: Eric Grobler [via Lucene] > [mailto:ml-node+783150-1027691461-124...@n3.nabble.com > ] > Sent: Friday, May 07, 2010 1:01 AM > To: caman > Subject: Embedded Solr search query > > > >

Embedded Solr search query

2010-05-07 Thread Eric Grobler
Hello Solr community, When a user search on our web page, we need to run 3 related but different queries. For SEO reasons, we cannot use Ajax so at the moment we run 3 queries sequentially inside a PHP script. Allthough Solr is superfast, the extra network overhead can make the 3 queries 400ms sl