I'm using Symfony RedisAdapter in a project in order to handle cached values, and it's already deeply used inside the project.
Now I would like to add new redis keys which store some numerical counts, which can be updated very often. So I want to use INCR and DECR redis commands in order to do it fast.
But the RedisAdapter don't seem to allow custom redis commands, you can only fetch, check key existence, delete and save keys. Of course I could fetch the count value, increment it in php, then save it again, but it's not very optimized considering that there is already a solution implemented in redis for this.
Is it possible to run custom redis commands, while keeping the redis abstraction layer offered by Symfony?