Hello everybody
I have the following (resumed) schema:
....
<field name="title" type="text" indexed="true" stored="true"
multiValued="true"/>
<field name="titleorder" type="string" indexed="true" stored="true"
multiValued="true"/>
<field name="contributor" type="text" indexed="true" stored="true"
multiValued="true"/>
<field name="contributorfacet" type="textFacetN" indexed="true"
stored="true" multiValued="true"/>
<field name="contributororder" type="string" indexed="true"
stored="true" multiValued="true"/>
.....
....
<copyField source="title" dest="text" />
<copyField source="title" dest="titleorder" />
<copyField source="contributor" dest="text" />
<copyField source="contributor" dest="contributorfacet" />
<copyField source="contributor" dest="contributororder" />
...
I use for instance contributor for searching, contributorfacet for
faceting and order for ordering results, but when I try to order using
contributororder, Solr says that cannot order by a tokenized
field...(?)
I'm using Solr 1.4 nightly. Is this a bug? I believe that in previous
versions I have this issue working...
Regards and thanks
Germán