11-08-2011 06:27 AM
String luceneQuery = "PATH:\"/app:company_home//*\" " + "AND @cm\\:name:\"" +name+"\"";
Query query = new Query(Constants.QUERY_LANG_LUCENE,luceneQuery);
QueryConfiguration q = new QueryConfiguration();
QueryResult queryResult = repositoryService.query(spacesStore, query, true, q);
11-14-2011 06:27 AM
alfresco.war/WEB-INF/classes/alfresco/model/dataTypeAnalyzers_<LOCALE>.properties
For each locale setting you will find a properties file to change the Lucene class dedicated to tokenize words.11-16-2011 03:20 AM
09-06-2012 11:29 PM
09-07-2012 05:03 AM
public TokenStream tokenStream(String fieldName, Reader reader)
{
TokenStream result = new StandardTokenizer(reader);
result = new AlfrescoStandardFilter(result);
result = new LowerCaseFilter(result);
result = new StopFilter(result, stopSet);
result = new ISOLatin1AccentFilter(result);
return result;
}
04-15-2014 06:04 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.