FT.DICTDUMP
Syntax
FT.DICTDUMP dict
- Available in:
- Redis Open Source / Search 1.4.0
- Time complexity:
- O(N), where N is the size of the dictionary
- ACL categories:
-
@search, - Compatibility:
- Redis Enterprise and Redis Cloud compatibility
Dump all terms in the given dictionary
Required argumemts
dict
is dictionary name.
Examples
Dump all terms in the dictionary
127.0.0.1:6379> FT.DICTDUMP dict
1) "foo"
2) "bar"
3) "hello world"Redis Enterprise and Redis Cloud compatibility
| Redis Enterprise |
Redis Cloud Flexible & Annual |
Redis Cloud Free & Fixed |
Notes |
|---|---|---|---|
| ✅ Supported | ✅ Supported | ✅ Supported |
Return information
Array of dictionary terms.