File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 33
44## Example: Using the Python Client:
55``` python
6- from gearsclient import GearsRemoteBuilder as GRB
6+ from gearsclient import GearsRemoteBuilder as GearsBuilder
77import redis
88
99conn = redis.Redis(host = ' localhost' , port = 6379 )
1010
1111# count for each genre how many times it appears
1212
13- res = GRB (' KeysOnlyReader' , r = conn).\
13+ res = GearsBuilder (' KeysOnlyReader' , r = conn).\
1414 map (lambda x :execute(' hget' , x, ' genres' )).\
1515 filter (lambda x :x != ' \\ N' ).\
1616 flatmap(lambda x : x.split(' ,' )).\
@@ -27,4 +27,4 @@ for r in res[0]:
2727```
2828pip install git+https://github.com/RedisGears/redisgears-py.git
2929```
30- Notice that the library also need to be installed in RedisGears virtual env.
30+ Notice that the library also need to be installed in RedisGears virtual env.
You can’t perform that action at this time.
0 commit comments