Solr 1.4 schedule?

2009-08-04 Thread Robert Young
Hi, When is Solr 1.4 scheduled for release? Is there any ballpark date yet? Thanks Rob

Re: Nwebie Question on boosting

2008-12-10 Thread Robert Young
On Thu, Dec 11, 2008 at 6:49 AM, ayyanar [EMAIL PROTECTED]wrote: 1) Can you given an example for field level boosting and document level boosting and the difference between two? Field level boosting is used when one field is considered more or less important than another. For example, you may

Response status

2008-12-04 Thread Robert Young
In the standard response format, what does the status mean? It always seems to be 0. Thanks Rob

Re: Response status

2008-12-04 Thread Robert Young
Thanks On Thu, Dec 4, 2008 at 2:53 PM, Erik Hatcher [EMAIL PROTECTED]wrote: It means the request was successful. If the status is non-zero (err, 1) then there was an error of some sort. Erik On Dec 4, 2008, at 9:32 AM, Robert Young wrote: In the standard response format, what

Re: Mock solr server

2008-11-28 Thread Robert Young
of the Embedded SOLR component in your unit tests.. On 11/27/08, Robert Young [EMAIL PROTECTED] wrote: Hi, Does anyone know of an easy to use Mock solr server? Thanks Rob -- Jeryl Cook /^\ Pharaoh /^\ http://pharaohofkush.blogspot.com/ Whether we bring our enemies to justice

Re: upgrading to lucene 2.3

2008-02-12 Thread Robert Young
problems if you use SOLR-342 with lucenAutoCommit == false. But, yes, you should be able to drop in 2.3, as that is one of the back-compatible goals for Lucene minor releases. -Grant On Feb 12, 2008, at 8:06 AM, Robert Young wrote: I have heard that upgrading to lucene 2.3 in Solr 1.2

upgrading to lucene 2.3

2008-02-12 Thread Robert Young
I have heard that upgrading to lucene 2.3 in Solr 1.2 is as simple as replacing the lucene jar and restarting. Is this the case? Has anyone had any experience with upgrading lucene to 2.3? Did you have any problems? Is there anything I should be looking out for? Thanks Rob

search abstraction library for PHP

2008-02-06 Thread Robert Young
Hi, Thought you guys might be interested, I'm working on a search abstraction library for PHP called Forage, you can check it out at the link below. At the moment it just supports basic indexing and searching with Solr, Xapian and Zend Search Lucene but I'm hoping to add more engines and more

Re: Luke response format explained

2008-01-09 Thread Robert Young
On Jan 8, 2008 8:13 PM, Ryan McKinley [EMAIL PROTECTED] wrote: Perhaps consider using a copyField to copy the relevant values into another field - then you can get the top tokens across all these fields with luke. That sounds like the best solution, thanks. Also means I'd be able to have it

Re: Duplicated Keyword

2008-01-04 Thread Robert Young
I don't quite understand what you're getting at. What is the problem you're encountering or what are you trying to achieve? Cheers Rob On Jan 4, 2008 3:26 PM, Jae Joo [EMAIL PROTECTED] wrote: Hi, Is there any way to dedup the keyword cross the document? Ex. china keyword is in doc1 and

Re: Duplicated Keyword

2008-01-04 Thread Robert Young
:54 AM, Robert Young [EMAIL PROTECTED] wrote: I don't quite understand what you're getting at. What is the problem you're encountering or what are you trying to achieve? Cheers Rob On Jan 4, 2008 3:26 PM, Jae Joo [EMAIL PROTECTED] wrote: Hi, Is there any way to dedup

Disabling the cache?

2007-12-14 Thread Robert Young
Hi, Is it possible to disable all the caches in Solr. We want to be able to load test our Solr based application but we don't want the caches to affect the results (we're using Apache benchmark so just sending the same request over and over again). Cheers Rob

Re: Boosting and copy fields

2007-11-30 Thread Robert Young
Right, ok, thanks. On Nov 30, 2007 2:14 PM, Yonik Seeley [EMAIL PROTECTED] wrote: On Nov 30, 2007 7:18 AM, Robert Young [EMAIL PROTECTED] wrote: How does the copy field with boosted fields? If I have three fields with different boost values and they all get copied into a copy field

Boosting and copy fields

2007-11-30 Thread Robert Young
Hi, How does the copy field with boosted fields? If I have three fields with different boost values and they all get copied into a copy field, are these boosts taken into account during searching? Cheers Rob

fieldNorm seems to be killing my score

2007-11-01 Thread Robert Young
Hi, I've been trying to debug why one of my test cases doesn't work. I have an index with two documents in, one talking mostly about apples and one talking mostly about oranges (for the sake of this test case) both of which have 'test_site' in their site field. If I run the query +(apple^4

Re: fieldNorm seems to be killing my score

2007-11-01 Thread Robert Young
the data (straight HTTP, SolrJ, etc)? What does your schema for this field (and copyFields) look like? -Yonik On 11/1/07, Robert Young [EMAIL PROTECTED] wrote: Hi, I've been trying to debug why one of my test cases doesn't work. I have an index with two documents in, one talking mostly about

Can't get query when using xslt

2007-10-30 Thread Robert Young
Hi, I'm using the XsltResponseWriter but I can't seem to get hold of the query. I have copied in the xsl file I'm using but basically, I'm trying to access the query element of the params list but I'm getting nothing back. I've edited the xsl file a bit and as far as I can see the whole params

Re: preconfiguring which xsl file to use

2007-10-19 Thread Robert Young
Thanks Eric. For the moment we're only using one requestHandler for basic querying so that should work OK Cheers Rob On 10/19/07, Erik Hatcher [EMAIL PROTECTED] wrote: On Oct 19, 2007, at 8:30 AM, Robert Young wrote: Is it possible to configure which xsl file to use for a particular

preconfiguring which xsl file to use

2007-10-19 Thread Robert Young
Hi, Is it possible to configure which xsl file to use for a particular queryResponseWriter in the solrconfig.xml? I would like to have something like the following so that I don't have put it in for every query. queryResponseWriter name=opensearch default=true

Querying for an id with a colon in it

2007-10-15 Thread Robert Young
Hi, If my unique identifier is called guid and one of the ids in it is, for example, article:123. How can I query for that article id? I have tried a number of ways but I always either get no results or an error. It seems to be to do with having the colon in the id value. eg. ?q=guid:article:123

Re: Querying for an id with a colon in it

2007-10-15 Thread Robert Young
Hey, Thanks Brian, that works perfectly. Cheers Rob On 10/15/07, Brian Carmalt [EMAIL PROTECTED] wrote: Robert Young schrieb: Hi, If my unique identifier is called guid and one of the ids in it is, for example, article:123. How can I query for that article id? I have tried a number

Opensearch XSLT

2007-10-12 Thread Robert Young
Hi, Does anyone know of an XSLT out there for transforming Solr's default output to Opensearch format? Our current frontend system uses opensearch so we would like to integrate it like this. Cheers Rob

Does Solr Have?

2007-10-04 Thread Robert Young
Hi, We're just about to start work on a project in Solr and there are a couple of points which I haven't been able to find out from the wiki which I'm interested in. 1. Is there a REST interface for getting index stats? I would particularly like access to terms and their document frequencies,

Re: Does Solr Have?

2007-10-04 Thread Robert Young
Brilliant, thank you, that LukeRequestHandler looks very useful. On 10/4/07, Erik Hatcher [EMAIL PROTECTED] wrote: 3. Is it possible to change stopword and synonym sets at runtime? Only if the underlying text file is changed. Will Solr automatically reload the file if it changes or does it

Re: Does Solr Have?

2007-10-04 Thread Robert Young
Is there, or are there plans to start, a plugin and extension repository? Cheers Rob On 10/4/07, Ryan McKinley [EMAIL PROTECTED] wrote: dooh, should check all my email first! Will Solr automatically reload the file if it changes or does it have to be informed of the change? I'll