20 | | A hint as to their implementation is the [http://wiki.alfresco.com/wiki/Search_Documentation#Lucene_Language description of Alfresco's Lucene index]. |
| 20 | A hint as to their implementation is the [http://wiki.alfresco.com/wiki/Search_Documentation#Lucene_Language description of Alfresco's Lucene index]. It appears as if they use a dedicated field in the index to operate on with XPATH : |
| 21 | {{{ |
| 22 | # PATH |
| 23 | |
| 24 | * An XPATH expression used to select nodes |
| 25 | * This should only be access via a phrase query (ie in "") as it requires special tokenisation |
| 26 | }}} |
| 27 | I'm currently looking into their sources to learn more about their implementation, specificaly [http://dev.alfresco.com/resource/docs/java/repository/org/alfresco/util/SearchLanguageConversion.html org.alfresco.util.SearchLanguageConversion]. |