We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to setup a redis client. Here's how my cloud configuration looks like:
I am using the SAML password to make the connection as shown below:
I am using the following code to make a connection which doesn't give any error:
scala> val client = new RedisClient(host="HOST ADDRESS",port=PORTNUMBER,database=0,secret=Option("SecretKey"))
which is working fine but when I try to make a get item request as shown below:
client.get("Something")
it takes a very long time and then times out can someone help me understand if I need to modify any configurations or something?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am trying to setup a redis client. Here's how my cloud configuration looks like:
I am using the SAML password to make the connection as shown below:
I am using the following code to make a connection which doesn't give any error:
which is working fine but when I try to make a get item request as shown below:
client.get("Something")
it takes a very long time and then times out can someone help me understand if I need to modify any configurations or something?
The text was updated successfully, but these errors were encountered: