Lines Matching defs:script
49 public function setCombineScript(string $script): self
51 return $this->setParam('combine_script', $script);
61 public function setInitScript(string $script): self
63 return $this->setParam('init_script', $script);
69 * This is the only required script. If no combine_script is specified, the resulting state needs to be stored in
74 public function setMapScript(string $script): self
76 return $this->setParam('map_script', $script);
82 * The script is provided with access to a variable _aggs which is an array of the result of the combine_script on
87 public function setReduceScript(string $script): self
89 return $this->setParam('reduce_script', $script);