Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save algotrader-dotcom/82c2166dcfc000bc5d5b to your computer and use it in GitHub Desktop.

Select an option

Save algotrader-dotcom/82c2166dcfc000bc5d5b to your computer and use it in GitHub Desktop.
Drupal 7: Add custom field indexed in Apache Solr
...
function mymodule_apachesolr_index_document_build_node(ApacheSolrDocument $document, $entity, $env_id) {
if ($entity->type == 'company'){
$node_field_address = $entity->field_address['und'][0]['value'];
// Add the image and description to the document in the solr index.
$document->addField('ts_company_add', $node_field_address);
}
}
...
# REf
http://www.drupalwoo.com/content/blog/adding-custom-field-solr-search-index-drupal
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment