Skip to content

Latest commit

 

History

History
35 lines (34 loc) · 657 Bytes

1027ab1ca767ac1428176ef4f84bfbcf.asciidoc

File metadata and controls

35 lines (34 loc) · 657 Bytes
$params = [
    'index' => 'twitter',
    'body' => [
        'slice' => [
            'id' => 0,
            'max' => 2,
        ],
        'query' => [
            'match' => [
                'title' => 'elasticsearch',
            ],
        ],
    ],
];
$response = $client->search($params);
$params = [
    'index' => 'twitter',
    'body' => [
        'slice' => [
            'id' => 1,
            'max' => 2,
        ],
        'query' => [
            'match' => [
                'title' => 'elasticsearch',
            ],
        ],
    ],
];
$response = $client->search($params);