Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to create Search box in front page of my website but I don't know how to create one using Solr. All my website is developed in Symfony2. I don't use Database for searching.

How I can do this?.

In my project Solr bundle use this:

use SolrClient;
use SolrQuery;
use SolrObject;
use SolrDocument;
use SolrInputDocument;

In base twig file :

<form action="{{ path("home_search") }}" method="get">
  <input type="search" name="search"><br>
  <input type="submit" value="search">
</form>

Some example of my controller:

public function searchAction($templateName = '')
{
 $solrService = $this->get('rocket.solr_service');

    $solrQuery = new SolrQuery('*:*');
    $solrQuery->addField('id')
        ->addField('name');


    if (!empty($templateName)) {
        $solrQuery->addFilterQuery(sprintf('name:"%s" OR design_template_tag_name:"%1$s" OR design_category_name:"%1$s"',
                                           $templateName));
    }


    $solrQuery->setRows(1000);

    $solrObject = $solrService->query(
        'RocketBraPrintBundle:DesignTemplate',
        $solrQuery,
        SolrService::WRITER_FORMAT_SOLR_OBJECT
    );

    $templates = $solrObject->offsetGet('response')->offsetGet('docs');
    if (!$templates) {

        if (!empty($templateName)) {
            $this->setFlash('catalog-message', 'No results found for your search.');
            return $this->searchDesignTemplates($categoryTreeSlug,
                                                $productFamilyFaceId);
        }

        return array();
    }

    return $templates;

}

But in twig file where this is render I don't know what I will write.

share|improve this question
1  
What bundle are you using to connect and search in solr ? – Artem L Dec 26 '12 at 14:04
@ArtemL thanks for comment .I am using solr bundle and for searching nothing because i am new in search with solr. – Kunwar Siddharth Singh Dec 26 '12 at 14:16
What bundle you are using exactly? And how? Some cod may help answering the question. – Artem L Dec 26 '12 at 14:17
@ArtemL I have edited my question you can see that deps file and i have no any code for search. – Kunwar Siddharth Singh Dec 26 '12 at 14:28
Can't see any solr bundle. Can you point out which bundle you are already using with solr? – Artem L Dec 26 '12 at 14:34
show 7 more comments

2 Answers

Try something like this..

Controlloer.php:

public function searchAction($templateName = '')
{
    // ------
    // ------

    $resultset = $solrObject->offsetGet('response');

    // Do some error checks

    return array('resultset'=>$resultset);

}

twig:

<ul>
{% for doc in resultset %}
  <li> {{ doc.name }} </li>
{% endfor %}
</ul>
share|improve this answer

you can use https://github.com/nelmio/NelmioSolariumBundle with use solarium implementation

Really great for better solr query

i already use it

here a sample

    $query = 'foo';

    $page = 1;
    if (array_key_exists('page', $params)) {
        $page = (int) $params['page'];
    }
    $rows = 10;
    if (array_key_exists('limit', $params)) {
        $rows = (int) $params['limit'];
    }

    $solarium = $this->get('solarium.client');

    //select
    $select = $solarium->createSelect();
    $escapedQuery = $select->getHelper()->escapePhrase($query);

    //dismax
    $dismax = $select->getDisMax();
    // override the default setting of 'dismax' to enable 'edismax'
    $dismax->setQueryParser('edismax');
    //fields
    $dismax->setQueryFields(
                    array('title^5','description^0.7'));

    $select->setQuery($escapedQuery);

    //limit
    $select->setRows($rows);
    $select->setStart(($page - 1) * $rows);

    //type spot only
    $select->createFilterQuery('typeFilter')
            ->setQuery(sprintf('type:%s', 'spot'));

    $resultset = $solarium->select($select);

use foreach or twig "for in" to display your solr doc

share|improve this answer
I have solarium set up and I am able to make queries as shown however I am struggling to try and index my documents. I have a Symfony2 annotated object and I have a method toSolrDocument(\Solarium_Document_ReadWrite $doc) to translate the document as shown in Xavier Briand's presentation. However, when i call it like so foreach ($sheets as $sheet) { $documents[] = $sheet->toSolrDocument($update->createDocument()); } I get 'Solarium_Document_ReadWrite' not found any idea how to resolve this issue? – Scott Sherwood Mar 16 at 17:47
It's weird, Are you sure your solarium lib is in your vendor lib ? Make sure you use solarium 2.4.x, last release 3.x uses php 5.3 namespaces – Julien Rollin Mar 17 at 19:43
I resolved the issue by removing the requirement for the readwrite class. However, I have a new issue having multiple cores. I have set up multiple cores in my solr example installation and added the core i require to my symfony2 config however, somehow the default core I am getting access to is the one specified in the sorl.xml file under the defaultCoreName property. Any ideas? – Scott Sherwood Mar 17 at 23:25
1  
please open a new question, it is not related to the searchbox question. Thanks – Julien Rollin Mar 18 at 13:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.