<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How to avoid split of property value in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/how-to-avoid-split-of-property-value/m-p/304184#M257314</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i need to know when pass query into search.queryResultSet()that is included facets in "search.lib.js" , it return number of document under particular facets name&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;eg. {&lt;/SPAN&gt;&lt;A href="http://www.alfresco.org/model/content/1.0}author" rel="nofollow noopener noreferrer"&gt;http://www.alfresco.org/model/content/1.0}author&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;result is&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;@{&lt;/SPAN&gt;&lt;A href="http://www.alfresco.org/model/content/1.0}author" rel="nofollow noopener noreferrer"&gt;http://www.alfresco.org/model/content/1.0}author&lt;/A&gt;&lt;SPAN&gt;[2]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;author&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; jana (1)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; wee (1)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i named document autor as "jana wee", but it return as jana and wee seperatly from search.queryResultSet() and show it on filter by section of advance search page. how can i avoid this issue?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Janaka&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Jul 2016 16:47:02 GMT</pubDate>
    <dc:creator>janaka1984</dc:creator>
    <dc:date>2016-07-12T16:47:02Z</dc:date>
    <item>
      <title>How to avoid split of property value</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-avoid-split-of-property-value/m-p/304184#M257314</link>
      <description>Hi,i need to know when pass query into search.queryResultSet()that is included facets in "search.lib.js" , it return number of document under particular facets nameeg. {http://www.alfresco.org/model/content/1.0}authorresult is@{http://www.alfresco.org/model/content/1.0}author[2]author&amp;nbsp; jana (1)&amp;nbsp; wee</description>
      <pubDate>Tue, 12 Jul 2016 16:47:02 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-avoid-split-of-property-value/m-p/304184#M257314</guid>
      <dc:creator>janaka1984</dc:creator>
      <dc:date>2016-07-12T16:47:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid split of property value</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-avoid-split-of-property-value/m-p/304185#M257315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Janaka,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Actually this is expected behavior. As you mentioned you named document author as 'Janaka weerarathna' and that is appearing in search result properly. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However at left side of result page you can see is filter which is different then search result. When we add document in Alfresco, solr does indexing of document by using document's metadata. While reading metadata solr tokenized metadata. That's why in result we have 2 separate author filter associated with this document.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is beautiful feature provided by solr. If you don't want tokenised to be happen then you can disabled it by setting value as 'false' for tokenised attribute in content model for corresponding property.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&lt;BR /&gt;…&lt;BR /&gt;&amp;lt;index enabled="true"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;atomic&amp;gt;true&amp;lt;/atomic&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;stored&amp;gt;true&amp;lt;/stored&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;tokenised&amp;gt;false&amp;lt;/tokenised&amp;gt;&lt;BR /&gt; &amp;lt;/index&amp;gt;&lt;BR /&gt;…&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;Remember you should do full re indexing to update old indexes.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Krishna&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Aug 2016 11:13:39 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-avoid-split-of-property-value/m-p/304185#M257315</guid>
      <dc:creator>gawadesk</dc:creator>
      <dc:date>2016-08-03T11:13:39Z</dc:date>
    </item>
  </channel>
</rss>

