Hello, I have created a free account at redislabs.com (30 MB, 30 connections) in order to learn how to use the CloudDB block in AI2.
I was wondering if some way exists to reduce the number of simultaneously open Redis connections using CloudDB. I mean, opening the connection, performing the read and write operations needed, then closing the connection until it is needed the next time (perhaps some minutes later).
If I understand well, the connection with the Redis server is established as soon as my app is started and it will be kept permanently open until the app is killed. Is this assumption correct?
My assumption is based in what I am experiencing when I enable the “UseSSL” option. Please see SSL connection error when connecting to a Redis CloudDB. As I am showing any Redis errors on screen, I noticed that the first error shows up immediately when the app is started. After that, it keeps trying to reconnect forever, so that I get a new error through the CloudDBError event every 4 seconds.
Thank you.