cvreferral / phalcon-elasticsearch
1.1
2019-09-03 09:41 UTC
Requires
- php: >=5.5
- ext-phalcon: ^3.0
This package is auto-updated.
Last update: 2024-10-29 05:34:50 UTC
README
How to use
Create your model
namespace Models; use Ovr\Phalcon\Elastic\ModelTrait; class Project extends Injectable { use ModelTrait; protected static $index = 'phalconist'; protected static $type = 'project'; /** * @param int $limit * @return mixed */ public static function myQuery($limit = 25) { $query = [ 'aggs' => [ 'types' => [ 'terms' => [ 'field' => 'composer.type', 'size' => $limit, ], ] ] ]; $resultSet = static::getStorage()->search($query); return static::toTags($resultSet->getAggregation('types')['buckets'], 'key', 'doc_count'); } }
Use
$result = Project::myQuery(25);
License
This project is open-sourced software licensed under the MIT License. See the LICENSE file for more information.