mirror of
https://github.com/predis/predis.git
synced 2026-08-24 23:29:43 +00:00
c4064e5801
List of the commands affected by this change (based on Redis 2.2):
MSET, MGET, DEL, BLPOP, BRPOP, RPOPLPUSH, BRPOPLPUSH, SINTER, SINTERSTORE,
SUNION, SUNIONSTORE, SDIFF, SDIFFSTORE, ZINTERSTORE, ZUNIONSTORE.
28 lines
777 B
PHP
28 lines
777 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class SetMultiple extends Command {
|
|
protected function canBeHashed() {
|
|
$args = $this->getArguments();
|
|
$keys = array();
|
|
for ($i = 0; $i < count($args); $i += 2) {
|
|
$keys[] = $args[$i];
|
|
}
|
|
return $this->checkSameHashForKeys($keys);
|
|
}
|
|
public function getId() { return 'MSET'; }
|
|
public function filterArguments(Array $arguments) {
|
|
if (count($arguments) === 1 && is_array($arguments[0])) {
|
|
$flattenedKVs = array();
|
|
$args = $arguments[0];
|
|
foreach ($args as $k => $v) {
|
|
$flattenedKVs[] = $k;
|
|
$flattenedKVs[] = $v;
|
|
}
|
|
return $flattenedKVs;
|
|
}
|
|
return $arguments;
|
|
}
|
|
}
|