I have a data on which i need to do search based on mutiple queries eg
list1=redisClient.zrangebyscore('FID', min=20150000, max=20190000)
the above code gives me all values for FID(First intriductory date ) which has date between 2015 jan to 2019 jan.So it gives me the desired result but i would also like to append this search the result set based on date and NTM value as 1 for all the dates between 205 jan to 2019 jan .
list2 =redisClient.zrangebyscore('NTM', min=1, max=1)
How can i club both these search conditions together .