<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <title>Indexable field search, how?</title>
  <link rel="self" href="https://liferay.dev/c/message_boards/find_thread?p_l_id=119785294&amp;threadId=111531943" />
  <subtitle>Indexable field search, how?</subtitle>
  <id>https://liferay.dev/c/message_boards/find_thread?p_l_id=119785294&amp;threadId=111531943</id>
  <updated>2026-04-07T03:32:58Z</updated>
  <dc:date>2026-04-07T03:32:58Z</dc:date>
  <entry>
    <title>RE: Indexable field search, how?</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=111643386" />
    <author>
      <name>Andrew Jardine</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=111643386</id>
    <updated>2018-11-22T18:46:54Z</updated>
    <published>2018-11-22T18:46:54Z</published>
    <summary type="html">&lt;p&gt;Just to sprinkle in an alternative here, mostly because the
  autogenerated index field name is gross (I know it's a necessary evil,
  but still). Sometimes what I do is I set the structure field to NOT be
  indexable so that I avoid the ddm_... field. Then I create an
  IndexPostProcessor for where you can access the Document object before
  it is added to the index. In this class I create a new Field object,
  with the name _I_ want to use and othen add it to the document. I only
  use this trick though when I don't need the field value to be included
  as part of the mash up &amp;quot;content&amp;quot; field. So for example, I
  want to have a filter that does exact matches type thing, or I want to
  create a facet. &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Just some food for thought and another example of the power of
  Liferay -- multiple ways to solve the same problem. &lt;/p&gt;</summary>
    <dc:creator>Andrew Jardine</dc:creator>
    <dc:date>2018-11-22T18:46:54Z</dc:date>
  </entry>
  <entry>
    <title>RE: Indexable field search, how?</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=111621677" />
    <author>
      <name>Kishan Agrawal</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=111621677</id>
    <updated>2018-11-21T07:57:21Z</updated>
    <published>2018-11-21T07:57:21Z</published>
    <summary type="html">&lt;blockquote&gt;
  &lt;div class="quote-title"&gt;Ervinas Marocka:&lt;/div&gt;
  &lt;div class="quote"&gt;
    &lt;div class="quote-content"&gt;
      &lt;blockquote&gt;
        &lt;div class="quote-title"&gt;Kishan Agrawal:&lt;/div&gt;
        &lt;div class="quote"&gt;
          &lt;div class="quote-content"&gt;
            &lt;p style="text-align: justify;"&gt;Hello,&lt;/p&gt;
            &lt;p style="text-align: justify;"&gt;You can achive this by Two ways &lt;/p&gt;
            &lt;p style="text-align: justify;"&gt;IF you want to search for
              only single field with exect keyword match you can go for
              liferay feature of elstic serach (using indexer class)&lt;/p&gt;
            &lt;p style="text-align: justify;"&gt;and if you want to serach
              with combination of field you can go for boolean query    &lt;/p&gt;
            &lt;p style="text-align: justify;"&gt;both would give your work done.&lt;/p&gt;
            &lt;p style="text-align: justify;"&gt;Note :- elastic search works
              on keyword base search &lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt; Hello Kishan,&lt;br /&gt;
      &lt;br /&gt; You're talking about this? https://dev.liferay.com/develop/tutorials/-/knowledge_base/7-0/creating-a-guestbook-indexer&lt;br /&gt;
      &lt;br /&gt;
      &lt;br /&gt;
      &lt;br /&gt;  &lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;Yes Ervinas Marocka. &lt;/p&gt;
&lt;p&gt;I was talikng about something like it. &lt;br /&gt; Although we can use
  &amp;quot;like&amp;quot; or that kind of querys that will interact with your
  database and give you result.&lt;/p&gt;
&lt;p&gt;but i would suggest to use elastic search which is used by liferay.&lt;/p&gt;
&lt;p&gt;bcz it will reduce your complexity and databse call that will improve
  your working of project and server maintaince&lt;/p&gt;
&lt;p&gt;Bcz elastice search uses kibana so all the time when you heat for
  search it will not make interaction with your database. &lt;/p&gt;</summary>
    <dc:creator>Kishan Agrawal</dc:creator>
    <dc:date>2018-11-21T07:57:21Z</dc:date>
  </entry>
  <entry>
    <title>RE: Indexable field search, how?</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=111547347" />
    <author>
      <name>Ervinas Marocka</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=111547347</id>
    <updated>2018-11-14T13:35:17Z</updated>
    <published>2018-11-14T13:35:17Z</published>
    <summary type="html">&lt;blockquote&gt;
  &lt;div class="quote-title"&gt;Jorge Díaz:&lt;/div&gt;
  &lt;div class="quote"&gt;
    &lt;div class="quote-content"&gt;
      &lt;p&gt;Hi Ervinas Marocka and David Nebinger,&lt;/p&gt;
      &lt;p&gt; &lt;/p&gt;
      &lt;p&gt;In my opinion doing a &amp;quot;like&amp;quot; SQL query in
        JournalArticle clob column is a bad idea, you will have
        thoughput problems and your DBA will complain in case of
        detecting all that &amp;quot;like&amp;quot; queries in case of any
        problem in database side.&lt;/p&gt;
      &lt;p&gt; &lt;/p&gt;
      &lt;p&gt;You should query Elasticsearch/Solr index. You have information
        about how to query JournalArticle filtering by DDM fields in
        following posts:&lt;/p&gt;
      &lt;ul&gt;
        &lt;li&gt;
          &lt;a href="https://community.liferay.com/forums/-/message_boards/message/108179215"&gt;https://community.liferay.com/forums/-/message_boards/message/108179215&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;
          &lt;a href="https://community.liferay.com/forums/-/message_boards/message/86997787"&gt;https://community.liferay.com/forums/-/message_boards/message/86997787&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;
          &lt;a href="https://community.liferay.com/forums/-/message_boards/message/84031533"&gt;https://community.liferay.com/forums/-/message_boards/message/84031533&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
      &lt;p&gt;(&lt;strong&gt;note:&lt;/strong&gt; second and third link are related to
        6.2 version, but 7.x queries should be very similar)&lt;/p&gt;
      &lt;p&gt; &lt;/p&gt;
      &lt;p&gt;In Liferay Portal 7.x, the names of DDM fields that you have to
        query are built in
        &lt;strong&gt;DDMIndexerImpl.encodeName(...)&lt;/strong&gt; method, see:&lt;/p&gt;
      &lt;ul&gt;
        &lt;li&gt;
          &lt;a href="https://github.com/liferay/liferay-portal-ee/blob/cba537c39989bbd17606e4de4aa6b9ab9e81b30c/modules/apps/dynamic-data-mapping/dynamic-data-mapping-service/src/main/java/com/liferay/dynamic/data/mapping/internal/util/DDMIndexerImpl.java#L243-L268"&gt;https://github.com/liferay/liferay-portal-ee/blob/cba537c39989bbd17606e4de4aa6b9ab9e81b30c/modules/apps/dynamic-data-mapping/dynamic-data-mapping-service/src/main/java/com/liferay/dynamic/data/mapping/internal/util/DDMIndexerImpl.java#L243-L268&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
      &lt;p&gt; &lt;/p&gt;
      &lt;p&gt;DDM fields names follows following pattern:&lt;/p&gt;
      &lt;ul&gt;
        &lt;li&gt;
          &lt;p&gt;
            &lt;strong&gt;Fields that are configured as keyword:&lt;/strong&gt;
            &lt;em&gt;ddm__keyword__{structrureId}__{fieldname}_{locale}&lt;/em&gt;&lt;/p&gt;&lt;/li&gt;
        &lt;li&gt;
          &lt;p&gt;
            &lt;strong&gt;Other fields:&lt;/strong&gt;
            &lt;em&gt;ddm__{structrureId}__{fieldname}_{locale}&lt;/em&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;
      &lt;p&gt; &lt;/p&gt;
      &lt;p&gt;
        &lt;strong&gt;Note: &lt;/strong&gt;in order to get structureId, you should
        query DDMStructure filtering by structureKey, if you hardcode
        the structureId, you can have problems in case you export/import
        the structure because structureId is recalculated during import process.&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;
  Thanks, this kinda helped me to solve my problem. :)&lt;br /&gt;
