Redis – How to search for text and filter?
UPDATE: This is fixed in 0.8.0 I am trying to search for filter by an indexed field and search for free text inside my objects. It seems that it is searching for the company name or the search term. How…
UPDATE: This is fixed in 0.8.0 I am trying to search for filter by an indexed field and search for free text inside my objects. It seems that it is searching for the company name or the search term. How…
I’m using Redis OM for spring boot, I am having trouble querying objects because it only returns the first 10 records. Repository Class: public interface RedisBillerRepository extends RedisDocumentRepository<Biller, Long> { List<Biller> findByClientIds(String clientId); } Is there a way to return…