We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
add support for parsing and printing when dealing with numeric fields
The text was updated successfully, but these errors were encountered:
Are all of lucene's dates stored as binaries? I'm trying to retrieve the value of my date field given the printed utf8 string
Awesome tool by the way :)
Sorry, something went wrong.
Ah, I compared with Luke to get a solution. I was able to read the long value of my lucene index value via:
NumericUtils.prefixCodedToLong( text )
where text is the BytesRef of the value. It seems its using this variable encoding technique - which explains why it took me so long to figure out!
text
Is this issue also going to add support for searching numeric fields through the search command? I've noticed that for QueryParser to work correctly w/ numeric fields you need to configure the field in QueryParser beforehand (https://github.com/apache/lucene-solr/blob/master/lucene/queryparser/src/test/org/apache/lucene/queryparser/flexible/standard/TestPointQueryParser.java#L36-L38)
search
QueryParser
javasoze
No branches or pull requests
add support for parsing and printing when dealing with numeric fields
The text was updated successfully, but these errors were encountered: