-
-
Notifications
You must be signed in to change notification settings - Fork 184
Closed
Milestone
Description
Document: Using commands directly
//Incorrect
$result = $redis->hmset(['test_collection', 'key1', 'val1', 'key2', 'val2']);
//correct
$result = $redis->hmset('test_collection', 'key1', 'val1', 'key2', 'val2');