Re: Taking a full text, then truncate and duplicate with stopwords

2012-09-18 Thread Jack Krupansky
urce text is "stored". -- Jack Krupansky -Original Message- From: Spadez Sent: Tuesday, September 18, 2012 10:33 AM To: solr-user@lucene.apache.org Subject: Re: Taking a full text, then truncate and duplicate with stopwords Ok, thank you for the reply. I have one more question then I th

Re: Taking a full text, then truncate and duplicate with stopwords

2012-09-18 Thread Spadez
the original full_text input as well? -- View this message in context: http://lucene.472066.n3.nabble.com/Taking-a-full-text-then-truncate-and-duplicate-with-stopwords-tp4008269p4008615.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Taking a full text, then truncate and duplicate with stopwords

2012-09-18 Thread Jack Krupansky
ssage- From: Spadez Sent: Tuesday, September 18, 2012 7:21 AM To: solr-user@lucene.apache.org Subject: Re: Taking a full text, then truncate and duplicate with stopwords Ok, I’ve been doing a bit more research. In order to do the copyfield technique, I need to store the original full te

Re: Taking a full text, then truncate and duplicate with stopwords

2012-09-18 Thread Ahmet Arslan
Hi James, > In order to do the copyfield > technique, I need to store the original full text document > within Solr, like > this: > > stored="false"> > indexed="true" > stored="true*"> No, that's not true. You can use copyField with stored="false". In other words, source field ( keyword_d

Re: Taking a full text, then truncate and duplicate with stopwords

to ever store the uneccessary fulltext document in its original form > within Solr > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Taking-a-full-text-then-truncate-and-duplicate-with-stopwords-tp4008269p4008580.html > Sent from the Solr - User mailing list archive at Nabble.com.

Re: Taking a full text, then truncate and duplicate with stopwords

sary fulltext document in its original form within Solr -- View this message in context: http://lucene.472066.n3.nabble.com/Taking-a-full-text-then-truncate-and-duplicate-with-stopwords-tp4008269p4008580.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Taking a full text, then truncate and duplicate with stopwords

012 4:47 PM To: solr-user@lucene.apache.org Subject: Re: Taking a full text, then truncate and duplicate with stopwords Ah, ok this is news to me and makes a lot more sense. If I can just run this back past you to make sure I understand. If I move my full_text to If I move my fulltext documen

Re: Taking a full text, then truncate and duplicate with stopwords

; > -- Jack Krupansky > > -Original Message- > From: Spadez > Sent: Monday, September 17, 2012 12:29 PM > To: solr-user@.apache > Subject: Re: Taking a full text, then truncate and duplicate with > stopwords > > I'm really confused here. I have a docu

Re: Taking a full text, then truncate and duplicate with stopwords

index the value in different ways. -- Jack Krupansky -Original Message- From: Spadez Sent: Monday, September 17, 2012 12:29 PM To: solr-user@lucene.apache.org Subject: Re: Taking a full text, then truncate and duplicate with stopwords I'm really confused here. I have a document wh

Re: Taking a full text, then truncate and duplicate with stopwords

> Then if I do copy command to move it into truncate_document > then even though > I can reduce it down to say 100 words, it is lacking words > like "and" "it" > and "this" because it has been copied from the > keyword_document. That's not true. copy operation is performed before analysis (stopwor

Re: Taking a full text, then truncate and duplicate with stopwords

e the fulltext document, full length and all stop words, exist in my SQL database. -- View this message in context: http://lucene.472066.n3.nabble.com/Taking-a-full-text-then-truncate-and-duplicate-with-stopwords-tp4008269p4008380.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Taking a full text, then truncate and duplicate with stopwords

The only catch here is that copyField might truncate in the middle of a word, yielding an improper term. -- Jack Krupansky -Original Message- From: Ahmet Arslan Sent: Monday, September 17, 2012 11:54 AM To: solr-user@lucene.apache.org Subject: Re: Taking a full text, then truncate

Re: Taking a full text, then truncate and duplicate with stopwords

--- On Mon, 9/17/12, Spadez wrote: > From: Spadez > Subject: Re: Taking a full text, then truncate and duplicate with stopwords > To: solr-user@lucene.apache.org > Date: Monday, September 17, 2012, 7:10 PM > Maybe I dont understand, but if you > are copying the keyword descr

Re: Taking a full text, then truncate and duplicate with stopwords

ave been removed when added to keyword_description. -- View this message in context: http://lucene.472066.n3.nabble.com/Taking-a-full-text-then-truncate-and-duplicate-with-stopwords-tp4008269p4008372.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Taking a full text, then truncate and duplicate with stopwords

> The trouble is, I want the truncated desciption to still > have the keywords. copyField copies raw text, it has noting to do with analysis.

Re: Taking a full text, then truncate and duplicate with stopwords

ario:* Several men locker room golf club cell phone bench rings man engages hands-free speaker function begins talk Everyone else -- View this message in context: http://lucene.472066.n3.nabble.com/Taking-a-full-text-then-truncate-and-duplicate-with-stopwords-tp4008269p4008358.html Sent from

Re: Taking a full text, then truncate and duplicate with stopwords

--- On Mon, 9/17/12, Spadez wrote: > From: Spadez > Subject: Re: Taking a full text, then truncate and duplicate with stopwords > To: solr-user@lucene.apache.org > Date: Monday, September 17, 2012, 5:32 PM > In an attempt to answer my own > question, is this a good solution.

Re: Taking a full text, then truncate and duplicate with stopwords

it first into truncated_description and then again into keyword_description. -- View this message in context: http://lucene.472066.n3.nabble.com/Taking-a-full-text-then-truncate-and-duplicate-with-stopwords-tp4008269p4008327.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Taking a full text, then truncate and duplicate with stopwords

Purely for searching. The truncated form is just to show to the user as a preview, and the keyword form is for the keyword searching. -- View this message in context: http://lucene.472066.n3.nabble.com/Taking-a-full-text-then-truncate-and-duplicate-with-stopwords-tp4008269p4008295.html Sent

Re: Taking a full text, then truncate and duplicate with stopwords

> I dont want to store this as it is in Solr, I want to > instead have two > versions of it. One as a truncated form, and one as a > keyword form. > *Truncated Form:* If truncated form means first N characters then copyField can be used http://wiki.apache.org/solr/SchemaXml#Copy_Fields > *Keyw

Taking a full text, then truncate and duplicate with stopwords

using stopwords to remove common words):* How should I be doing this. Purely with index analyzer's? -- View this message in context: http://lucene.472066.n3.nabble.com/Taking-a-full-text-then-truncate-and-duplicate-with-stopwords-tp4008269.html Sent from the Solr - User mailing list