Can I simply combine index files based on a unique id field, rather then run a multiple join in DIH, on DB (which is really slow). In that case I can run simple queries witch are resolved more faster, and after that combine them, hoping that will be more fast and more cost efficient (on DB side). Anybody worked like that?
I found that: artical, but I’m using solr 3.4. Any better solution?
Thanks in advance!
Can I simply combine index files based on a unique id field, rather then
Share
You can create a Materialized View, instead of doing multiple joins.
The solution mentioned in the article would work with Solr 4.0 as well.
However, it is a client side solution and would take more time then the normal approach.