>
>
> 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
>>>
>>>
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
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
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
"true"
>> multiValued="true"/>
>> > stored="true"
>> multiValued="false"/>
>> > stored="false"
>> multiValued="true"/>
>> > stored="false" multiValued="false"/>
>&g
ltiValued="true"/>
> stored="false" multiValued="false"/>
> stored="true" multiValued="true"/>
> stored="true" multiValued="false"/>
> stored="false" multiValued="true"/>
> stored="false
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