Re: Similarity

2010-06-24 Thread Dave Searle
You could write some client code to translate your query into the following (Foo and baz) or (foo or baz) This seems to work well for me On 24 Jun 2010, at 21:20, Blargy wrote: > > > Yonik Seeley-2-2 wrote: >> >> Depends on the larger context of what you are trying to do. >> Do you still wa

Re: Spatial Search - Best choice (if any)?

2010-07-16 Thread Dave Searle
I'm also just starting a project requiring spatial indexing so any info would be greatly appreciated. I had a quick look at the wiki last night and it appears solr has it built in in the latest version? Not sure if the patches need applying directly though My requirements are quite simple, I j

RE: faceted search with job title

2010-07-21 Thread Dave Searle
You'd probably need to do some post processing on the pages and set up rules for each website to grab that specific bit of data. You could load the html into an xml parser, then use xpath to grab content from a particular tag with a class or id, based on the particular website -Original M

Re: faceted search with job title

2010-07-21 Thread Dave Searle
ly > look > for specific sequence of tags that leads to job title. Most of them don't > even > have class or id. There is no guarantee that the job title will be in the > title > > tag, or header tag. Something else can be in the title. Should I do this in >

Re: Query Result is not updated based on the new XML files

2010-08-06 Thread Dave Searle
Did you commit your changes? On 6 Aug 2010, at 04:52, twojah wrote: > > hi everyone, > I run the query from the browser: > http://172.16.17.126:8983/search/select/?q=AUC_CAT:978 > > the query is based on cat_978.xml which was produced by my PHP script > and I got the correct result like this:

RE: solr user

2010-09-07 Thread Dave Searle
You probably need to use the file:// moniker - if using firefox, install firebug and use the net panel to see if the includes load -Original Message- From: ankita shinde [mailto:ankitashinde...@gmail.com] Sent: 07 September 2010 18:22 To: solr-user@lucene.apache.org Subject: solr user h

Re: Shuffle results a little

2010-11-12 Thread Dave Searle
You could also try splitting the brand name from the product name into a separate field and then boosting on the product name? Sent from my iPhone On 12 Nov 2010, at 20:32, Ahmet Arslan wrote: >> I am interested in using solr to return search results for >> products. Is >> there any feature w

RE: Solr on Google App Engine

2010-12-13 Thread Dave Searle
EC2 installations are just windows/linux machines, so this would just be a normal setup. I have a solr server running on a small instance with 1.7gb ram mounted to an EBS volume of 50gb, seems to run fine. Costs about $115 a month -Original Message- From: Praveen Agrawal [mailto:pkal...@

RE: Google like search

2010-12-14 Thread Dave Searle
Highlighting is exactly what you need, although if you highlight the whole book, this could slow down your queries. Index/store the first 5000-1 characters and see how you get on -Original Message- From: satya swaroop [mailto:satya.yada...@gmail.com] Sent: 14 December 2010 10:08 To:

Re: REGEX Proper Usage?

2011-06-17 Thread Dave Searle
Maybe try ([^a-z0-9]+) Sent by CarrierPigeon On 17 Jun 2011, at 20:26, Adam Estrada wrote: > All, > > I am having trouble getting my regex pattern to work properly. I have tried > PatternReplaceFilterFactory after the standard tokenizer > > replacement=" " replace="all"/> > > and PatternRep

RE: Thanks

2009-08-27 Thread Dave Searle
Hi Gwk, It's a nice clean site, easy to use and seems very fast, well done! How well does it do in regards to SEO though? I noticed there's a lot of ajax going on in the background to help speed things up for the user (love the sliders), but seems to be lacking structure for the search engines.

Re: weird problem with letters S and T

2009-10-28 Thread Dave Searle
Or just reload the app pool. No need to restart the whole server On 28 Oct 2009, at 23:23, "Bernadette Houghton" wrote: > Joel, did you restart tomcat? Need to restart each time you change > schema.xml. > bern > > -Original Message- > From: Joel Nylund [mailto:jnyl...@yahoo.com] > Sen

SOLR-139 (Support updateable/modifiable documents)

2008-06-24 Thread Dave Searle
field represents the messages attached to this thread). Thanks, Dave Dave Searle Lead Developer MPS Magicalia Ltd. Thank you for your interest in Magicalia Media. www.magicalia.com Special interest communities are Magicalia's mission in life. Magicalia publishes specialist web

RE: SOLR-139 (Support updateable/modifiable documents)

