Home / Taxonomy term

acquia search

Meet Chris Pliakas: Open software and open data make for better decisions

Chris Pliakas is a solutions architect at Acquia. He works closely with the Acquia sales representatives and potential clients "to help people who might not know about Drupal or might be considering a proprietary solution see how Drupal can help them. It's really great to be out on the front lines helping people to see Drupal the way we do."

Acquia Search just got a lot better

Nick Veenhof's picture

My name is Nick Veenhof and I've been a member of the Drupal community for quite some time now. (more than 5 years it seems!). I've been trying to focus on the Search front, more specifically on the Apache Solr Search Integration front. Since September 2011 I have been working on Acquia Search, the Apache Solr Module and all of its derivatives.

Acquia product strategy and vision

Dries Buytaert's picture

In my Acquia 2010 retrospective, I promised to write a bit more about Acquia's product strategy. This blog post provides a high level view of the vision that we've been working towards for the last 3 years, and explains how Acquia can help simplify your web strategy.

Drupal 7 Apache Solr Search Mastery

Peter Wolanin's picture

It is day two at Drupalcon Copenhagan, and Robert Douglass and I presented this afternoon on Apache Solr Search Mastery. While the concepts in this talk apply to the Drupal 6 versions, all the code examples are taken from the Drupal 7 port of the Apache Solr module.

Acquia Search: an update after one year

Dries Buytaert's picture

About 20 months ago, at Acquia, we began working on a hosted offering for Apache Solr, an open source enterprise search platform from the Apache Lucene project. Exactly one year ago, we launched it commercially as Acquia Search. Time and the public reaction have proven that we made the right choice.

Acquia Search release features

Peter Wolanin's picture

We have marked the one year anniversary of the our hosted search service by rolling out a significant update with new features and some fixes. This was released Wednesday night (June 30).

Use Apache Solr to search in files

Robert Douglass's picture

Drupal's file handling capabilities keep getting better. Beyond the core upload module, the filefield module for CCK has enabled us to build sites with all sorts of files; documents, images, music, videos, and so forth. Searching within these docuements, however, has never been a common feature on Drupal sites. Some solutions have existed, particularly for extracting texts from PDFs and common wordprocessing documents. With Apache Solr, the attachments module, and an extension library called Tika, things can be much better. With Tika you can extract texts not only from Microsoft Office, Open Office, and PDF documents, you can also get text and metadata from images, songs, Flash movies and zipped archives. Searching for these texts is done as part of the normal Apache Solr driven site search.

The S-Files: Adding a custom sort to Acquia Search (Apache Solr)

Robert Douglass's picture

Tech Support Case Studies

We've received several inquiries about adding custom sorts to the the sorting block on search results for our popular Acquia Search product. This is fortunately quite easy, though it currently involves preparing a custom module that implements one hook:
hook_apachesolr_prepare_query(&$query)

<?php
  
function hook_apachesolr_prepare_query(&$query) {
    
// You can get the 'solr_field_name' from q=admin/reports/apachesolr
    
$query->set_available_sort('solr_field_name', array(
      
// how the sort link is to appear in the sorts block
      
'title' => t('Name of sort'),
      
'default' => 'asc', // or 'desc'
     
));
   }
?>

Pages