---
acl_categories:
- '@search'
arguments:
- name: dict
type: string
categories:
- docs
- develop
- stack
- oss
- rs
- rc
- oss
- kubernetes
- clients
command_flags:
- readonly
complexity: O(N), where N is the size of the dictionary
description: Dumps all terms in the given dictionary
group: search
hidden: false
linkTitle: FT.DICTDUMP
module: Search
railroad_diagram: /images/railroad/ft.dictdump.svg
since: 1.4.0
stack_path: docs/interact/search-and-query
summary: Dumps all terms in the given dictionary
syntax_fmt: FT.DICTDUMP dict
title: FT.DICTDUMP
---
Dump all terms in the given dictionary
[Examples](#examples)
## Required argumemts
dict
is dictionary name.
## Examples
Dump all terms in the dictionary
{{< highlight bash >}}
127.0.0.1:6379> FT.DICTDUMP dict
1) "foo"
2) "bar"
3) "hello world"
{{< / highlight >}}
## Redis Software and Redis Cloud compatibility
| Redis
Software | Redis Cloud
Flexible & Annual | Redis Cloud
Free & Fixed | Notes |
|:----------------------|:-----------------|:-----------------|:------|
| ✅ Supported | ✅ Supported | ✅ Supported | |
## Return information
{{< multitabs id="ft-dictdump-return-info"
tab1="RESP2"
tab2="RESP3" >}}
[Array]({{< relref "/develop/reference/protocol-spec#arrays" >}}) of dictionary terms.
-tab-sep-
[Set]({{< relref "/develop/reference/protocol-spec#sets" >}}) of dictionary terms.
{{< /multitabs >}}
## See also
[`FT.DICTADD`]({{< relref "commands/ft.dictadd/" >}}) | [`FT.DICTDEL`]({{< relref "commands/ft.dictdel/" >}})
## Related topics
[RediSearch]({{< relref "/develop/ai/search-and-query/" >}})