You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The only available tokenizers right now are string based (thus term queries only make sense for strings), but I had plans on supporting custom tokenizers. However, I'm not going to lie: I've been swamped for the past year and I just can't say when I'd have the energy for that.
What's the best way to query integer columns for exact matches? Right now, the only way I can see is by using a range_query(x..x), which seems inefficient...
You could make the column string based and search for the exact value. That being said I'm not sure if it will make a significant difference, range queries are supposed to be pretty fast. You would probably need to do some benchmarks.
Are there plans to support term queries for types other than strings?
The text was updated successfully, but these errors were encountered: