Re: URL search and indexing

2013-06-28 Thread Flavio Pompermaier
10:53 AM To: solr-user@lucene.apache.org Subject: Re: URL search and indexing I was doing exactly that and, thanks to the administration page and explanation/debugging, I checked if results were those expected. Unfortunately, results were not correct submitting updates trough

Re: URL search and indexing

2013-06-28 Thread Upayavira
that you issued? -- Jack Krupansky -Original Message- From: Flavio Pompermaier Sent: Wednesday, June 26, 2013 10:53 AM To: solr-user@lucene.apache.org Subject: Re: URL search and indexing I was doing exactly that and, thanks

Re: URL search and indexing

2013-06-27 Thread Erick Erickson
should identify it. What's a sample post command that you issued? -- Jack Krupansky -Original Message- From: Flavio Pompermaier Sent: Wednesday, June 26, 2013 10:53 AM To: solr-user@lucene.apache.org Subject: Re: URL search and indexing I was doing exactly

Re: URL search and indexing

2013-06-26 Thread Flavio Pompermaier
To: solr-user@lucene.apache.org Subject: Re: URL search and indexing That's sound exactly what I'm looking for! However I cannot find an example of how to use it..could you help me please? Moreover, about id field, isn't true that id field shouldn't be analyzed as suggested in http

Re: URL search and indexing

2013-06-26 Thread Erick Erickson
Message- From: Flavio Pompermaier Sent: Tuesday, June 25, 2013 10:06 AM To: solr-user@lucene.apache.org Subject: Re: URL search and indexing I bought the book and looking at the example I still don't understand if it possible query all sub-urls of my URL. For example

Re: URL search and indexing

2013-06-26 Thread Flavio Pompermaier
this script to my list of examples to add in the next rev of my book. -- Jack Krupansky -Original Message- From: Flavio Pompermaier Sent: Tuesday, June 25, 2013 10:06 AM To: solr-user@lucene.apache.org Subject: Re: URL search and indexing I bought the book and looking

Re: URL search and indexing

2013-06-26 Thread Jack Krupansky
If there is a bug... we should identify it. What's a sample post command that you issued? -- Jack Krupansky -Original Message- From: Flavio Pompermaier Sent: Wednesday, June 26, 2013 10:53 AM To: solr-user@lucene.apache.org Subject: Re: URL search and indexing I was doing exactly

Re: URL search and indexing

2013-06-26 Thread Erick Erickson
:53 AM To: solr-user@lucene.apache.org Subject: Re: URL search and indexing I was doing exactly that and, thanks to the administration page and explanation/debugging, I checked if results were those expected. Unfortunately, results were not correct submitting updates trough post.sh script

Re: URL search and indexing

2013-06-26 Thread Flavio Pompermaier
To: solr-user@lucene.apache.org Subject: Re: URL search and indexing I was doing exactly that and, thanks to the administration page and explanation/debugging, I checked if results were those expected. Unfortunately, results were not correct submitting updates trough post.sh script (that use

URL search and indexing

2013-06-25 Thread Flavio Pompermaier
Hi to everybody, I'm quite new to Solr so maybe my question could be trivial for you.. In my use case I have to index stuff contained in some URL so i use url as key of my document and I treat it like a string. However I'd like to be able to query by domain name, like *.it or *. somesite.com,

Re: URL search and indexing

2013-06-25 Thread Jan Høydahl
Probably a good match for the RegExp feature of Solr (given that your url is not tokenized) e.g. q=url:/.*\.it$/ -- Jan Høydahl, search solution architect Cominvent AS - www.cominvent.com 25. juni 2013 kl. 12:17 skrev Flavio Pompermaier pomperma...@okkam.it: Hi to everybody, I'm quite new to

Re: URL search and indexing

2013-06-25 Thread Flavio Pompermaier
Sorry but maybe I miss something here..could I declare url as key field and query it too..? At the moment, my schema.xml looks like: fields field name=url type=string indexed=true stored=true required=true multiValued=false / field name=category type=string indexed=true stored=true/

Re: URL search and indexing

2013-06-25 Thread Jan Høydahl
Sure you can query the url directly. Or if you choose you can split it up in multiple components, e.g. using http://lucene.apache.org/solr/4_3_0/solr-core/org/apache/solr/update/processor/URLClassifyProcessor.html -- Jan Høydahl, search solution architect Cominvent AS - www.cominvent.com 25.

Re: URL search and indexing

2013-06-25 Thread Flavio Pompermaier
That's sound exactly what I'm looking for! However I cannot find an example of how to use it..could you help me please? Moreover, about id field, isn't true that id field shouldn't be analyzed as suggested in http://wiki.apache.org/solr/UniqueKey#Text_field_in_the_document? On Tue, Jun 25, 2013

Re: URL search and indexing

2013-06-25 Thread Jack Krupansky
Krupansky -Original Message- From: Flavio Pompermaier Sent: Tuesday, June 25, 2013 9:02 AM To: solr-user@lucene.apache.org Subject: Re: URL search and indexing That's sound exactly what I'm looking for! However I cannot find an example of how to use it..could you help me please? Moreover

Re: URL search and indexing

2013-06-25 Thread Flavio Pompermaier
as well - use all three: raw string, tokenized text, and URL classification fields. -- Jack Krupansky -Original Message- From: Flavio Pompermaier Sent: Tuesday, June 25, 2013 9:02 AM To: solr-user@lucene.apache.org Subject: Re: URL search and indexing That's sound exactly what I'm

Re: URL search and indexing

2013-06-25 Thread Jack Krupansky
-sequences that occur in the URL without the need for wildcards or regular expressions. -- Jack Krupansky -Original Message- From: Jan Høydahl Sent: Tuesday, June 25, 2013 6:28 AM To: solr-user@lucene.apache.org Subject: Re: URL search and indexing Probably a good match for the RegExp

Re: URL search and indexing

2013-06-25 Thread Flavio Pompermaier
Høydahl Sent: Tuesday, June 25, 2013 6:28 AM To: solr-user@lucene.apache.org Subject: Re: URL search and indexing Probably a good match for the RegExp feature of Solr (given that your url is not tokenized) e.g. q=url:/.*\.it$/ -- Jan Høydahl, search solution architect Cominvent

Re: URL search and indexing

2013-06-25 Thread Erik Hatcher
the need for wildcards or regular expressions. -- Jack Krupansky -Original Message- From: Jan Høydahl Sent: Tuesday, June 25, 2013 6:28 AM To: solr-user@lucene.apache.org Subject: Re: URL search and indexing Probably a good match for the RegExp feature of Solr (given that your

Re: URL search and indexing

2013-06-25 Thread Jack Krupansky
Pompermaier Sent: Tuesday, June 25, 2013 10:06 AM To: solr-user@lucene.apache.org Subject: Re: URL search and indexing I bought the book and looking at the example I still don't understand if it possible query all sub-urls of my URL. For example, if the URLClassifyProcessorFactory takes in input