-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve BinaryFieldMapper.CustomBinaryDocValuesField.bytes() #6897
Comments
@navneet1v can I assign this one to you so you can own this exploration either here or upstream in Lucene? No rush... and I'd look at this as a follow on to just getting MultiValue in Lucene. I don't expect any performance improvements whether it's a |
Yes sure. |
Excellent!! Thank you! |
I chatted with @navneet1v. I will be picking up this issue. |
Thanks @kkmr for picking this up. |
Falling out of #6884 this issue is to explore improving (and benchmarking) the BinaryFieldMapper.CustomBinaryDocValuesField.bytes() method to prevent sorting and deduping on every call. Options include switch from an
ArrayList<byte[]>
to aTreeSet<byte[]>
or using sort/dedup after every add.The text was updated successfully, but these errors were encountered: