I faced with large problem. Lucene can not aggregate data. What alternative solution available.
After some improvement I have and need next :
lucene data example
product_id distri_id stock
1 d1 10
1 d2 20
1 d3 23
I need do query with next condition for example: prod_id =1 and distri_id = (d1 or d2) and stock(sum of d1 and d1) > 13.
So I must aggregate data per dsitri and select where sum of stock more the some value. In other SQL terminology I must do GROUP BY distri HAVING sum(stock)>13.
Can somebody suggest what to do in this case.
Thanks!
Best regards, Artem