FT.DICTDUMP

Syntax
FT.DICTDUMP dict
Available in:
Redis CE / Search 1.4.0
Time complexity:
O(N), where N is the size of the dictionary
ACL categories:
@search,

Dump all terms in the given dictionary

Examples

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"

See also

FT.DICTADD | FT.DICTDEL

RediSearch


RATE THIS PAGE
Back to top ↑