Alfresco Solr Custom Search

using Alfresco 4.0.1, we added many new objects and associated them with cm: content. When we search, we want to be able to search not only by content criteria, but also want to say, to provide us with all the content that is associated with libraries with these properties (for example).

We expect that we need to add a new Solr core (index) and populate it.

Has anyone done this? Can someone offer a hint or two, or a link to a message expressing it.

Thanks --MB

Addendum 1: linked means that the content is “linked” to other objects using the Alfresco Peer (Non-Child) associations.

Addition 2: for example, if our model is content and libraries (but it is much more complicated than this), they are associated with the use of peer-to-peer (non-child) associations, because we could not use the parent child for other reasons. So, we want to find all the contents with the name "document", but this is due to the libreries with the location "Texas".

+5
source share
1 answer

The bottom line is that Alfresco is not relational. You can set up associations, and through the API you can request to give node for your associations, but you cannot run queries through associations, as you can when you join a relational database.

, node , , ​​ node. - node.

, , , , , .

+4

All Articles