Does Titanium support Redis?

You must Login before you can answer or comment on any questions.

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.
— answered 1 year ago by David Doran
answer permalink
1 Comment
  • I really just want to use Redis for its messaging (pub/sub) abilities. Do you have any other suggestions for this use case?

    — commented 1 year ago by Josh Delsman

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!