你好,我有一個問題..Elasticsearch foselastica庫和GROUPBY
我有我的彈性彎曲庫
namespace XX\xxx;
use FOS\ElasticaBundle\Repository;
class TestRepository extends Repository
{
public function getExamples($argOne, $argTwo) {
$query = new BoolQuery();
$matchOne = new Match();
$matchOne->setField('column_one', $argOne);
$query->addMust($matchOne);
$matchTwo = new Match();
$matchOne->setField('column_two', $argTwo);
$query->addMust($matchTwo);
return $this->find($query);
}
}
和映射
...
types:
example:
mappings:
column_one:
type: integer
column_two:
type: string
column_three:
type: date
我的問題是..
我需要按列3獲取查詢組。我不知道如何做到這一點。
我會爲信息感激..
我添加了循環數據存儲區的示例 –
ResultSet是可迭代的,因此您可以循環訪問它。 –