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
Since redis 4.0, redis-cli accepts -u parameter, where an URL can be provided. Redis URL scheme is a well-known format (https://www.iana.org/assignments/uri-schemes/prov/redis) supported by most Redis drivers.
# snippet from redis-py. >>> from redis.cluster import RedisCluster as Redis >>> rc = Redis.from_url("redis://localhost:6379/0")
// snippet from jedis. Jedis jedis = new Jedis("redis://:password@host:port/database");
Since spark-redis uses Jedis, I'd like to suggest adding support to spark.redis.url to connect to Redis.
spark.redis.url
References:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Since redis 4.0, redis-cli accepts -u parameter, where an URL can be provided. Redis URL scheme is a well-known format (https://www.iana.org/assignments/uri-schemes/prov/redis) supported by most Redis drivers.
Since spark-redis uses Jedis, I'd like to suggest adding support to
spark.redis.url
to connect to Redis.References:
The text was updated successfully, but these errors were encountered: