YugabyteDB (2.13.1.0-b60, 21121d69985fbf76aa6958d8f04a9bfa936293b5)

Coverage Report

Created: 2022-03-22 16:43

/Users/deen/code/yugabyte-db/src/yb/yql/redis/redisserver/redis_server_options.cc
Line
Count
Source
1
// Copyright (c) YugaByte, Inc.
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
4
// in compliance with the License.  You may obtain a copy of the License at
5
//
6
// http://www.apache.org/licenses/LICENSE-2.0
7
//
8
// Unless required by applicable law or agreed to in writing, software distributed under the License
9
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
10
// or implied.  See the License for the specific language governing permissions and limitations
11
// under the License.
12
//
13
14
#include "yb/yql/redis/redisserver/redis_server_options.h"
15
16
#include "yb/util/flag_tags.h"
17
#include "yb/yql/redis/redisserver/redis_server.h"
18
19
DEFINE_int32(redis_rpc_keepalive_time_ms, 0,
20
             "If an RPC connection from a client is idle for this amount of time, the server "
21
             "will disconnect the client. Setting flag to 0 disables this clean up.");
22
TAG_FLAG(redis_rpc_keepalive_time_ms, advanced);
23
24
namespace yb {
25
namespace redisserver {
26
27
2.93k
RedisServerOptions::RedisServerOptions() : ServerBaseOptions(RedisServer::kDefaultPort) {
28
2.93k
  server_type = "tserver";
29
2.93k
  rpc_opts.connection_keepalive_time_ms = FLAGS_redis_rpc_keepalive_time_ms;
30
2.93k
}
31
32
} // namespace redisserver
33
} // namespace yb