Elasticsearch-php scroll

Hi.
I want to implement scrolling with elasticsearch-php
Please contact us because it is not working well.
Below is the source code.

"scroll" => "30s" Add this to your search and it won't search.

$params = [
	"scroll" => "30s",
	"size" => 100,
	"body" => [
		"query" => [
			"range" => [
				"id" => [
					"gte"=>1575558000,
					"lte"=>1575644399
				]
			]	
		]
	]
];

thank you.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.