No. Solr, in database terms, stores one table with very complex SELECT operator.
If, for a document, you can do a recursive search in the DB and pull
the entire tree of categories for a document, you can store that
entire tree with the document and be able to search for any of the
categories.
On
can solr store a recursive search ?
--
View this message in context:
http://n3.nabble.com/Tree-Component-for-much-Categories-tp718910p720590.html
Sent from the Solr - User mailing list archive at Nabble.com.
Each document can store all of the sub-categories that it belongs to,
as a multiValued field.
You would need to get all of these categories when indexing a
document. From a DB, this wcan be done with a recursive search in a
stored procedure.
On 4/14/10, stockii wrote:
>
> Hello aaagain ;)
>
> Im