We are using RediSearch (io.rediseach.client.Cleint) in spring boot application for getting the records from redis DB. We are not able to get the date and time column values(ex: date as 07/21/2021 and time as 09:12) and other columns are retrieved properly. Could you please help me on this and is there anything we need to add in search query)
below is the code for reference
private final Client client; Query q = new Query("@columnName:"+columnValue); ex: Query q = new Query("@empName:"+raju); SearchResult result = client.search(q);