[
https://issues.apache.org/jira/browse/LUCENE-2426?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12881220#action_12881220
]
Michael McCandless commented on LUCENE-2426:
--------------------------------------------
bq. How to deal with Term?
Maybe we should keep it, but do a hard cutover of its .text from String to
BytesRef, and also change its .compareTo to compare text by unicode code point
order?
I agree we should do this as a followon issue; in fact I think another issue is
already open.
Note, though, that field names still sort by UTF16 (String.compareTo) order.
> change sort order to binary order
> ---------------------------------
>
> Key: LUCENE-2426
> URL: https://issues.apache.org/jira/browse/LUCENE-2426
> Project: Lucene - Java
> Issue Type: Improvement
> Components: Index
> Affects Versions: 3.1
> Reporter: Robert Muir
> Fix For: 4.0
>
> Attachments: LUCENE-2426.patch, LUCENE-2426.patch,
> LUCENE-2426_automaton.patch
>
>
> Since flexible indexing, terms are now represented as byte[], but for
> backwards compatibility reasons, they are not sorted as byte[], but instead
> as if they were char[].
> I think its time to look at sorting terms as byte[]... this would yield the
> following improvements:
> * terms are more opaque by default, they are byte[] and sort as byte[]. I
> think this would make lucene friendlier to customizations.
> * numerics and collation are then free to use their own encoding (full byte)
> rather than avoiding the use of certain bits to remain compatible with char[]
> sort order.
> * automaton gets simpler because as in LUCENE-2265, it uses byte[] too, and
> has special hacks because terms are sorted as char[]
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]