&lt;br /&gt;
   </summary>
    <dc:creator>Ervinas Marocka</dc:creator>
    <dc:date>2018-11-14T13:35:17Z</dc:date>
  </entry>
  <entry>
    <title>RE: Indexable field search, how?</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=111543726" />
    <author>
      <name>Jorge Diaz</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=111543726</id>
    <updated>2018-11-14T07:49:53Z</updated>
    <published>2018-11-14T07:49:53Z</published>
    <summary type="html">&lt;p&gt;Hi Ervinas Marocka and David Nebinger,&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;In my opinion doing a &amp;quot;like&amp;quot; SQL query in JournalArticle
  clob column is a bad idea, you will have thoughput problems and your
  DBA will complain in case of detecting all that &amp;quot;like&amp;quot;
  queries in case of any problem in database side.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;You should query Elasticsearch/Solr index. You have information about
  how to query JournalArticle filtering by DDM fields in following posts:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
    &lt;a href="https://community.liferay.com/forums/-/message_boards/message/108179215"&gt;https://community.liferay.com/forums/-/message_boards/message/108179215&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;
    &lt;a href="https://community.liferay.com/forums/-/message_boards/message/86997787"&gt;https://community.liferay.com/forums/-/message_boards/message/86997787&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;
    &lt;a href="https://community.liferay.com/forums/-/message_boards/message/84031533"&gt;https://community.liferay.com/forums/-/message_boards/message/84031533&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;(&lt;strong&gt;note:&lt;/strong&gt; second and third link are related to 6.2
  version, but 7.x queries should be very similar)&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;In Liferay Portal 7.x, the names of DDM fields that you have to query
  are built in &lt;strong&gt;DDMIndexerImpl.encodeName(...)&lt;/strong&gt; method, see:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
    &lt;a href="https://github.com/liferay/liferay-portal-ee/blob/cba537c39989bbd17606e4de4aa6b9ab9e81b30c/modules/apps/dynamic-data-mapping/dynamic-data-mapping-service/src/main/java/com/liferay/dynamic/data/mapping/internal/util/DDMIndexerImpl.java#L243-L268"&gt;https://github.com/liferay/liferay-portal-ee/blob/cba537c39989bbd17606e4de4aa6b9ab9e81b30c/modules/apps/dynamic-data-mapping/dynamic-data-mapping-service/src/main/java/com/liferay/dynamic/data/mapping/internal/util/DDMIndexerImpl.java#L243-L268&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;DDM fields names follows following pattern:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
    &lt;p&gt;
      &lt;strong&gt;Fields that are configured as keyword:&lt;/strong&gt;
      &lt;em&gt;ddm__keyword__{structrureId}__{fieldname}_{locale}&lt;/em&gt;&lt;/p&gt;&lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;
      &lt;strong&gt;Other fields:&lt;/strong&gt;
      &lt;em&gt;ddm__{structrureId}__{fieldname}_{locale}&lt;/em&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;
  &lt;strong&gt;Note: &lt;/strong&gt;in order to get structureId, you should query
  DDMStructure filtering by structureKey, if you hardcode the
  structureId, you can have problems in case you export/import the
  structure because structureId is recalculated during import process.&lt;/p&gt;</summary>
    <dc:creator>Jorge Diaz</dc:creator>
    <dc:date>2018-11-14T07:49:53Z</dc:date>
  </entry>
  <entry>
    <title>RE: Indexable field search, how?</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=111542413" />
    <author>
      <name>Ervinas Marocka</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=111542413</id>
    <updated>2018-11-14T07:34:22Z</updated>
    <published>2018-11-14T07:34:22Z</published>
    <summary type="html">&lt;blockquote&gt;
  &lt;div class="quote-title"&gt;Kishan Agrawal:&lt;/div&gt;
  &lt;div class="quote"&gt;
    &lt;div class="quote-content"&gt;
      &lt;p style="text-align: justify;"&gt;Hello,&lt;/p&gt;
      &lt;p style="text-align: justify;"&gt;You can achive this by Two ways &lt;/p&gt;
      &lt;p style="text-align: justify;"&gt;IF you want to search for only
        single field with exect keyword match you can go for liferay
        feature of elstic serach (using indexer class)&lt;/p&gt;
      &lt;p style="text-align: justify;"&gt;and if you want to serach with
        combination of field you can go for boolean query    &lt;/p&gt;
      &lt;p style="text-align: justify;"&gt;both would give your work done.&lt;/p&gt;
      &lt;p style="text-align: justify;"&gt;Note :- elastic search works on
        keyword base search &lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;
  Hello Kishan,&lt;br /&gt;
