the most basic stuff, and copyField things around. With SOLR-139, to
rebuild an index you simply reconfigure the copyField settings and
basically `touch` each document to reindex it.
had not thought of that... yes, that would work
Yonik has some pretty prescient design ideas here:
<http://wiki.apache.org/solr/UserTagDesign>
Yonik is quite clever! this does not even involve bit operations.
In the example:
add to A10, field utag="erik#lucene" // or "erik lucene", single token
add to A10, field user="erik" // via copyField
add to A10, field tag="lucene" // via copyField
I take it 'user' needs a fieldType that would only keep the first part
of what is passed in, and 'tag' would be a different type (or params)
that only keeps the later.
To add a 'name', I guess the best approach is to use a dynamic field:
utag_name="erik#lucene"
I'll give this a try.
thanks
ryan