public static func lpop(from key: RedisKey) -> RedisCommand<RESPValue?> {
        let args = [RESPValue(from: key)]
        return .init(keyword: "LPOP", arguments: args) { try? $0.map() }
    }