Running SQL query against Azure redis cache

1.1k Views Asked by At

I have a table in database which is named Country table. I want to put this table data on Azure redis cache. This table data will change once a week or month so, I will update cache once a week. I wanted to know is there any way which allow me to run SQL query on this cached data ?. For example: If i want to run SELECT * FROM country WHERE id = 1; or SELECT * FROM country WHERE countryName = 'somename'; or SELECT * FROM country WHERE id=1 OR countryName='somename';. Please let me know if there is any way to do this.

0

There are 0 best solutions below