Skip to content

Commit 163af59

Browse files
committed
Ellipsis x3
1 parent c2a5a08 commit 163af59

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ sc.toRedisHASH(hashRDD, hashName, ("your.redis.server", 6379))
151151
Use the following to store an RDD in a Redis List:
152152

153153
```
154+
...
154155
sc.toRedisLIST(listRDD, listName, ("your.redis.server", 6379))
155156
```
156157

@@ -161,13 +162,15 @@ The `listRDD` is an RDD that contains all of the list's string elements in order
161162
For storing data in a Redis Set, use `toRedisSET` as follows:
162163

163164
```
165+
...
164166
sc.toRedisSET(setRDD, setName, ("your.redis.server", 6379))
165167
```
166168

167169
Where `setRDD` is an RDD with the set's string elements and `setName` is the name of the key for that set.
168170

169171
#### Sorted Sets
170172
```
173+
...
171174
sc.toRedisZSET(zsetRDD, zsetName, ("your.redis.server", 6379))
172175
```
173176

0 commit comments

Comments
 (0)