Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 40.49 KB | None | 0 0
  1. name | setting | short_desc
  2. ----------------------------------------+--------------------------------------------+-----------------------------------------------------------------------------------
  3. allow_system_table_mods | off | Allows modifications of the structure of system tables.
  4. application_name | psql | Sets the application name to be reported in statistics and logs.
  5. archive_command | (disabled) | Sets the shell command that will be called to archive a WAL file.
  6. archive_mode | off | Allows archiving of WAL files using archive_command.
  7. archive_timeout | 0 | Forces a switch to the next WAL file if a new file has not been started within N seconds.
  8. array_nulls | on | Enable input of NULL elements in arrays.
  9. authentication_timeout | 60 | Sets the maximum allowed time to complete client authentication.
  10. autovacuum | on | Starts the autovacuum subprocess.
  11. autovacuum_analyze_scale_factor | 0.1 | Number of tuple inserts, updates, or deletes prior to analyze as a fraction of reltuples.
  12. autovacuum_analyze_threshold | 50 | Minimum number of tuple inserts, updates, or deletes prior to analyze.
  13. autovacuum_freeze_max_age | 200000000 | Age at which to autovacuum a table to prevent transaction ID wraparound.
  14. autovacuum_max_workers | 3 | Sets the maximum number of simultaneously running autovacuum worker processes.
  15. autovacuum_multixact_freeze_max_age | 400000000 | Multixact age at which to autovacuum a table to prevent multixact wraparound.
  16. autovacuum_naptime | 60 | Time to sleep between autovacuum runs.
  17. autovacuum_vacuum_cost_delay | 20 | Vacuum cost delay in milliseconds, for autovacuum.
  18. autovacuum_vacuum_cost_limit | -1 | Vacuum cost amount available before napping, for autovacuum.
  19. autovacuum_vacuum_scale_factor | 0.2 | Number of tuple updates or deletes prior to vacuum as a fraction of reltuples.
  20. autovacuum_vacuum_threshold | 50 | Minimum number of tuple updates or deletes prior to vacuum.
  21. autovacuum_work_mem | -1 | Sets the maximum memory to be used by each autovacuum worker process.
  22. backend_flush_after | 0 | Number of pages after which previously performed writes are flushed to disk.
  23. backslash_quote | safe_encoding | Sets whether "\'" is allowed in string literals.
  24. bgwriter_delay | 200 | Background writer sleep time between rounds.
  25. bgwriter_flush_after | 0 | Number of pages after which previously performed writes are flushed to disk.
  26. bgwriter_lru_maxpages | 100 | Background writer maximum number of LRU pages to flush per round.
  27. bgwriter_lru_multiplier | 2 | Multiple of the average buffer usage to free per round.
  28. block_size | 8192 | Shows the size of a disk block.
  29. bonjour | off | Enables advertising the server via Bonjour.
  30. bonjour_name | | Sets the Bonjour service name.
  31. bytea_output | hex | Sets the output format for bytea.
  32. check_function_bodies | on | Check function bodies during CREATE FUNCTION.
  33. checkpoint_completion_target | 0.5 | Time spent flushing dirty buffers during checkpoint, as fraction of checkpoint interval.
  34. checkpoint_flush_after | 0 | Number of pages after which previously performed writes are flushed to disk.
  35. checkpoint_timeout | 300 | Sets the maximum time between automatic WAL checkpoints.
  36. checkpoint_warning | 30 | Enables warnings if checkpoint segments are filled more frequently than this.
  37. client_encoding | UTF8 | Sets the client's character set encoding.
  38. client_min_messages | notice | Sets the message levels that are sent to the client.
  39. cluster_name | | Sets the name of the cluster, which is included in the process title.
  40. commit_delay | 0 | Sets the delay in microseconds between transaction commit and flushing WAL to disk.
  41. commit_siblings | 5 | Sets the minimum concurrent open transactions before performing commit_delay.
  42. config_file | /usr/local/var/postgres/postgresql.conf | Sets the server's main configuration file.
  43. constraint_exclusion | partition | Enables the planner to use constraints to optimize queries.
  44. cpu_index_tuple_cost | 0.005 | Sets the planner's estimate of the cost of processing each index entry during an index scan.
  45. cpu_operator_cost | 0.0025 | Sets the planner's estimate of the cost of processing each operator or function call.
  46. cpu_tuple_cost | 0.01 | Sets the planner's estimate of the cost of processing each tuple (row).
  47. cursor_tuple_fraction | 0.1 | Sets the planner's estimate of the fraction of a cursor's rows that will be retrieved.
  48. data_checksums | off | Shows whether data checksums are turned on for this cluster.
  49. data_directory | /usr/local/var/postgres | Sets the server's data directory.
  50. data_directory_mode | 0700 | Mode of the data directory.
  51. DateStyle | ISO, MDY | Sets the display format for date and time values.
  52. db_user_namespace | off | Enables per-database user names.
  53. deadlock_timeout | 1000 | Sets the time to wait on a lock before checking for deadlock.
  54. debug_assertions | off | Shows whether the running server has assertion checks enabled.
  55. debug_pretty_print | on | Indents parse and plan tree displays.
  56. debug_print_parse | off | Logs each query's parse tree.
  57. debug_print_plan | off | Logs each query's execution plan.
  58. debug_print_rewritten | off | Logs each query's rewritten parse tree.
  59. default_statistics_target | 100 | Sets the default statistics target.
  60. default_tablespace | | Sets the default tablespace to create tables and indexes in.
  61. default_text_search_config | pg_catalog.english | Sets default text search configuration.
  62. default_transaction_deferrable | off | Sets the default deferrable status of new transactions.
  63. default_transaction_isolation | read committed | Sets the transaction isolation level of each new transaction.
  64. default_transaction_read_only | off | Sets the default read-only status of new transactions.
  65. default_with_oids | off | Create new tables with OIDs by default.
  66. dynamic_library_path | $libdir | Sets the path for dynamically loadable modules.
  67. dynamic_shared_memory_type | posix | Selects the dynamic shared memory implementation used.
  68. effective_cache_size | 524288 | Sets the planner's assumption about the total size of the data caches.
  69. effective_io_concurrency | 0 | Number of simultaneous requests that can be handled efficiently by the disk subsystem.
  70. enable_bitmapscan | on | Enables the planner's use of bitmap-scan plans.
  71. enable_gathermerge | on | Enables the planner's use of gather merge plans.
  72. enable_hashagg | on | Enables the planner's use of hashed aggregation plans.
  73. enable_hashjoin | on | Enables the planner's use of hash join plans.
  74. enable_indexonlyscan | on | Enables the planner's use of index-only-scan plans.
  75. enable_indexscan | on | Enables the planner's use of index-scan plans.
  76. enable_material | on | Enables the planner's use of materialization.
  77. enable_mergejoin | on | Enables the planner's use of merge join plans.
  78. enable_nestloop | on | Enables the planner's use of nested-loop join plans.
  79. enable_parallel_append | on | Enables the planner's use of parallel append plans.
  80. enable_parallel_hash | on | Enables the planner's use of parallel hash plans.
  81. enable_partition_pruning | on | Enable plan-time and run-time partition pruning.
  82. enable_partitionwise_aggregate | off | Enables partitionwise aggregation and grouping.
  83. enable_partitionwise_join | off | Enables partitionwise join.
  84. enable_seqscan | on | Enables the planner's use of sequential-scan plans.
  85. enable_sort | on | Enables the planner's use of explicit sort steps.
  86. enable_tidscan | on | Enables the planner's use of TID scan plans.
  87. escape_string_warning | on | Warn about backslash escapes in ordinary string literals.
  88. event_source | PostgreSQL | Sets the application name used to identify PostgreSQL messages in the event log.
  89. exit_on_error | off | Terminate session on any error.
  90. external_pid_file | | Writes the postmaster PID to the specified file.
  91. extra_float_digits | 0 | Sets the number of digits displayed for floating-point values.
  92. force_parallel_mode | off | Forces use of parallel query facilities.
  93. from_collapse_limit | 8 | Sets the FROM-list size beyond which subqueries are not collapsed.
  94. fsync | on | Forces synchronization of updates to disk.
  95. full_page_writes | on | Writes full pages to WAL when first modified after a checkpoint.
  96. geqo | on | Enables genetic query optimization.
  97. geqo_effort | 5 | GEQO: effort is used to set the default for other GEQO parameters.
  98. geqo_generations | 0 | GEQO: number of iterations of the algorithm.
  99. geqo_pool_size | 0 | GEQO: number of individuals in the population.
  100. geqo_seed | 0 | GEQO: seed for random path selection.
  101. geqo_selection_bias | 2 | GEQO: selective pressure within the population.
  102. geqo_threshold | 12 | Sets the threshold of FROM items beyond which GEQO is used.
  103. gin_fuzzy_search_limit | 0 | Sets the maximum allowed result for exact search by GIN.
  104. gin_pending_list_limit | 4096 | Sets the maximum size of the pending list for GIN index.
  105. hba_file | /usr/local/var/postgres/pg_hba.conf | Sets the server's "hba" configuration file.
  106. hot_standby | on | Allows connections and queries during recovery.
  107. hot_standby_feedback | off | Allows feedback from a hot standby to the primary that will avoid query conflicts.
  108. huge_pages | try | Use of huge pages on Linux or Windows.
  109. ident_file | /usr/local/var/postgres/pg_ident.conf | Sets the server's "ident" configuration file.
  110. idle_in_transaction_session_timeout | 0 | Sets the maximum allowed duration of any idling transaction.
  111. ignore_checksum_failure | off | Continues processing after a checksum failure.
  112. ignore_system_indexes | off | Disables reading from system indexes.
  113. integer_datetimes | on | Datetimes are integer based.
  114. IntervalStyle | postgres | Sets the display format for interval values.
  115. jit | off | Allow JIT compilation.
  116. jit_above_cost | 100000 | Perform JIT compilation if query is more expensive.
  117. jit_debugging_support | off | Register JIT compiled function with debugger.
  118. jit_dump_bitcode | off | Write out LLVM bitcode to facilitate JIT debugging.
  119. jit_expressions | on | Allow JIT compilation of expressions.
  120. jit_inline_above_cost | 500000 | Perform JIT inlining if query is more expensive.
  121. jit_optimize_above_cost | 500000 | Optimize JITed functions if query is more expensive.
  122. jit_profiling_support | off | Register JIT compiled function with perf profiler.
  123. jit_provider | llvmjit | JIT provider to use.
  124. jit_tuple_deforming | on | Allow JIT compilation of tuple deforming.
  125. join_collapse_limit | 8 | Sets the FROM-list size beyond which JOIN constructs are not flattened.
  126. krb_caseins_users | off | Sets whether Kerberos and GSSAPI user names should be treated as case-insensitive.
  127. krb_server_keyfile | FILE:/usr/local/etc/postgresql/krb5.keytab | Sets the location of the Kerberos server key file.
  128. lc_collate | en_US.UTF-8 | Shows the collation order locale.
  129. lc_ctype | en_US.UTF-8 | Shows the character classification and case conversion locale.
  130. lc_messages | en_US.UTF-8 | Sets the language in which messages are displayed.
  131. lc_monetary | en_US.UTF-8 | Sets the locale for formatting monetary amounts.
  132. lc_numeric | en_US.UTF-8 | Sets the locale for formatting numbers.
  133. lc_time | en_US.UTF-8 | Sets the locale for formatting date and time values.
  134. listen_addresses | localhost | Sets the host name or IP address(es) to listen to.
  135. lo_compat_privileges | off | Enables backward compatibility mode for privilege checks on large objects.
  136. local_preload_libraries | | Lists unprivileged shared libraries to preload into each backend.
  137. lock_timeout | 0 | Sets the maximum allowed duration of any wait for a lock.
  138. log_autovacuum_min_duration | -1 | Sets the minimum execution time above which autovacuum actions will be logged.
  139. log_checkpoints | off | Logs each checkpoint.
  140. log_connections | off | Logs each successful connection.
  141. log_destination | stderr | Sets the destination for server log output.
  142. log_directory | log | Sets the destination directory for log files.
  143. log_disconnections | off | Logs end of a session, including duration.
  144. log_duration | off | Logs the duration of each completed SQL statement.
  145. log_error_verbosity | default | Sets the verbosity of logged messages.
  146. log_executor_stats | off | Writes executor performance statistics to the server log.
  147. log_file_mode | 0600 | Sets the file permissions for log files.
  148. log_filename | postgresql-%Y-%m-%d_%H%M%S.log | Sets the file name pattern for log files.
  149. log_hostname | off | Logs the host name in the connection logs.
  150. log_line_prefix | %m [%p] | Controls information prefixed to each log line.
  151. log_lock_waits | off | Logs long lock waits.
  152. log_min_duration_statement | -1 | Sets the minimum execution time above which statements will be logged.
  153. log_min_error_statement | error | Causes all statements generating error at or above this level to be logged.
  154. log_min_messages | warning | Sets the message levels that are logged.
  155. log_parser_stats | off | Writes parser performance statistics to the server log.
  156. log_planner_stats | off | Writes planner performance statistics to the server log.
  157. log_replication_commands | off | Logs each replication command.
  158. log_rotation_age | 1440 | Automatic log file rotation will occur after N minutes.
  159. log_rotation_size | 10240 | Automatic log file rotation will occur after N kilobytes.
  160. log_statement | none | Sets the type of statements logged.
  161. log_statement_stats | off | Writes cumulative performance statistics to the server log.
  162. log_temp_files | -1 | Log the use of temporary files larger than this number of kilobytes.
  163. log_timezone | US/Eastern | Sets the time zone to use in log messages.
  164. log_truncate_on_rotation | off | Truncate existing log files of same name during log rotation.
  165. logging_collector | off | Start a subprocess to capture stderr output and/or csvlogs into log files.
  166. maintenance_work_mem | 65536 | Sets the maximum memory to be used for maintenance operations.
  167. max_connections | 100 | Sets the maximum number of concurrent connections.
  168. max_files_per_process | 1000 | Sets the maximum number of simultaneously open files for each server process.
  169. max_function_args | 100 | Shows the maximum number of function arguments.
  170. max_identifier_length | 63 | Shows the maximum identifier length.
  171. max_index_keys | 32 | Shows the maximum number of index keys.
  172. max_locks_per_transaction | 64 | Sets the maximum number of locks per transaction.
  173. max_logical_replication_workers | 4 | Maximum number of logical replication worker processes.
  174. max_parallel_maintenance_workers | 2 | Sets the maximum number of parallel processes per maintenance operation.
  175. max_parallel_workers | 8 | Sets the maximum number of parallel workers that can be active at one time.
  176. max_parallel_workers_per_gather | 2 | Sets the maximum number of parallel processes per executor node.
  177. max_pred_locks_per_page | 2 | Sets the maximum number of predicate-locked tuples per page.
  178. max_pred_locks_per_relation | -2 | Sets the maximum number of predicate-locked pages and tuples per relation.
  179. max_pred_locks_per_transaction | 64 | Sets the maximum number of predicate locks per transaction.
  180. max_prepared_transactions | 0 | Sets the maximum number of simultaneously prepared transactions.
  181. max_replication_slots | 10 | Sets the maximum number of simultaneously defined replication slots.
  182. max_stack_depth | 2048 | Sets the maximum stack depth, in kilobytes.
  183. max_standby_archive_delay | 30000 | Sets the maximum delay before canceling queries when a hot standby server is processing archived WAL data.
  184. max_standby_streaming_delay | 30000 | Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.
  185. max_sync_workers_per_subscription | 2 | Maximum number of table synchronization workers per subscription.
  186. max_wal_senders | 10 | Sets the maximum number of simultaneously running WAL sender processes.
  187. max_wal_size | 1024 | Sets the WAL size that triggers a checkpoint.
  188. max_worker_processes | 8 | Maximum number of concurrent worker processes.
  189. min_parallel_index_scan_size | 64 | Sets the minimum amount of index data for a parallel scan.
  190. min_parallel_table_scan_size | 1024 | Sets the minimum amount of table data for a parallel scan.
  191. min_wal_size | 80 | Sets the minimum size to shrink the WAL to.
  192. old_snapshot_threshold | -1 | Time before a snapshot is too old to read pages changed after the snapshot was taken.
  193. operator_precedence_warning | off | Emit a warning for constructs that changed meaning since PostgreSQL 9.4.
  194. parallel_leader_participation | on | Controls whether Gather and Gather Merge also run subplans.
  195. parallel_setup_cost | 1000 | Sets the planner's estimate of the cost of starting up worker processes for parallel query.
  196. parallel_tuple_cost | 0.1 | Sets the planner's estimate of the cost of passing each tuple (row) from worker to master backend.
  197. password_encryption | md5 | Encrypt passwords.
  198. port | 5432 | Sets the TCP port the server listens on.
  199. post_auth_delay | 0 | Waits N seconds on connection startup after authentication.
  200. pre_auth_delay | 0 | Waits N seconds on connection startup before authentication.
  201. quote_all_identifiers | off | When generating SQL fragments, quote all identifiers.
  202. random_page_cost | 4 | Sets the planner's estimate of the cost of a nonsequentially fetched disk page.
  203. restart_after_crash | on | Reinitialize server after backend crash.
  204. row_security | on | Enable row security.
  205. search_path | "$user", public | Sets the schema search order for names that are not schema-qualified.
  206. segment_size | 131072 | Shows the number of pages per disk file.
  207. seq_page_cost | 1 | Sets the planner's estimate of the cost of a sequentially fetched disk page.
  208. server_encoding | UTF8 | Sets the server (database) character set encoding.
  209. server_version | 11.1 | Shows the server version.
  210. server_version_num | 110001 | Shows the server version as an integer.
  211. session_preload_libraries | | Lists shared libraries to preload into each backend.
  212. session_replication_role | origin | Sets the session's behavior for triggers and rewrite rules.
  213. shared_buffers | 131072 | Sets the number of shared memory buffers used by the server.
  214. shared_preload_libraries | | Lists shared libraries to preload into server.
  215. ssl | off | Enables SSL connections.
  216. ssl_ca_file | | Location of the SSL certificate authority file.
  217. ssl_cert_file | server.crt | Location of the SSL server certificate file.
  218. ssl_ciphers | HIGH:MEDIUM:+3DES:!aNULL | Sets the list of allowed SSL ciphers.
  219. ssl_crl_file | | Location of the SSL certificate revocation list file.
  220. ssl_dh_params_file | | Location of the SSL DH parameters file.
  221. ssl_ecdh_curve | prime256v1 | Sets the curve to use for ECDH.
  222. ssl_key_file | server.key | Location of the SSL server private key file.
  223. ssl_passphrase_command | | Command to obtain passphrases for SSL.
  224. ssl_passphrase_command_supports_reload | off | Also use ssl_passphrase_command during server reload.
  225. ssl_prefer_server_ciphers | on | Give priority to server ciphersuite order.
  226. standard_conforming_strings | on | Causes '...' strings to treat backslashes literally.
  227. statement_timeout | 0 | Sets the maximum allowed duration of any statement.
  228. stats_temp_directory | pg_stat_tmp | Writes temporary statistics files to the specified directory.
  229. superuser_reserved_connections | 3 | Sets the number of connection slots reserved for superusers.
  230. synchronize_seqscans | on | Enable synchronized sequential scans.
  231. synchronous_commit | on | Sets the current transaction's synchronization level.
  232. synchronous_standby_names | | Number of synchronous standbys and list of names of potential synchronous ones.
  233. syslog_facility | local0 | Sets the syslog "facility" to be used when syslog enabled.
  234. syslog_ident | postgres | Sets the program name used to identify PostgreSQL messages in syslog.
  235. syslog_sequence_numbers | on | Add sequence number to syslog messages to avoid duplicate suppression.
  236. syslog_split_messages | on | Split messages sent to syslog by lines and to fit into 1024 bytes.
  237. tcp_keepalives_count | 0 | Maximum number of TCP keepalive retransmits.
  238. tcp_keepalives_idle | 0 | Time between issuing TCP keepalives.
  239. tcp_keepalives_interval | 0 | Time between TCP keepalive retransmits.
  240. temp_buffers | 1024 | Sets the maximum number of temporary buffers used by each session.
  241. temp_file_limit | -1 | Limits the total size of all temporary files used by each process.
  242. temp_tablespaces | | Sets the tablespace(s) to use for temporary tables and sort files.
  243. TimeZone | US/Eastern | Sets the time zone for displaying and interpreting time stamps.
  244. timezone_abbreviations | Default | Selects a file of time zone abbreviations.
  245. trace_notify | off | Generates debugging output for LISTEN and NOTIFY.
  246. trace_recovery_messages | log | Enables logging of recovery-related debugging information.
  247. trace_sort | off | Emit information about resource usage in sorting.
  248. track_activities | on | Collects information about executing commands.
  249. track_activity_query_size | 1024 | Sets the size reserved for pg_stat_activity.query, in bytes.
  250. track_commit_timestamp | off | Collects transaction commit time.
  251. track_counts | on | Collects statistics on database activity.
  252. track_functions | none | Collects function-level statistics on database activity.
  253. track_io_timing | off | Collects timing statistics for database I/O activity.
  254. transaction_deferrable | off | Whether to defer a read-only serializable transaction until it can be executed with no possible serialization failures.
  255. transaction_isolation | read committed | Sets the current transaction's isolation level.
  256. transaction_read_only | off | Sets the current transaction's read-only status.
  257. transform_null_equals | off | Treats "expr=NULL" as "expr IS NULL".
  258. unix_socket_directories | /tmp | Sets the directories where Unix-domain sockets will be created.
  259. unix_socket_group | | Sets the owning group of the Unix-domain socket.
  260. unix_socket_permissions | 0777 | Sets the access permissions of the Unix-domain socket.
  261. update_process_title | on | Updates the process title to show the active SQL command.
  262. vacuum_cleanup_index_scale_factor | 0.1 | Number of tuple inserts prior to index cleanup as a fraction of reltuples.
  263. vacuum_cost_delay | 0 | Vacuum cost delay in milliseconds.
  264. vacuum_cost_limit | 200 | Vacuum cost amount available before napping.
  265. vacuum_cost_page_dirty | 20 | Vacuum cost for a page dirtied by vacuum.
  266. vacuum_cost_page_hit | 1 | Vacuum cost for a page found in the buffer cache.
  267. vacuum_cost_page_miss | 10 | Vacuum cost for a page not found in the buffer cache.
  268. vacuum_defer_cleanup_age | 0 | Number of transactions by which VACUUM and HOT cleanup should be deferred, if any.
  269. vacuum_freeze_min_age | 50000000 | Minimum age at which VACUUM should freeze a table row.
  270. vacuum_freeze_table_age | 150000000 | Age at which VACUUM should scan whole table to freeze tuples.
  271. vacuum_multixact_freeze_min_age | 5000000 | Minimum age at which VACUUM should freeze a MultiXactId in a table row.
  272. vacuum_multixact_freeze_table_age | 150000000 | Multixact age at which VACUUM should scan whole table to freeze tuples.
  273. wal_block_size | 8192 | Shows the block size in the write ahead log.
  274. wal_buffers | 2048 | Sets the number of disk-page buffers in shared memory for WAL.
  275. wal_compression | off | Compresses full-page writes written in WAL file.
  276. wal_consistency_checking | | Sets the WAL resource managers for which WAL consistency checks are done.
  277. wal_keep_segments | 0 | Sets the number of WAL files held for standby servers.
  278. wal_level | replica | Set the level of information written to the WAL.
  279. wal_log_hints | off | Writes full pages to WAL when first modified after a checkpoint, even for a non-critical modifications.
  280. wal_receiver_status_interval | 10 | Sets the maximum interval between WAL receiver status reports to the primary.
  281. wal_receiver_timeout | 60000 | Sets the maximum wait time to receive data from the primary.
  282. wal_retrieve_retry_interval | 5000 | Sets the time to wait before retrying to retrieve WAL after a failed attempt.
  283. wal_segment_size | 16777216 | Shows the size of write ahead log segments.
  284. wal_sender_timeout | 60000 | Sets the maximum time to wait for WAL replication.
  285. wal_sync_method | open_datasync | Selects the method used for forcing WAL updates to disk.
  286. wal_writer_delay | 200 | Time between WAL flushes performed in the WAL writer.
  287. wal_writer_flush_after | 128 | Amount of WAL written out by WAL writer that triggers a flush.
  288. work_mem | 262144 | Sets the maximum memory to be used for query workspaces.
  289. xmlbinary | base64 | Sets how binary values are to be encoded in XML.
  290. xmloption | content | Sets whether XML data in implicit parsing and serialization operations is to be considered as documents or content fragments.
  291. zero_damaged_pages | off | Continues processing past damaged page headers.
  292. (289 rows)
  293.  
  294. Time: 6.656 ms
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement