Is there a way to extend phpredis session.save handler to call a function when garbage collection happens?
ini_set('session.save_handler','redis');
//code to set an additional gc function
session_start();
I am looking to add an additional cleanup step for my session. The data I want to cleanup are temporary files in a database.
If it isn't possible to extend phpredis would there be a way to write a function that uses to simulate session garbage collection with the below ini settings?
session.gc_probability = 1
session.gc_divisor = 100