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,

Dump all terms in the given dictionary

Examples

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"

Return information

Array of dictionary terms.

See also

FT.DICTADD | FT.DICTDEL

RediSearch

RATE THIS PAGE
Back to top ↑