Skip to main content
Participating Frequently
September 18, 2018
Question

Creating a SOLR collection and collection configuration programatically

  • September 18, 2018
  • 1 reply
  • 688 views

We need some SOLR collections for searching.

To this point, we create the collection via the admin page, and then

  • we configure the /dataimport in solrconfig.xml in the collection folder
  • we configure schema.xml in the collection folder
  • we configure data-config.xml for the /dataimport in the collection folder

Is there a way for all these steps to be done programatically?

I assume that the <cfcollection> tag creates a collection but does only what the admin interface does.

Is there a way to do all this configuration via cfms/cfcs?

This topic has been closed for replies.

1 reply

Priyank Shrivastava.
Community Manager
Community Manager
September 18, 2018

Hi,

Yes, you can create and index the collection programmatically. You can use the cfcollection to create the collection and cfindex to index your items.

https://helpx.adobe.com/coldfusion/cfml-reference/coldfusion-tags/tags-c/cfcollection.html

https://helpx.adobe.com/coldfusion/cfml-reference/coldfusion-tags/tags-i/cfindex.html


Thanks,Priyank Shrivastava

Thanks, Priyank Shrivastava
Participating Frequently
September 18, 2018

I see that the full import action does not work, and I assume I have to manually edit the xml files in the collection directory to full-import to work.

The problem is that CF hangs when trying to index (update action) a lot of data (and does not hang with full import if enabled via the xmls) (i already run with 2GBytes Xmx)