Re: Choosing between t and s field types

2009-08-15 Thread Yonik Seeley
On Sat, Aug 15, 2009 at 11:06 PM, Ninad Raut wrote: > Are all TrieRange fields sortable? Yes, all of the numeric type variants are sortable. -Yonik http://www.lucidimagination.com > On Fri, Aug 14, 2009 at 10:50 PM, Yonik Seeley > wrote: >> >> On Fri, Aug 14, 2009 at 1:15 PM, Ninad Raut >> wr

Re: Choosing between t and s field types

2009-08-15 Thread Ninad Raut
Are all TrieRange fields sortable? On Fri, Aug 14, 2009 at 10:50 PM, Yonik Seeley wrote: > On Fri, Aug 14, 2009 at 1:15 PM, Ninad Raut > wrote: > > TrieRange ... what are its features? What additional functionality they > > provide? > > - a generally more efficient FieldCache structure (less memo

Re: Choosing between t and s field types

2009-08-14 Thread Yonik Seeley
On Fri, Aug 14, 2009 at 1:15 PM, Ninad Raut wrote: > TrieRange ... what are its features? What additional functionality they > provide? - a generally more efficient FieldCache structure (less memory) - faster range queries when precisionStep is utilized to index multiple tokens per value -Yonik h

Re: Choosing between t and s field types

2009-08-14 Thread Ninad Raut
TrieRange ... what are its features? What additional functionality they provide? On Fri, Aug 14, 2009 at 8:35 PM, Avlesh Singh wrote: > > > > I just checked and the default schema.xml for SOLR 1.3 > > (solr/conf/schema.xml.original) and i don't see tint, etc listed.So > either > > they''re new i

Re: Choosing between t and s field types

2009-08-14 Thread Avlesh Singh
> > I just checked and the default schema.xml for SOLR 1.3 > (solr/conf/schema.xml.original) and i don't see tint, etc listed.So either > they''re new in 1.4 and I don't know about them or they were manually > defined. > TrieRange fields are new and will make appearance in Solr 1.4. With 1.3 you ca

Re: Choosing between t and s field types

2009-08-14 Thread Constantijn Visinescu
I just checked and the default schema.xml for SOLR 1.3 (solr/conf/schema.xml.original) and i don't see tint, etc listed. So either they''re new in 1.4 and I don't know about them or they were manually defined. Can you post your schema.xml entries for tint? (along with any comments it might have?)

Re: Choosing between t and s field types

2009-08-14 Thread Ninad Raut
Hi Constantijn, What are the t types viz;tint,tfloat etc. for? Is there a special use of these? On Fri, Aug 14, 2009 at 4:37 PM, Constantijn Visinescu wrote: > Accoridng to the documentation in schema.xml.original sint etc can be used > for both sorting and range queries? > > > sortMissin

Re: Choosing between t and s field types

2009-08-14 Thread Constantijn Visinescu
Accoridng to the documentation in schema.xml.original sint etc can be used for both sorting and range queries? On Fri, Aug 14, 2009 at 11:08 AM, Ninad Raut wrote: > Hi, > I want certain fields of type int,float and date to be sortable and I > should > be able to run my range queries a

Choosing between t and s field types

2009-08-14 Thread Ninad Raut
Hi, I want certain fields of type int,float and date to be sortable and I should be able to run my range queries as well as facet queries on those fields. Now as far as I know sint,sfloat fieldtypes make the fields sortable and tint,tfloat,tdate allow range queries on the fields. I want both these