blob: d9d1781d8f7a27bc9cf32ff12094513a57e7c713 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional information regarding
* copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the License. You may obtain a
* copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package org.apache.geode.redis.internal.executor.hash;
import java.util.ArrayList;
import java.util.List;
import org.apache.geode.redis.internal.data.RedisKey;
import org.apache.geode.redis.internal.executor.RedisResponse;
import org.apache.geode.redis.internal.netty.Command;
import org.apache.geode.redis.internal.netty.ExecutionHandlerContext;
/**
* <pre>
* Implementation of the HMGET command.
* Returns values associated with the specified fields in the hash stored for a given key.
*
* Examples:
*
* redis> HSET myhash field1 "Hello"
* (integer) 1
* redis> HSET myhash field2 "World"
* (integer) 1
* redis> HMGET myhash field1 field2 nofield
* 1) "Hello"
* 2) "World"
* 3) (nil)
*
* </pre>
*/
public class HMGetExecutor extends HashExecutor {
@Override
public RedisResponse executeCommand(Command command,
ExecutionHandlerContext context) {
RedisKey key = command.getKey();
List<byte[]> commandElements = command.getProcessedCommand();
ArrayList<byte[]> fields =
new ArrayList<>(commandElements.subList(2, commandElements.size()));
RedisHashCommands redisHashCommands = context.getRedisHashCommands();
List<byte[]> values = redisHashCommands.hmget(key, fields);
return RedisResponse.array(values);
}
}