Re: Multiple Facet prefixes on the same facet field in one request?

2009-12-11 Thread Shalin Shekhar Mangar
On Thu, Dec 10, 2009 at 9:47 PM, Robert Purdy r...@shoptoit.ca wrote: Hey there Shalin, After scrolling through the Jira Issues I found, http://issues.apache.org/jira/browse/SOLR-1387, discussing this exact thing.Is anyone currently working on a patch for this issue still? If not has the

Re: Custom Field sample?

2009-12-11 Thread Antonio Zippo
I need to add theese features to each document Document1 --- Argument1, positive Argument2, positive Argument3, neutral Argument4, positive Argument5, negative Argument6, negative Document2 --- Argument1, negative Argument2, positive Argument3, negative Argument6,

SolrClient::query(): Solr HTTP Error : 'Couldn't connect to server'

2009-12-11 Thread regany
hi, I've (hopefully correctly) install the solr php extension. But I'm receiving the following error when trying to run my test script: SolrClient::query(): Solr HTTP Error : 'Couldn't connect to server' Any ideas how to figure out why it's giving the error?? regan ?php /* Domain name of

Sol server is not set up ??

2009-12-11 Thread regany
Hello! I'm trying to successfully build/install the PHP Solr Extension, but am running into an error when doing a make test - the following 4 tests fail, the other 17 pass. The Solr server is definately running because I can access it via the admin URL. Anyone know what else may be causing the

Using facets to narrow results with multiword field

2009-12-11 Thread Tomasz Kępski
Hi, I'm trying to prepare narrow you search functionality using facets. I do have some products and would like to use a brand as a narrow filter. I did prepare in schema 2 fileds: fieldType name=brand_string class=solr.TextField sortMissingLast=true omitNorms=true

Re: Using facets to narrow results with multiword field

2009-12-11 Thread Tomasz Kępski
Correction: I'm using facet.field=lbrand and do get good results for eg: Geomag, GeoMag, GEOMAG all of them falls into geomag. But when I'm filtering I do get strange results: brand:geomag gives numFound=0 lbrand:geomag gives numFound=57 (GEOMAG, GeoMag, Geomag) How should I redefine

Re: Sol server is not set up ??

2009-12-11 Thread Israel Ekpo
On Fri, Dec 11, 2009 at 7:54 AM, regany re...@newzealand.co.nz wrote: Hello! I'm trying to successfully build/install the PHP Solr Extension, but am running into an error when doing a make test - the following 4 tests fail, the other 17 pass. The Solr server is definately running because I

Re: SolrClient::query(): Solr HTTP Error : 'Couldn't connect to server'

2009-12-11 Thread Israel Ekpo
On Fri, Dec 11, 2009 at 6:49 AM, regany re...@newzealand.co.nz wrote: hi, I've (hopefully correctly) install the solr php extension. But I'm receiving the following error when trying to run my test script: SolrClient::query(): Solr HTTP Error : 'Couldn't connect to server' Any ideas how

Simple Wildcard Search Question

2009-12-11 Thread QBasti
Hey there, I'm pretty new to SOLR and I tried to understand the essentials of searching, analyzing etc.. As far as I understand, when I index the string name01 it gets split into name as well as 01. So when I'm searching for either name or 01 oder name01, i'm getting the right result. But since,

RE: Simple Wildcard Search Question

2009-12-11 Thread Ankit Bhatnagar
Firstly wild card queries are not analysed by Solr. Also there is a difference between stored and indexed fields. Ankit -Original Message- From: QBasti [mailto:sebastian.f...@gmail.com] Sent: Friday, December 11, 2009 11:40 AM To: solr-user@lucene.apache.org Subject: Simple Wildcard

Re: Multiple Facet prefixes on the same facet field in one request?

2009-12-11 Thread Robert Purdy
Well I looked at SOLR-1351 and applied the patch and that seems to do everything that I need. The local param syntax definitely the way to go. Robert, On 2009-12-11, at 2:53 AM, Shalin Shekhar Mangar wrote: On Thu, Dec 10, 2009 at 9:47 PM, Robert Purdy r...@shoptoit.ca wrote: Hey there

RE: SolrPlugin Guidance

2009-12-11 Thread Vauthrin, Laurent
It looks like the SolrQueryParser constructor accepts an analyzer as a parameter. That seems to do the trick. Although feel free to respond anyway if you have a comment on the approach :) -Original Message- From: solr-user-return-30215-laurent.vauthrin=disney@lucene.apache.org

Re: Simple Wildcard Search Question

2009-12-11 Thread Erick Erickson
In addition to Ankit's comments, SOLR manipulates the input for each field according to the rules that govern the tokenizers and filters that you define in your schema. This page is very valuable, although it takes a while to get comfortable with it...

RE: full-text indexing XML files

2009-12-11 Thread Feroze Daud
CDATA didn’t work either.It still complained about the input doc not being in correct format. -Original Message- From: Lance Norskog [mailto:goks...@gmail.com] Sent: Thursday, December 10, 2009 7:43 PM To: solr-user@lucene.apache.org Subject: Re: full-text indexing XML files Or CDATA

RE: full-text indexing XML files

2009-12-11 Thread Feroze Daud
Yeah, xml tags as well. Essentially we want to full-text index the file, without the need for stemming the tokens. Will the SOLR analyzer be able to tokenize the document correctly if it does not have any whitespaces (besides those required by XML syntax)? -Original Message- From: Walter

Re: Simple Wildcard Search Question

2009-12-11 Thread QBasti
Hey, well, the field is stored as well as indexed, and these are the filters that are used while indexing: W -- View this message in context: http://old.nabble.com/Simple-Wildcard-Search-Question-tp26747482p26748588.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: full-text indexing XML files

2009-12-11 Thread Walter Underwood
If you really want to do XML-senstive search, it could be a lot of work in Solr. Lucene is a flat data model, so hierarchy requires a lot of mapping to the schema or fancy, slow queries. There are engines that are designed for XML indexing and search, using XQuery, so consider whether that

Definitive version of acts_as_solr

2009-12-11 Thread Jacob Elder
What versions of acts_as_solr are you all using? There appears to be about a dozen forks on GitHub, including my own. http://acts-as-solr.rubyforge.org/ has a notice that the official site is now http://acts_as_solr.railsfreaks.com/, but *don't click that link*because it's just a mess of pop-up

Re: Simple Wildcard Search Question

2009-12-11 Thread Erick Erickson
Nothing came through showing the filters Need analyzer definitions BOTH for indexing and querying, the correlation between the two is important. Storing and indexing are orthogonal. When you *index* a field, you are putting the tokens that come from the input stream into the inverted index,

List shards in the admin UI?

2009-12-11 Thread Jason Rutherglen
Seems like an ease of use thing to be able to click to shards from the admin UI?

Request Assistance with DIH

2009-12-11 Thread Robbin
I've been trying to use the DIH with oracle and would love it if someone could give me some pointers. I put the ojdbc14.jar in both the Tomcat lib and solr home/lib. I created a dataimport.xml and enabled it in the solrconfig.xml. I go to the http://solr server/solr/admin/dataimport.jsp.

Re: UI for solr core admin?

2009-12-11 Thread Chris Hostetter
: Well sure, Solr is no webapp framework. But you can do some things with the : ShowFileRequestHandler, like have static textual content (like CSS and While i think it's definitely important to have some basic admin functionality available in the war, at a certain point we should really just

Request Assistance with DIH

2009-12-11 Thread Robbin
I've been trying to use the DIH with oracle and would love it if someone could give me some pointers. I put the ojdbc14.jar in both the Tomcat lib and solr home/lib. I created a dataimport.xml and enabled it in the solrconfig.xml. I go to the http://solr server/solr/admin/dataimport.jsp. This

using q= , adding fq=

2009-12-11 Thread Fer-Bj
We're running a 14M documents index. For each document we have: field name=id type=sint indexed=true stored=true required=true / field name=title type=text_ngram indexed=true stored=trueomitNorms=true/ field name=cat_id

Re: Request Assistance with DIH

2009-12-11 Thread Joel Nylund
add ?command=full-import to your url http://localhost:8983/solr/dataimport?command=full-import thanks Joel On Dec 11, 2009, at 7:45 PM, Robbin wrote: I've been trying to use the DIH with oracle and would love it if someone could give me some pointers. I put the ojdbc14.jar in both the

auto-starting Solr on OS X ?

2009-12-11 Thread regany
hello! does anyone know how you go about setting up Solr so it auto starts after a reboot etc on OS X? thanks, regan -- View this message in context: http://old.nabble.com/auto-starting-Solr-on-OS-X---tp26753997p26753997.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: auto-starting Solr on OS X ?

2009-12-11 Thread Erick Erickson
See http://www.macosxhints.com/article.php?story=20041105070509783 In general, crontab is what you want, probably with the @Reboot frequency HTH Erick On Fri, Dec 11, 2009 at 10:04 PM, regany re...@newzealand.co.nz wrote: hello! does anyone know how you go about setting up Solr so it

Re: List shards in the admin UI?

2009-12-11 Thread Erik Hatcher
On Dec 11, 2009, at 11:57 PM, Jason Rutherglen wrote: Seems like an ease of use thing to be able to click to shards from the admin UI? Where would the shards list come from? In many cases, it makes sense for shards to be dynamically controlled per request though, so it may not be baked

Re: Custom Field sample?

2009-12-11 Thread Lance Norskog
If 'Argument#' is unique, you can just use as a wildcard field name: Argument1_s:positive is a string field. If you want to find out which Argument fields a document has, you have to fetch all fields for a document. On Fri, Dec 11, 2009 at 3:05 AM, Antonio Zippo reven...@yahoo.it wrote: I need

Re: Definitive version of acts_as_solr

2009-12-11 Thread Erik Hatcher
Jacob, Yeah, it really is a big mess with acts_as_solr. I blame a few things: 1) me - for not wrangling this thing into Solr's client/ruby area from the start, 2) Rubyists! (Apache's svn isn't an appealing home) and 3) the git craze promoting fork-mania. And take a look at this

Re: full-text indexing XML files

2009-12-11 Thread Lance Norskog
Please post a small sample file that has this problem with CDATA. On Fri, Dec 11, 2009 at 9:41 AM, Feroze Daud fero...@zillow.com wrote: CDATA didn’t work either.It still complained about the input doc not being in correct format. -Original Message- From: Lance Norskog

Re: Custom Field sample?

2009-12-11 Thread Noble Paul നോബിള്‍ नोब्ळ्
how exactly do you wish to query these documents? On Fri, Dec 11, 2009 at 4:35 PM, Antonio Zippo reven...@yahoo.it wrote: I need to add theese features to each document Document1 --- Argument1, positive Argument2, positive Argument3, neutral Argument4, positive Argument5,

Re: List shards in the admin UI?

2009-12-11 Thread Lance Norskog
The cores inside the Solr instance? That should be easy. There are a lot of things that should be added to 'Full Interface'. On Fri, Dec 11, 2009 at 7:31 PM, Erik Hatcher erik.hatc...@gmail.com wrote: On Dec 11, 2009, at 11:57 PM, Jason Rutherglen wrote: Seems like an ease of use thing to be

Auto update with deltaimport

2009-12-11 Thread Olala
Hi All! I am developing a search engine using Solr, I was tested full-import and delta-import command successfully.But now,I want to run delta-import automatically with my schedule.So, can anyone help me??? Thanks Regards, -- View this message in context: