FT.DICTDUMP
Syntax
FT.DICTDUMP dict
- Available in:
- Redis Stack / Search 1.4.0
- Time complexity:
- O(N), where N is the size of the dictionary
Dump all terms in the given dictionary
Required argumemts
dict
is dictionary name.
Return
FT.DICTDUMP returns an array, where each element is term (string).
Examples
Dump all terms in the dictionary
127.0.0.1:6379> FT.DICTDUMP dict
1) "foo"
2) "bar"
3) "hello world"