Is there any official support and/or any known modules for Redis?
2 Answers
Accepted Answer
No, but I've two thoughts:
- Generally you wouldn't talk directly to a database such as Redis from your app. Redis is a datastore, and should only be used within a trusted environment. Someone could easily modify the data in Redis or fill it up so your server runs out of memory.
- If you really want to work with Redis directly and you know what you're doing then you could create a client. The Redis protocol is dead simple, so using a TCP socket should be straightforward.
Hello,
no, there is no support for Redis. Maybe you can use the Redis Webservices (I would recommend using the JSON based one). You can see the Redis WSDL here.
Best,
Mauro
Your Answer
Think you can help? Login to answer this question!