Re: Organizing POJO's in a heirarchy in Solr

2009-03-10 Thread Praveen_Kumar_J
> > > On Mar 10, 2009, at 7:13 AM, Praveen_Kumar_J wrote: > >> >> Someone please throw some light on this post. >> Thanks in advance. >> >> >> Praveen_Kumar_J wrote: >>> >>> Hi >>> >>>

Re: Organizing POJO's in a heirarchy in Solr

2009-03-10 Thread Praveen_Kumar_J
Someone please throw some light on this post. Thanks in advance. Praveen_Kumar_J wrote: > > Hi > > I just upload simple POJOs into Solr by creating custom types and dynamic > fields in Solr schema as shown below, > > ... > sortMissingLast="true" om

Re: Creating a new field type.

2009-03-10 Thread Praveen_Kumar_J
Hi Tushar, You can try this it works out well, . ... and have unique key and default search fields enabled. . Java code for the new custom type, public class TestType extends FieldType{ @Field private String id_s_i_s_nm; @Field private String pNumber; @Field

Organizing POJO's in a heirarchy in Solr

2009-03-09 Thread Praveen_Kumar_J
Hi I just upload simple POJOs into Solr by creating custom types and dynamic fields in Solr schema as shown below, ... But I need to organize these POJOs in a hierarchy which can be navigated easily (something like explorer). Am not sure whether this feature is supported by

Re: How can I configure different types in Solr?

2009-03-09 Thread Praveen_Kumar_J
"true" >> multiValued="true"/> >> > stored="true" >> multiValued="false"/> >> > stored="false" >> multiValued="true"/> >> > stored="false" multiValued="false"/> >&g

Re: How can I configure different types in Solr?

2009-03-08 Thread Praveen_Kumar_J
ltiValued="true"/> > stored="false" multiValued="false"/> > stored="true" multiValued="true"/> > stored="true" multiValued="false"/> > stored="false" multiValued="true"/> > stored="false

How can I configure different types in Solr?

2009-03-06 Thread Praveen_Kumar_J
Hi How do I configure different custom types or schemas in Solr? Assume I have some custom types type1 and type1 (some composite classes). Can I configure these 2 types in a single schema file? I need these 2 types to be online for creating and searching data. Please provide me some sample