&lt;br /&gt;
  You're talking about this? https://dev.liferay.com/develop/tutorials/-/knowledge_base/7-0/creating-a-guestbook-indexer&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   </summary>
    <dc:creator>Ervinas Marocka</dc:creator>
    <dc:date>2018-11-14T07:34:22Z</dc:date>
  </entry>
  <entry>
    <title>RE: Indexable field search, how?</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=111541744" />
    <author>
      <name>Kishan Agrawal</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=111541744</id>
    <updated>2018-11-14T07:26:54Z</updated>
    <published>2018-11-14T07:26:54Z</published>
    <summary type="html">&lt;p style="text-align: justify;"&gt;Hello,&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;You can achive this by Two ways &lt;/p&gt;
&lt;p style="text-align: justify;"&gt;IF you want to search for only single
  field with exect keyword match you can go for liferay feature of
  elstic serach (using indexer class)&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;and if you want to serach with
  combination of field you can go for boolean query    &lt;/p&gt;
&lt;p style="text-align: justify;"&gt;both would give your work done.&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;Note :- elastic search works on keyword
  base search &lt;/p&gt;</summary>
    <dc:creator>Kishan Agrawal</dc:creator>
    <dc:date>2018-11-14T07:26:54Z</dc:date>
  </entry>
  <entry>
    <title>RE: Indexable field search, how?</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=111540706" />
    <author>
      <name>Ervinas Marocka</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=111540706</id>
    <updated>2018-11-14T06:32:10Z</updated>
    <published>2018-11-14T06:32:10Z</published>
    <summary type="html">&lt;blockquote&gt;
  &lt;div class="quote-title"&gt;David H Nebinger:&lt;/div&gt;
  &lt;div class="quote"&gt;
    &lt;div class="quote-content"&gt;
      &lt;p&gt;Even though it's a clob, I would start w/ trying a
        &amp;quot;like&amp;quot; match based on a string that contains the xml
        fragment to key off of.  It may actually perform better than
        what you give it credit for.&lt;/p&gt;
      &lt;p&gt;If it doesn't, well then we can take the next step and explore
        an IndexPostProcessor and a modification of the query to boost
        and filter based upon the key field...&lt;/p&gt;
      &lt;p&gt;But start w/ the simpler solution first before taking the hard road.&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;Interesting. You mean using DynamicQuery for that? If so, i'm
  actaullly trying like that :&lt;br /&gt;
  &lt;br /&gt;                 ClassLoader cl =
  PortalClassLoaderUtil.getClassLoader();&lt;br /&gt;               
   DynamicQuery dynamicQuery =
  JournalArticleLocalServiceUtil.dynamicQuery()&lt;br /&gt;                   
         
   .add(PropertyFactoryUtil.forName(&amp;quot;content&amp;quot;).like(&amp;quot;%&amp;lt;dynamic-content&amp;gt;&amp;lt;![CDATA[&amp;quot;
  + regNumber + &amp;quot;]]&amp;gt;&amp;lt;/dynamic-content&amp;gt;%&amp;quot;));&lt;br /&gt;   
               List results =
  JournalArticleLocalServiceUtil.dynamicQuery(dynamicQuery);&lt;br /&gt;  &lt;/p&gt;
