I am using redis to set and filter key value pair in my application. But it return always case sensitive data while filtering using HSCAN. I need to get case insensitive data from redis. How can I get this?
How to set Redis to be case insensitive?
ex: If I search "foo", it should return the following results,
Foo
foo
FOO
fOO
Kindly provide your inputs on this.