I need to search over multiple tables, getting only one resultset, but these tables don't have any relationship.
Can I do it with Solr?
I need to search over multiple tables, getting only one resultset, but these tables don't have any relationship.
Can I do it with Solr?
Maybe Solr's aliases might fit your needs.
Create your alias with :
and then query as usual as if "testalias" was one collection. For example: http://[solr.host:port]/solr/testalias/select?q=:&rows=100&wt=json&indent=true
This query will return all the data from both collections.