I am using redis graph in my django project to save huge number of data nodes. I am not able to set the expire time of these nodes so the redis data keeps on increasing.
I do not want to set a TTL in configuration as different nodes can have different TTL.
I am using django-redis==5.2.0
for intereacting with redis from django.
Also i am mostly using raw graph query to save data in redis graph like "CREATE (n:label {a:1}) RETURN n"
, so if there is a parameter which i can set here to set TTL it will be helpful.