Re: SOLR Text Field

2019-04-08 Thread Shawn Heisey
On 4/8/2019 10:27 AM, Dave Beckstrom wrote: SOLR really should ship with a sample text field defined even if commented out and only for example purposes only. That would have been most helpful. Even a FAQ somewhere would have been helpful. There are two example configs in the latest version

Re: SOLR Text Field

2019-04-08 Thread Dave Beckstrom
Shawn, I can't thank you enough for taking the time to reply to my question and for the info you shared. I don't believe I ever found one example by Googling of how to define a simple text field in SOLR. I saw some examples of Text_General but as you saw it wasn't what I needed. Based on the

Re: SOLR Text Field

2019-04-06 Thread Shawn Heisey
On 4/6/2019 6:59 AM, Dave Beckstrom wrote: I'm really hating SOLR. All I want is to define a text field that data can be indexed into and which is searchable. Should be super simple. But I run into issue after issue. I'm running SOLR 7.3 because it's compatible with the version of NUTCH I'm

Re: SOLR Text Field

2019-04-06 Thread Dave
Wow. Ok dude relax and take a nap. It sounds like you don’t even have a core defined. Maybe you’d do and I’m reaching a bit but start there solr is super simple and only gets complicated when you’re complicated. > On Apr 6, 2019, at 8:59 AM, Dave Beckstrom wrote: > > Hi Everyone, > > I'm

Re: SOLR Text Field

2019-04-06 Thread Tim Allison
TextField is a classname. Look in managedschema and pick a field type by name, e.g. text_general On Sat, Apr 6, 2019 at 9:00 AM Dave Beckstrom wrote: > Hi Everyone, > > I'm really hating SOLR. All I want is to define a text field that data > can be indexed into and which is searchable.

SOLR Text Field

2019-04-06 Thread Dave Beckstrom
Hi Everyone, I'm really hating SOLR. All I want is to define a text field that data can be indexed into and which is searchable. Should be super simple. But I run into issue after issue. I'm running SOLR 7.3 because it's compatible with the version of NUTCH I'm running. The docs say that

Re: Fwd: Solr Text field

2008-01-16 Thread Chris Hostetter
: searches. That is fine by me. But I'm still at the first question: : How do I conduct a wildcard search for ARIZONA on a solr.textField? I tried as i said: it really depends on what kind of index analyzer you have configured for the field -- the query analyzer isn't used at all when dealing

Re: Fwd: Solr Text field

2008-01-11 Thread Chris Hostetter
: if I search for name:AR*, I get 1 result with the word AR in it, and the : following debug output. Seems like it is throwing out my wildcard. it is. don't search for name:AR* ... that says you want to find any document contain the string AR* --eithout treaing the * as a special character

Re: Fwd: Solr Text field

2008-01-11 Thread Abin Shahab
Hi, Thanks for responding. The actual data is ARIZONA, and so I have to look for it with the query AR*. I can take out the quotes, but then it doesn't find anything. Abin On Jan 11, 2008 1:33 AM, Chris Hostetter [EMAIL PROTECTED] wrote: : if I search for name:AR*, I get 1 result with the word

Re: Fwd: Solr Text field

2008-01-11 Thread Abin Shahab
Hi Hoss, I am sorry but I did not understand this part: The reason name:AR* doesn't work (but name:ARIZONA does) is because when you are doing prefix or wildcard searches that query analysis can't be used ... for a lot of reasons that are covered in the mailing list archives, and is mentioned in

Re: Fwd: Solr Text field

2008-01-10 Thread Abin Shahab
, January 11, 2008 12:38:47 AM Subject: Fwd: Solr Text field Hi, I am having a lot of issues with the simple solr.textField. I do not get anything back from simple lucene queries such as wildcard searches. Searching for AR* does not return everything that starts with AR(for example Arizona). I