:orphan: .. index:: pair: struct; tapi_redis_srv_opt .. _doxid-structtapi__redis__srv__opt: struct tapi_redis_srv_opt ========================= .. toctree:: :hidden: Overview ~~~~~~~~ Redis-server configuration options. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include struct tapi_redis_srv_opt { // fields const struct sockaddr* :ref:`server`; :ref:`te_bool3` :ref:`protected_mode`; :ref:`tapi_job_opt_uint_t` :ref:`tcp_backlog`; const char* :ref:`unixsocket`; :ref:`tapi_job_opt_uint_t` :ref:`timeout`; :ref:`tapi_job_opt_uint_t` :ref:`tcp_keepalive`; :ref:`tapi_redis_srv_loglevel` :ref:`loglevel`; const char* :ref:`logfile`; :ref:`tapi_job_opt_uint_t` :ref:`databases`; :ref:`te_bool3` :ref:`rdbcompression`; :ref:`te_bool3` :ref:`rdbchecksum`; :ref:`te_bool3` :ref:`repl_diskless_sync`; :ref:`tapi_redis_srv_rdl` :ref:`repl_diskless_load`; :ref:`te_bool3` :ref:`appendonly`; :ref:`te_bool3` :ref:`activerehashing`; :ref:`tapi_job_opt_uint_t` :ref:`io_threads`; :ref:`te_bool3` :ref:`io_threads_do_reads`; const char* :ref:`exec_path`; }; .. _details-structtapi__redis__srv__opt: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Redis-server configuration options. Fields ------ .. index:: pair: variable; server .. _doxid-structtapi__redis__srv__opt_1a61bb7a435e0461730ba93f71111338f7: .. ref-code-block:: cpp :class: doxyrest-title-code-block const struct sockaddr* server IP and port of the server. .. index:: pair: variable; protected_mode .. _doxid-structtapi__redis__srv__opt_1adb89970410d7a74ca58b2da61218b19d: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_bool3` protected_mode Layer of security protection. .. index:: pair: variable; tcp_backlog .. _doxid-structtapi__redis__srv__opt_1a1e87859e9305f5dbc8c8a27abfb711ea: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`tapi_job_opt_uint_t` tcp_backlog TCP listen() backlog. .. index:: pair: variable; unixsocket .. _doxid-structtapi__redis__srv__opt_1a016f6eec4757d6e02940b3684b4530cf: .. ref-code-block:: cpp :class: doxyrest-title-code-block const char* unixsocket Unix socket to listen on. .. index:: pair: variable; timeout .. _doxid-structtapi__redis__srv__opt_1a25ebdb21ed70ae0172db39d412272b6b: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`tapi_job_opt_uint_t` timeout Close the connection after a client is idle for specified amount of seconds (0 to disable). .. index:: pair: variable; tcp_keepalive .. _doxid-structtapi__redis__srv__opt_1a055047c42658226fc62d22f63c046aa6: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`tapi_job_opt_uint_t` tcp_keepalive Use SO_KEEPALIVE to send TCP ACKs to clients (0 to disable). .. index:: pair: variable; loglevel .. _doxid-structtapi__redis__srv__opt_1acbd05c6027944f8409ffb913cb86e69f: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`tapi_redis_srv_loglevel` loglevel Server verbosity level. .. index:: pair: variable; logfile .. _doxid-structtapi__redis__srv__opt_1acd4180344ee8844db9874297b35d1eba: .. ref-code-block:: cpp :class: doxyrest-title-code-block const char* logfile Log file name. Use empty string to log on the standart output. .. index:: pair: variable; databases .. _doxid-structtapi__redis__srv__opt_1ac545cfa8ddf1e8d29022c5b2c007c384: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`tapi_job_opt_uint_t` databases Number of databases. .. index:: pair: variable; rdbcompression .. _doxid-structtapi__redis__srv__opt_1a3c280761d514e43d49c084437151bdda: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_bool3` rdbcompression Compress string objects when dump .rdb databases. .. index:: pair: variable; rdbchecksum .. _doxid-structtapi__redis__srv__opt_1a1b418723a633ea98d752280c1fb8f51e: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_bool3` rdbchecksum Place checksum at the end of the file. It will lower performance (around 10%) when saving and loading RDB files. .. index:: pair: variable; repl_diskless_sync .. _doxid-structtapi__redis__srv__opt_1a61c4377ef37af221feba2425b8ffc4ba: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_bool3` repl_diskless_sync Replication SYNC strategy: disk, if ``TE_BOOL3_TRUE``, socket otherwise. .. index:: pair: variable; repl_diskless_load .. _doxid-structtapi__redis__srv__opt_1a3656d605ec77d299569a6bca95517402: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`tapi_redis_srv_rdl` repl_diskless_load Replica can load the RDB it reads from the replication link directly from the socket, or store the RDB to a file and read that file after it was completely received from the master. .. index:: pair: variable; appendonly .. _doxid-structtapi__redis__srv__opt_1a185161fed65190f716f33e2d835da502: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_bool3` appendonly Use append only file. .. index:: pair: variable; activerehashing .. _doxid-structtapi__redis__srv__opt_1a9e6a3876631d2ab277efee448aa467ce: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_bool3` activerehashing Use active rehashing. .. index:: pair: variable; io_threads .. _doxid-structtapi__redis__srv__opt_1ac494399f603122502aa05ca8c0996337: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`tapi_job_opt_uint_t` io_threads Number of I/O threads to use. .. index:: pair: variable; io_threads_do_reads .. _doxid-structtapi__redis__srv__opt_1a875d0608e85293144bc159a9ceeee5f0: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_bool3` io_threads_do_reads Enable threading of reads and protocol parsing. .. index:: pair: variable; exec_path .. _doxid-structtapi__redis__srv__opt_1aa05ee3d643469da37d30dbfbebaca858: .. ref-code-block:: cpp :class: doxyrest-title-code-block const char* exec_path Path to redis-server exec (if ``NULL`` then "redis-server").