&lt;p&gt;But I get the results size = 0, not sure why. Not sure if this is the
  correct approach for your answers. &lt;/p&gt;</summary>
    <dc:creator>Ervinas Marocka</dc:creator>
    <dc:date>2018-11-14T06:32:10Z</dc:date>
  </entry>
  <entry>
    <title>RE: Indexable field search, how?</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=111540373" />
    <author>
      <name>David H Nebinger</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=111540373</id>
    <updated>2018-11-14T06:22:12Z</updated>
    <published>2018-11-14T06:22:12Z</published>
    <summary type="html">&lt;p&gt;Even though it's a clob, I would start w/ trying a &amp;quot;like&amp;quot;
  match based on a string that contains the xml fragment to key off of. 
  It may actually perform better than what you give it credit for.&lt;/p&gt;
&lt;p&gt;If it doesn't, well then we can take the next step and explore an
  IndexPostProcessor and a modification of the query to boost and filter
  based upon the key field...&lt;/p&gt;
&lt;p&gt;But start w/ the simpler solution first before taking the hard road.&lt;/p&gt;</summary>
    <dc:creator>David H Nebinger</dc:creator>
    <dc:date>2018-11-14T06:22:12Z</dc:date>
  </entry>
  <entry>
    <title>RE: Indexable field search, how?</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=111539687" />
    <author>
      <name>Ervinas Marocka</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=111539687</id>
    <updated>2018-11-14T05:21:09Z</updated>
    <published>2018-11-14T05:21:09Z</published>
    <summary type="html">&lt;blockquote&gt;
  &lt;p&gt;David H Nebinger:&lt;/p&gt;
  &lt;p&gt;If you need to match on one field only, I wouldn't use the search
    by keyword.  I mean, if anything calls for a direct DB query, need
    to &amp;quot;search by that specific field only and value has to match
    100%&amp;quot; does.&lt;/p&gt;&lt;/blockquote&gt;
&lt;br /&gt;
 Thanks for the answer, David.&lt;br /&gt;
&lt;br /&gt;
 Okay, so got the point that I need to query direct to database? But it
won't be efficient enough because of the Journal Article content storing
as clob XML. If i have to query every single article one by one and then
look for parameter in XML. Am I right? Any other solution?</summary>
    <dc:creator>Ervinas Marocka</dc:creator>
    <dc:date>2018-11-14T05:21:09Z</dc:date>
  </entry>
  <entry>
    <title>RE: Indexable field search, how?</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=111536830" />
    <author>
      <name>David H Nebinger</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=111536830</id>
    <updated>2018-11-13T21:43:38Z</updated>
    <published>2018-11-13T21:43:38Z</published>
    <summary type="html">If you need to match on one field only, I wouldn't use the search by
keyword.  I mean, if anything calls for a direct DB query, need to
&amp;quot;search by that specific field only and value has to match
100%&amp;quot; does.</summary>
    <dc:creator>David H Nebinger</dc:creator>
    <dc:date>2018-11-13T21:43:38Z</dc:date>
  </entry>
  <entry>
    <title>Indexable field search, how?</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=111531942" />
    <author>
      <name>Ervinas Marocka</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=111531942</id>
    <updated>2018-11-13T13:53:14Z</updated>
    <published>2018-11-13T13:53:14Z</published>
    <summary type="html">Hello,&lt;br /&gt;
&lt;br /&gt;
  Got a problem. Can't solve this.&lt;br /&gt;
&lt;br /&gt;
  The problem is about searching. I'm trying to code JournalArticle
search by indexable keyword before create method. &lt;br /&gt;
&lt;br /&gt;
  I have created a structure of webcontent and having a field called
&amp;quot;regNumber&amp;quot; which is &amp;quot;Indexable-Keyword&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
  How should i perform a quick search? I just need an algorythm to know
what exactly I have to do. Tried everything I know about the search, but
can't seach for this. I need to search BY THAT SPECIFIC FIELD ONLY and
the value HAVE TO MATCH 100%. &lt;br /&gt;
&lt;br /&gt;
  The reason i need this is to check if the value already exists before
JournalArticle creates.&lt;br /&gt;
&lt;br /&gt;
  I'm using Liferay CE 7.0.6 GA7.&lt;br /&gt;
&lt;br /&gt;
  Any help would be great.&lt;br /&gt;
&lt;br /&gt;
  Thanks.</summary>
    <dc:creator>Ervinas Marocka</dc:creator>
    <dc:date>2018-11-13T13:53:14Z</dc:date>
  </entry>
</feed>
