Elasticsearch:如何获得搜索次数最多的术语

时间:2015-01-21 11:36:43

标签: symfony elasticsearch

我使用fos_elastica在symfony2项目中实现elasticsearch。

Everythings工作正常(索引数据,更新等)

我目前正在寻找用户行为分析:我想获得10个用户最多的搜索或关键字,以便重新查询。

例如:

如果45%的搜索是关于黄色气球而45%是关于红色气球,我想在我的主页上建议一些黄色或红色的气球

首先,我考虑创建一个symfony2实体来保存带有时间戳的用户搜索,然后计算最后1000次搜索以获得最有名的关键字。虽然它肯定会奏效,但这将是资源杀手。

我想知道elasticsearch是否能够提供这些以及如何实现它。

我读过我可以创建一个索引来存储我的用户查询(这会很棒,因为我可以使用facet来很容易地计算它们),但我不知道怎么做直接在弹性搜索中保存它来自没有专用实体的symfony2。

1 个答案:

答案 0 :(得分:3)

好的,我终于明白了!

以下是不同的步骤:

1)在config.yml中创建一个新索引,其中包含关键字搜索的特定映射

in config.yml

indexes:
    your_index:
        types:
            search:
                mappings:
                    value: {type:string}
                    date : {type:date}
                    provider: acme\AppBundle\Service\SearchProvider

2)在服务目录

中创建一个新类SearchProvider
in acme\Appbundle\Service\SearchProvider

<?php


namespace acme\AppBundle\Service;

use FOS\ElasticaBundle\Provider\ProviderInterface;
use Elastica\Type;
use Elastica\Document;

class SearchProvider implements ProviderInterface
{
protected   $searchType;
private     $search;

public function __construct(Type $searchType)
{
    $this->searchType = $searchType;
}

// the function you will call from your service
public function add( $search )
{
    $this->search = $search;
    $this->populate();
}

/**
 * Insert the repository objects in the type index
 *
 * @param \Closure $loggerClosure
 * @param array    $options
 */
public function populate(\Closure $loggerClosure = null, array $options = array())
{
    if ($loggerClosure) {
        $loggerClosure('Indexing users');
    }

    $date  = time();

    $document = new Document();
    $document->setData(array('value' => $this->search, 'date' => $date ) );
    $this->userType->addDocuments(array($document));
    $this->userType->getIndex()->refresh();
}
}

3)在service.yml

中创建一个新的服务声明
services:
acme.search_provider:
    class: acme\AppBundle\Service\SearchProvider
    arguments:
        - @fos_elastica.index.recetas.search
    tags:
        - { name: fos_elastica.provider, index: your_index, type: search }

4)致电您的服务以存储此类新搜索

$this->get("acme.search_provider")->add("kapoue"); 

kapoue将被添加到搜索中。

5)获取所有搜索关键字并使用聚合对其进行排名

    $es                 = $this->get('fos_elastica.index.acme.search');
    $query              = new \Elastica\Query();

    $aggregation        = new \Elastica\Aggregation\Terms("top_hits");
    $aggregation->setField('value');
    $aggregation->setSize( 3 );

    $query->addAggregation($aggregation);

    $result             = $es->search($query);
    $mostResearched     = $result->getAggregation("top_hits");

    print_r ( $mostResearched ); die();