Is the slash "/" a reserved character in solr name names?
I'm having trouble writing a solr sort request that will parse fields containing a slash "/"
When creating an HTTP request to my solr server:
q=*&sort=normal+desc
Will work but
q=*&sort=with/slash+desc q=*&sort=with%2Fslash+desc
Both refused to say: "You cannot use FieldCache for a multi-valued field: using
Each solr file contains two fields int "normal" and "with / slash". With my solr schema indexing fields as such
... <field name="normal" type="int" indexed="true" stored="true" required="false" /> <field name="with/slash" type="int" indexed="true" stored="true" required="false" /> ...
Is there any special way to encode a slash in solr? Or are there other separators that I can use? I already use '-' and "." for other purposes.
lucene solr
Akusete
source share