Trying to exclude integer field with certain numbers

2008-12-02 Thread Jake Conk
Hello, I am trying to exclude certain records from my search results in my query by specifying which ones I don't want back but its not working as expected. Here is my query: +message:test AND (-thread_id:123 OR -thread_id:456 OR -thread_id:789) So basically I just want anything back that has th

Querying Ranges Problem

2008-11-24 Thread Jake Conk
I have the following query: q=(+thread_title_t:test OR +posts_t_ns_mv:test) AND locked_i:0 AND replies_i:[50 TO *] I have replies_i which is an integer field set to return me back documents that have a value 50 or greater but the problem is I'm getting back results with the replied_i field colu

Stored field question

2008-10-06 Thread Jake Conk
Hello, I have a field with the following definition... I'm not storing the data because I never need to retrieve it but each *_t_ns_mv field is indexed and has a specific boost value... I added this field with the word "test" as the value but when I search for "test" no results come up in my un

Re: Searching Question

2008-09-30 Thread Jake Conk
u'll have to combine some search results or >> data post-search. >> >> Otis >> -- >> Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch >> >> >> >> - Original Message >>> >>> From: Jake Conk <[EMAIL PROTECTED]>

Re: Searching Question

2008-09-26 Thread Jake Conk
: > Is a thread and all of it's posts a single document? In other words, how > are you modeling your posts as Solr documents? Also, where are you keeping > track of the number of replies? Is that in Solr or in a DB? > > -Grant > > On Sep 25, 2008, at 8:51 PM, Jake Conk

Searching Question

2008-09-25 Thread Jake Conk
Hello, We are using Solr for our new forums search feature. If possible when searching for the word "Halo" we would like threads that contain the word "Halo" the most with the least amount of posts in that thread to have a higher score. For instance, if we have a thread with 10 posts and the word

Re: copyField: String vs Text Field

2008-08-27 Thread Jake Conk
Hi Walter, What do you mean by when you stemmed and stopped your title field? Thanks, - Jake On Wed, Aug 27, 2008 at 7:41 PM, Walter Underwood <[EMAIL PROTECTED]> wrote: > On 8/27/08 5:54 PM, "Yonik Seeley" <[EMAIL PROTECTED]> wrote: >> >> That's really only one use case though... the other b

Re: copyField: String vs Text Field

2008-08-27 Thread Jake Conk
? How? Thanks, - Jake On Wed, Aug 27, 2008 at 2:22 PM, Yonik Seeley <[EMAIL PROTECTED]> wrote: > Jake, copyField exists to decouple document values (on the update > size) from how they are indexed. > > From the example schema: > > > -Yonik > > On Wed, Aug 27, 2

copyField: String vs Text Field

2008-08-27 Thread Jake Conk
Hello, I was wondering if there was an added advantage in using to copy a string field to a text field? If the field is copied to a text field then why not just make the field a text field and eliminate copying its data? If you are going to use full text searching on that field which you cant d

Re: How does Solr search when a field is not specified?

2008-08-27 Thread Jake Conk
;s value to the max. > > > Otis > -- > Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch > > > > - Original Message >> From: Jake Conk <[EMAIL PROTECTED]> >> To: solr-user@lucene.apache.org >> Sent: Tuesday, August 26, 2008 4:38:09

How does Solr search when a field is not specified?

2008-08-26 Thread Jake Conk
Hello, I was wondering how does Solr search when a field is not specified, just a query? Say for example I got the following: ?q="Jake" AND "Test" I have a mixture of integer, string, and text columns. Some indexed, some stored, and some string fields copied to text fields. Say I have a string

Querying Greater Than and Less Than

2008-08-26 Thread Jake Conk
Hello, I was trying to figure out how to query ranges greater than and less than. The closest solution I could find was using the range format: field:[x TO z] While this solution works for querying greater than items how would I query all items less than 10 assuming I have some items that have a

Re: Querying Question

2008-08-21 Thread Jake Conk
I thought if I used to copy my string field to a text field then I can search for words within it and not limited to the entire content. Did I misunderstand that? Thanks, - Jake On Thu, Aug 21, 2008 at 5:53 PM, Erik Hatcher <[EMAIL PROTECTED]> wrote: > > On Aug 21, 2008, at 7:33 P

Querying Question

2008-08-21 Thread Jake Conk
ing fields and I'm using copyField to copy them to text fields: --------- 124 Jake Conk My test category 125 Jake Conk My test category -- Thanks, - Jake

Re: Simple Searching Question

2008-08-14 Thread Jake Conk
end some time looking thru it, and reading the > commentslots of good info in there. > > cheers, > rob > > On Thu, Aug 14, 2008 at 7:17 PM, Jake Conk <[EMAIL PROTECTED]> wrote: >> Hi Shalin, >> >> "foobar_facet" is a dynamic field. Its defined i

Re: Simple Searching Question

2008-08-14 Thread Jake Conk
wrote: > Hi Jake, > > What is the type of the foobar_facet field in your schema.xml ? > Did you add foobar_facet as the default search field? > > On Fri, Aug 15, 2008 at 3:13 AM, Jake Conk <[EMAIL PROTECTED]> wrote: > >> Hello, &

Simple Searching Question

2008-08-14 Thread Jake Conk
Hello, I inserted the following documents into Solr: --- 124 Jake Conk 125 Jake Conk --- id is the only

Static Fields vs Dynamic Fields

2008-08-12 Thread Jake Conk
Is there a performance difference when using fields that are defined in my schema vs dynamic fields?

Searching Questions

2008-08-12 Thread Jake Conk
1) I want to search only within a specific field, for instance `category`. Is there a way to do this? 2) When searching for multiple results are the following identical since "*_facet" and "*_facet_mv" have their type's both set to string? /select?q=tag_facet:%22John+McCain%22+OR+tag_facet:%22Bar

Re: Field Types Question

2008-08-12 Thread Jake Conk
Thanks Erik! On Tue, Aug 12, 2008 at 1:58 AM, Erik Hatcher <[EMAIL PROTECTED]> wrote: > > On Aug 11, 2008, at 9:28 PM, Jake Conk wrote: >> >> I was wondering what are the differences in certain field types? For >> instance what's the difference between the follo

Field Types Question

2008-08-11 Thread Jake Conk
I was wondering what are the differences in certain field types? For instance what's the difference between the following? integer / sint float / sfloat text / textzh Also, if I have two dynamic fields for instance *_facet and *_facet_mv which both have the type set to string does it really matte