rocketphp/tweetnest

通过文本和位置搜索 JSON 推文文件 - Elasticsearch。

dev-develop / 1.1.x-dev 2015-09-06 22:39 UTC

This package is not auto-updated.

Last update: 2024-10-02 10:42:47 UTC


README

RocketPHP\TweetNest 使用 Elasticsearch 通过文本和位置搜索 JSON 推文文件。

搜索推文 - 使用 TweetNest 实例和数组进行搜索。

use RocketPHP\TweetNest\TweetNest;

$nest = new TweetNest('127.0.0.1:9200', 'tweet_files');
$result = $nest->search(
    ['text' => 'Arnold',
    'location' => 'USA']
);
var_dump($result);