I have redis hashes as below.
HSET post:33 postId 33 title "Sumit Title 33"
HSET post:334 postId 334 title "Sumit Title 334"
HSET post:334 postId 22 title "Sumit Title 22"
It had an index like below -
FT.CREATE idx ON HASH PREFIX 1 "post:" SCHEMA postId TEXT SORTABLE title TEXT SORTABLE
Can you do a wildcard search like find all document with postId staring with '3' .. FT.SEARCH idx "@postId:3*" ?