Category: Redis
Count the number of items in a Redis search index called "player-name-idx" using LIMIT 0 0
FT.SEARCH player-name-idx "*" LIMIT 0 0
Count all matches in a Redis search index called "player-name-idx" where the value for the name`` field contains
smith`:
FT.SEARCH player-name-idx "@name: smith" LIMIT 0 0
Note:
Searches in Redis are case insensitive. For example, "Smith" equates to "smith".