I've 2 indices:
maindata
someData:keyword referrer:integer
and dictionary
refferer:keyword
Is it possible, and if so then how to do that, to ask maindata for data with condition on dictionary? Soemthing similar to SQL's:
select m.someData, d.refferer from maindata m, dictionary d where m.refferer = d.id and d.refferer = "NAME";
Query has to be at the end saved object because I need it as datasource for visualization.
If not, how to gain such result without denormalizing data?
Best regards