I want to use Redis in order to store some data from an OF application.
I know that there’s a C++ library for Redis, but I don’t want to add the Boost library. So is there a possibility to use the C library under a OF application?
I’ve some other possibility:
- Run a python script to update the redis db
- Send a post request to a webservice
but the best approach for me is to use the Redis C library.
Is it possible?