--- acl_categories: - '@admin' - '@search' arguments: - name: option type: string categories: - docs - develop - stack - oss - rs - rc - oss - kubernetes - clients command_flags: - readonly complexity: O(1) deprecated_since: 8.0.0 description: Retrieves runtime configuration options doc_flags: - deprecated group: search hidden: false linkTitle: FT.CONFIG GET module: Search railroad_diagram: /images/railroad/ft.config-get.svg replaced_by: '[`CONFIG GET`]({{< relref "/commands/config-get" >}})' since: 1.0.0 stack_path: docs/interact/search-and-query summary: Retrieves runtime configuration options syntax_fmt: FT.CONFIG GET option title: FT.CONFIG GET --- Retrieve configuration options [Examples](#examples) ## Required arguments
option is name of the configuration option, or '*' for all.
## Examples
Retrieve configuration options {{< highlight bash >}} 127.0.0.1:6379> FT.CONFIG GET TIMEOUT 1) 1) TIMEOUT 2) 42 {{< / highlight >}} {{< highlight bash >}} 127.0.0.1:6379> FT.CONFIG GET * 1) 1) EXTLOAD 2) (nil) 2) 1) SAFEMODE 2) true 3) 1) CONCURRENT_WRITE_MODE 2) false 4) 1) NOGC 2) false 5) 1) MINPREFIX 2) 2 6) 1) FORKGC_SLEEP_BEFORE_EXIT 2) 0 7) 1) MAXDOCTABLESIZE 2) 1000000 8) 1) MAXSEARCHRESULTS 2) 1000000 9) 1) MAXAGGREGATERESULTS 2) unlimited 10) 1) MAXEXPANSIONS 2) 200 11) 1) MAXPREFIXEXPANSIONS 2) 200 12) 1) TIMEOUT 2) 42 13) 1) INDEX_THREADS 2) 8 14) 1) SEARCH_THREADS 2) 20 15) 1) FRISOINI 2) (nil) 16) 1) ON_TIMEOUT 2) return 17) 1) GCSCANSIZE 2) 100 18) 1) MIN_PHONETIC_TERM_LEN 2) 3 19) 1) GC_POLICY 2) fork 20) 1) FORK_GC_RUN_INTERVAL 2) 30 21) 1) FORK_GC_CLEAN_THRESHOLD 2) 100 22) 1) FORK_GC_RETRY_INTERVAL 2) 5 23) 1) FORK_GC_CLEAN_NUMERIC_EMPTY_NODES 2) true 24) 1) _FORK_GC_CLEAN_NUMERIC_EMPTY_NODES 2) true 25) 1) _MAX_RESULTS_TO_UNSORTED_MODE 2) 1000 26) 1) UNION_ITERATOR_HEAP 2) 20 27) 1) CURSOR_MAX_IDLE 2) 300000 28) 1) NO_MEM_POOLS 2) false 29) 1) PARTIAL_INDEXED_DOCS 2) false 30) 1) UPGRADE_INDEX 2) Upgrade config for upgrading 31) 1) _NUMERIC_COMPRESS 2) false 32) 1) _FREE_RESOURCE_ON_THREAD 2) true 33) 1) _PRINT_PROFILE_CLOCK 2) true 34) 1) RAW_DOCID_ENCODING 2) false 35) 1) _NUMERIC_RANGES_PARENTS 2) 0 36) 1) MINSTEMLEN 2) 4 {{< / highlight >}}
## Redis Software and Redis Cloud compatibility | Redis
Software | Redis Cloud
Flexible & Annual | Redis Cloud
Free & Fixed | Notes | |:----------------------|:-----------------|:-----------------|:------| | ❌ Not supported | ⚠️ Not supported1 | ❌ Not supported | | 1. [Contact support](https://redis.com/company/support/) to view the current configuration values or request configuration changes for Flexible or Annual Redis Cloud subscriptions. ## Return information {{< multitabs id="ft-config-get-return-info" tab1="RESP2" tab2="RESP3" >}} [Array]({{< relref "/develop/reference/protocol-spec#arrays" >}}) of [arrays]({{< relref "/develop/reference/protocol-spec#arrays" >}}), where each sub-array contains a configuration option name and its value. -tab-sep- [Map]({{< relref "/develop/reference/protocol-spec#maps" >}}) where keys are configuration option names and values are their corresponding values. {{< /multitabs >}} ## See also [`FT.CONFIG SET`]({{< relref "commands/ft.config-set/" >}}) | [`FT.CONFIG HELP`]({{< relref "commands/ft.config-help/" >}}) ## Related topics [RediSearch]({{< relref "/develop/ai/search-and-query/" >}})