2008-06-24 Thread Dave Searle
- Solr - Nutch - Original Message ---- > From: Dave Searle <[EMAIL PROTECTED]> > To: "solr-user@lucene.apache.org" > Sent: Tuesday, June 24, 2008 8:34:47 AM > Subject: SOLR-139 (Support updateable/modifiable documents) > > Hi, > > > > Does anyone kn

RE: SOLR-139 (Support updateable/modifiable documents)

2008-06-24 Thread Dave Searle
--Original Message- From: Norberto Meijome [mailto:[EMAIL PROTECTED] Sent: 24 June 2008 16:16 To: solr-user@lucene.apache.org Subject: Re: SOLR-139 (Support updateable/modifiable documents) On Tue, 24 Jun 2008 16:04:24 +0100 Dave Searle <[EMAIL PROTECTED]> wrote: > At the moment I hav

RE: Search based on price range

2008-11-07 Thread Dave Searle
You could have a multivalued field for Price and also store minPrice and maxPrice fields against the product document. You could then search between the min and max price and present the user with the relevant price categories that fall within that range. -Original Message- From: Anto B

Re: Query 2 Cats

2010-01-26 Thread Dave Searle
Try > q=string AND (cat:name1 OR cat:name2) On 26 Jan 2010, at 18:53, "Lee Smith" wrote: > Sorry of this is a poor Q but cant seem to get it to work. > > I have a field called cat setup so I can query against specific > categories. > > It ok I search all or one but cant seem to make it searc

Re: Run Solr within my war

2010-02-18 Thread Dave Searle
Why would you want to? Surely having it seperate increases scalablity? On 18 Feb 2010, at 22:23, "Pulkit Singhal" wrote: > Hello Everyone, > > I do NOT want to host Solr separately. I want to run it within my war > with the Java Application which is using it. How easy/difficult is > that to se

Re: Multicore Example

2010-02-19 Thread Dave Searle
Do you have something else using port 8983 or 8080? Sent from my iPhone On 19 Feb 2010, at 19:22, "Lee Smith" wrote: > Hey All > > Trying to dip my feet into multicore and hoping someone can advise > why the example is not working. > > Basically I have been working with the example single cor

Re: Multicore Example

2010-02-19 Thread Dave Searle
Are you on windows? Try netstat -a Sent from my iPhone On 19 Feb 2010, at 20:02, "Lee Smith" wrote: > How can I find out ?? > > > On 19 Feb 2010, at 19:26, Dave Searle wrote: > >> Do you have something else using port 8983 or 8080? >> >> Sent from my

Re: If you could have one feature in Solr...

2010-02-26 Thread Dave Searle
To have a coffee waiting for me every morning when I wake up. Marriage material indeed.

Re: If you could have one feature in Solr...

2010-02-27 Thread Dave Searle
Haha, superb! Have never noticed that before! That's made my day Grant :-) On 27 Feb 2010, at 12:13, "Grant Ingersoll" wrote: > > On Feb 26, 2010, at 11:28 PM, Dave Searle wrote: > >> To have a coffee waiting for me every morning when I wake up. >> Mar

RE: Highlighting Results

2010-03-12 Thread Dave Searle
Hi Lee, What issues are you having mate? The highlighted fragments appear in a different section to the response, toward the bottom (can't remember the element names without referring to the docs). The stored fields returned are not replaced with the highlighted fragments. Cheers Dave -O

RE: Best Open Source

2010-04-20 Thread Dave Searle
First impressions, nice site - some feedback: 1) It would be good if the tags in the central column were real facets rather than search tags, i.e. they changed depending on my search or selection and drilled down to filter results out. 2) It would be good if users could also review and rate the

Re: run on reboot on windows

2010-05-01 Thread Dave Searle
Set tomcat6 service to auto start on boot (if running tomat) Sent from my iPhone On 2 May 2010, at 02:31, "S Ahmed" wrote: > Hi, > > I'm trying to get Solr to run on windows, such that if it reboots > the Solr > service will be running. > > How can I do this?

Re: run on reboot on windows

2010-05-02 Thread Dave Searle
>> >> >> >> From: S Ahmed [via Lucene] >> [mailto:ml-node+772174-2097041460-124...@n3.nabble.com> %2b772174-2097041460-124...@n3.nabble.com> >> ] >> Sent: Sunday, May 02, 2010 4:33 PM >> To: caman >> Subject: Re: run on reboot on windows >> &

Re: run on reboot on windows

2010-05-03 Thread Dave Searle
:05 > To: solr-user@lucene.apache.org > Subject: Re: run on reboot on windows > > Thanks, for some reason I was looking for a solution outside of > jetty/tomcat, when that was the obvious way to get things restarted :) > > On Sun, May 2, 2010 at 7:53 PM, Dave Searle > wrote: >