Re: Problem with simple use of DIH

2009-12-27 Thread AHMET ARSLAN
> I'm trying to use DataImportHandler > to load my index and having some strange > results. I have two tables in my database. DPRODUC contains > products and > FSKUMAS contains the skus related to each product. > > This is the data-config I'm using. > > >                 > driver="com.ibm.as400

Re: Clustering Query Solrj

2009-12-27 Thread Erik Hatcher
On Dec 27, 2009, at 2:20 AM, Allahbaksh Asadullah wrote: How do I set Clustering true in Solrj. How do I access clustering result. I am using Solr 1.4. It isn't a client-side setting, it's a setting when launching Solr. See here for instructions... http://wiki.apache.org/solr/Clusteri

Re: Problem with simple use of DIH

2009-12-27 Thread Noble Paul നോബിള്‍ नोब्ळ्
did you run it w/o the debug? On Sun, Dec 27, 2009 at 6:31 PM, AHMET ARSLAN wrote: >> I'm trying to use DataImportHandler >> to load my index and having some strange >> results. I have two tables in my database. DPRODUC contains >> products and >> FSKUMAS contains the skus related to each product

Re: Clustering Query Solrj

2009-12-27 Thread Allahbaksh Asadullah
Hi Erik, I had set the Clustering true at server side. But I want to get the response of Clustering result through solrj. As I get Facet response can I get response of Clustering (docId, and label ) through solrj. Regards, Allahbaksh On Sun, Dec 27, 2009 at 6:58 PM, Erik Hatcher wrote: > > On D

Re: Clustering Query Solrj

2009-12-27 Thread AHMET ARSLAN
> Hi Erik, > I had set the Clustering true at server side. But I want to > get the response > of Clustering result through solrj. > > As I get Facet response can I get response of Clustering > (docId, and label ) > through solrj. > By solrJ you mean EmbeddedSolrServer? If yes i think you can ena

Re: Problem with simple use of DIH

2009-12-27 Thread Jay Fisher
I did run it without debug and the result was that 0 documents were processed. The problem seems to be with the tags that I was using to map from the table column names to the schema.xml field names. I switched to using an AS clause in the SQL statement instead and it worked. I think the column

Re: Clustering Query Solrj

2009-12-27 Thread Allahbaksh Asadullah
HI Ahmet, I was looking for the same. Thanks for your early response. Warm Regards, Allahbaksh On Sun, Dec 27, 2009 at 7:22 PM, AHMET ARSLAN wrote: > > Hi Erik, > > I had set the Clustering true at server side. But I want to > > get the response > > of Clustering result through solrj. > > > > As

Re: Using solr with the new TokenStream API

2009-12-27 Thread AHMET ARSLAN
> Is there a way > to add this jar file to classpath during tomcat startup? You can put your jar file into $CATALINA_HOME/lib directory.

Re: Enable Clustering for Solr war

2009-12-27 Thread AHMET ARSLAN
> Hi, >   I'm trying to get clustering setup for Solr 1.4 in > war mode on tomcat > 6. > > I read the instructions on the wiki, checked out the trunk > and got the > downloaded libraries. There's no instruction on what to do > with them so > I copied them to tomcat/lib directory. I set property t

Re: Enable Clustering for Solr war

2009-12-27 Thread Darren Govoni
Hey thanks. That worked. On Sun, 2009-12-27 at 13:12 -0800, AHMET ARSLAN wrote: > apache-solr-clustering-1.4.0.jar

Re: absolute search

2009-12-27 Thread Olala
uhm,I am sorry, this is the debug :) "book" "book" +DisjunctionMaxQuery((name:book)~0.01) () +(name:book)~0.01 () − − 7.903358 = (MATCH) sum of: 7.903358 = (MATCH) fieldWeight(name:book in 19533), product of: 1.0 = tf(termFreq(name:book)=1) 7.903358 = idf(docFreq=79, maxDocs=79649)

Using IDF to find Collactions and SIPs . . ?

2009-12-27 Thread Subscriptions
I am trying to write a query analyzer to pull: 1. Common phrases (also known as Collocations) with in a query 2. Highly unusual phrases (also known as Statistically Improbable Phrases or SIPs) with in a query The Collocations would be similar to facets except I am also trying

RE: Using IDF to find Collactions and SIPs . . ?

2009-12-27 Thread Subscriptions
I am trying to write a query analyzer to pull: 1. Common phrases (also known as Collocations) with in a query 2. Highly unusual phrases (also known as Statistically Improbable Phrases or SIPs) with in a query The Collocations would be similar to facets except I am also trying to

Re: Problem with simple use of DIH

2009-12-27 Thread Noble Paul നോബിള്‍ नोब्ळ्
The field names are case sensitive. But if the tags are missing they are mapped to corresponding solr fields in a case insensistive way.apparently all the fields come out of you ALL CAPS you should put the 'column' values in ALL CAPS too On Sun, Dec 27, 2009 at 9:03 PM, Jay Fisher wrote: > I did