Skip to content

Commit 02f2757

Browse files
update readme.md file
1 parent f3e64d8 commit 02f2757

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This folder contains example scripts showing how to use Node Redis in different
2121
| `search-hashes.js` | Uses [RediSearch](https://redisearch.io) to index and search data in hashes. |
2222
| `search-json.js` | Uses [RediSearch](https://redisearch.io/) and [RedisJSON](https://redisjson.io/) to index and search JSON data. |
2323
| `search-knn.js` | Uses [RediSearch vector similarity]([https://redisearch.io/](https://redis.io/docs/stack/search/reference/vectors/)) to index and run KNN queries. |
24-
| `set-scan.js` | An example script that shows how to use the SSCAN iterator functionality. |
24+
| `set.js` | An example script that shows how to use the set datastructure within nodejs application. |
2525
| `sorted-set.js` | Add members with scores to a Sorted Set and retrieve them using the ZSCAN iteractor functionality. |
2626
| `stream-producer.js` | Adds entries to a [Redis Stream](https://redis.io/topics/streams-intro) using the `XADD` command. |
2727
| `stream-consumer.js` | Reads entries from a [Redis Stream](https://redis.io/topics/streams-intro) using the blocking `XREAD` command. |
@@ -88,7 +88,7 @@ const client = createClient();
8888

8989
await client.connect();
9090

91-
// Add your example code here...
91+
// Add your example code here...README
9292

9393
await client.quit();
9494
```

0 commit comments

Comments
 (0)