We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8720b69 commit bfef3c7Copy full SHA for bfef3c7
doc/python.md
@@ -21,7 +21,7 @@ $ bin/pyspark --jars <path-to>/spark-redis-<version>-jar-with-dependencies.jar -
21
```python
22
df = spark.read.json("examples/src/main/resources/people.json")
23
df.write.format("org.apache.spark.sql.redis").option("table", "people").option("key.column", "name").save()
24
-loadedDf = spark.read.format("org.apache.spark.sql.redis").option("table", "people").load()
+loadedDf = spark.read.format("org.apache.spark.sql.redis").option("table", "people").option("key.column", "name").load()
25
loadedDf.show()
26
```
27
@@ -31,8 +31,6 @@ loadedDf.show()
31
127.0.0.1:6379> hgetall people:Justin
32
1) "age"
33
2) "19"
34
-3) "name"
35
-4) "Justin"
36
37
38
The self-contained application can be configured in the following manner:
0 commit comments