SOLR-236 patch errors

2008-06-20 Thread JLIST
Although field collpasing worked fine in my brief testing, when I put it to work with more documents, I start to get exceptions. It seems to have something to do with the queries (or documents, since different queries return different documents). With some queries, this exception does not happen.

Re[2]: Seeking suggestions - keyword related site promotion

2008-06-19 Thread JLIST
in the query... If there is no list here and you're just indexing all the content of all these sites... isn't that what Nutch is designed for? -- Steve On Jun 18, 2008, at 11:05 PM, JLIST wrote: Hi all, This is what I'm trying to do: since some sources (say, some web sites) are more

SOLR-236 patch works

2008-06-18 Thread JLIST
I had the patch problem but I manually created that file and solr nightly builds fine. After replacing solr.war with apache-solr-solrj-1.3-dev.jar, in solrconfig.xml, I added this: searchComponent name=collapse class=org.apache.solr.handler.component.CollapseComponent / Then added this to the

Re[2]: Feature idea - delete and commit from web interface ?

2008-06-18 Thread JLIST
GET makes it possible to delete from a browser address bar, which you can not do with DELETE :) As for POST vs. GET - don't let REST purists hear you. :) Actually, isn't there a DELETE HTTP method that REST purists would say should be used in case of doc deletion?

Re[2]: Feature idea - delete and commit from web interface ?

2008-06-18 Thread JLIST
Sounds like web designer's fault. No permission check and no confirmation for deletion? Never, never delete with a GET. The Ultraseek spider deleted 20K docments on an intranet once because they gave it admin perms and it followed the delete this page link on every page.

Re[4]: How to limit number of pages per domain

2008-06-17 Thread JLIST
Hmm... I tried it with a Windows native port of patch, cygwin patch and also on Linux and got the same error. Is this, by any chance, going to be in solr 1.3 soon? Thanks, Jack That looks like the correct way to apply the patch. I tried it and it worked for me. Otis - Original

Re[2]: How to limit number of pages per domain

2008-06-16 Thread JLIST
Hello Otis, https://issues.apache.org/jira/browse/SOLR-236 has links for a lot of files. I figure this is what I need: 10. solr-236.patch (24 kb) So I downloaded the patch file, and also downloaded 2008/06/16 nightly build, then I ran this, and got an error: $ patch -p0 -i solr-236.patch

Re[3]: the time factor

2008-05-22 Thread JLIST
Hello Chris, : If this is how it works, it sounds like the bq will be used first : to get a result set, then the result set will be sorted by q : (relevance)? no. bq doesn't influence what matches -- that's q -- bq only influence the scores of existing matches if they also match the bq.

Re[2]: the time factor

2008-05-21 Thread JLIST
Hello Chris, it sounds like you only attempted tweaking the boost value, and not tweaking the function params ... you can change the curve so that really new things get a large score increase, but older things get less of an increase. recip(rord(creationDate),1,a,b)^w I was tweaking the

Re[2]: the time factor

2008-05-20 Thread JLIST
Hello Otis, Could you be a bit more specific or point me to some documentation pages? Can this be done through modifying schema and solrconfig or does it involve some coding? This sounds like a generic problem to me so I'm hoping to find a generic solution. Thanks, Jack Tuesday, May 20, 2008,

Re[2]: definition of field types?

2008-05-05 Thread JLIST
Thanks Otis. The schema.xml actually explains it very well! A good place to look is the Wiki. Look for Analyzer substring on the main Solr wiki page. I must be overlooking ... where can I find definitions of the built-in types such as textTight, text_ws, etc?

definition of field types?

2008-05-04 Thread JLIST
I must be overlooking ... where can I find definitions of the built-in types such as textTight, text_ws, etc?

startsWith?

2008-05-03 Thread JLIST
Hi, I wonder it's possible search for text/string fields that starts with a substring, similar to Java's startsWith function? For example, if I have a URL indexed as text or string field, can I find URLs that starts with http://domain/articles/2008/; ? If not, what's the best way to implement a

Re[2]: startsWith?

2008-05-03 Thread JLIST
docs with that URL prefix. - Original Message From: JLIST [EMAIL PROTECTED] To: solr-user@lucene.apache.org Sent: Saturday, May 3, 2008 9:59:47 PM Subject: startsWith? Hi, I wonder it's possible search for text/string fields that starts with a substring, similar to Java's

disMax and field name

2008-02-27 Thread JLIST
Hi all, Just want to confirm that when dismax request handler is used, fields in q is not supported? I'm asking because this query gives one result: http://localhost:8983/solr/select/?q=id%3A2023706version=2.2start=0rows=10indent=on while this gives 0, the only difference being the qt argument in

/solr/admin not found

2008-02-27 Thread JLIST
This is an old problem that has been reported before. After solr running for a while, /solr/admin becomes unavailable while search still works. I'm using embedded jetty. This is solr 1.2. Any chance this has been fixed in the development branch?