Re: How to run Solr on Linux ?

2008-06-06 Thread Yonik Seeley
On Fri, Jun 6, 2008 at 1:13 AM, Akeel [EMAIL PROTECTED] wrote: I downloaded Solr and successfully run it (by running *java -jar start.jar *from *example *directory) on windows machine but when i try to run it (in the same way as i did on windows) on my linux machine, i get following error:

Re: Solr 1.3 - leading wildcard query feature?

2008-06-06 Thread Maximilian Hütter
Erik Hatcher schrieb: On Jun 5, 2008, at 10:13 AM, Maximilian Hütter wrote: I haven't followed the discussion here closly but I am interested if Solr 1.3 will have the feature of leading wildcard in a query. I remember reading a discussion about it and making it configurable, which is

Analytics e.g. Top 10 searches

2008-06-06 Thread McBride, John
Hello, Is anybody familiar with any SOLR-based analytical tools which would allow us to extract top ten seaches, for example. I imagine at the query parse level, where the query is tokenized and filtered would be the best place to log this, due to the many permutations possible at the user

Re: scaling / sharding questions

2008-06-06 Thread Marcus Herou
Cool sharding technique. We as well are thinking of howto move docs from one index to another because we need to re-balance the docs when we add new nodes to the cluster. We do only store id's in the index otherwise we could have moved stuff around with IndexReader.document(x) or so. Luke

Re: An unusual question for the experts -- *term* boosting for individual documents?

2008-06-06 Thread Tricia Williams
Payloads could be the answer but I don't think there is any cross over into what I've been working on with Payloads (https://issues.apache.org/jira/browse/SOLR-380 has what I last posted which is pretty much what we're using now. I've also posted related SOLR-532 and SOLR-522). What you

Re: Release date of SOLR 1.3

2008-06-06 Thread Martin Owens
Sounds like you need a feature freeze branch. As for legal issues about letting people know about unofficial builds... it's open source right, so the waiver at the top is pretty explicit. On Thu, 2008-06-05 at 16:47 -0700, Ryan Grange wrote: It would be nice to see some kind of update to the

Re: Analytics e.g. Top 10 searches

2008-06-06 Thread Matthew Runo
I'm nearly certain that everyone who maintains these stats does it themselves in their 'front end'. It's very easy to log terms and whatever else just before or after sending the query off to Solr. Thanks! Matthew Runo Software Developer Zappos.com 702.943.7833 On Jun 6, 2008, at 3:51 AM,

Re: solr query syntax

2008-06-06 Thread Otis Gospodnetic
Hi Cam, Unless I'm misunderstanding your question, you should be able to do that pretty just like you typed it. If you enter that on Solr /admin page, do you get an error or do you not get the desired results? If you add debugQuery=true to the URL, you will see what query is getting executed.

Re: An unusual question for the experts -- *term* boosting for individual documents?

2008-06-06 Thread Andreas von Hessling
Thanks to both of you. I understand from your replies that setting the payloads for terms (per-document) is easy and the BoostingTermQuery can be used to set payloads on the query side. Getting this to work in Solr would require significant work though. I wish I had the time to do that, but

Re: highlighting fragment

2008-06-06 Thread Mike Klaas
On 5-Jun-08, at 8:31 PM, Kevin Xiao wrote: Hi, I have a question about highlighting fragment. I set hl.fragsize to 100, but the return is cut off from a middle of a sentence with correct search term highlighting though. Is there a way to make the cutoff to the beginning of a sentence?

Re: Release date of SOLR 1.3

2008-06-06 Thread Mike Klaas
We're basically in that state already for the trunk. I don't think that we need a separate branch unless there is a big movement toward starting a new big non-1.3 feature before 1.3 is released. If that happens, we'll see what needs to be done to keep development going. -Mike On

Re: boost ignored with wildcard queries

2008-06-06 Thread David Smiley @MITRE.org
Curious... Why is ConstantScoreQuery only applied to prefix queries? Your rationale suggests that it is also applicable wildcard query and fuzzy query too (basically any place an analyzer isn't used). ~ David Smiley Yonik Seeley wrote: On Tue, Feb 26, 2008 at 7:23 PM, Head [EMAIL

Re: boost ignored with wildcard queries

2008-06-06 Thread Yonik Seeley
On Fri, Jun 6, 2008 at 5:16 PM, David Smiley @MITRE.org [EMAIL PROTECTED] wrote: Curious... Why is ConstantScoreQuery only applied to prefix queries? Your rationale suggests that it is also applicable wildcard query and fuzzy query too (basically any place an analyzer isn't used). I think