In Lucene, I would like to build a 'fuzzy' query over numeric fields. Currently all I found was the NumericRangeQuery class to search numeric fields. In the application I am building, the user is to specify a set of types and the amount of objects of this type he would wish to occur in a specific collection. For example, the user may query for "4 spoons, 13 forks and 1 knife".
I would need a query that scores each numeric field based on the distance of the desired amount and the actual amount. For example, score = (distance + 1)^-1 should yield nice results. Is there a simple, efficient way of doing this?