|
27 | 27 | "type": "internal-link",
|
28 | 28 | "id": "ds-json-intro",
|
29 | 29 | "label": "Introduction",
|
30 |
| - "summary": "Store, update, and retrieve JSON values in a Redis database, similar to any other Redis data type.", |
| 30 | + "summary": "A Redis JSON is a Redis data structure for storing, querying, and manipulating a single JSON document.", |
31 | 31 | "args": {
|
32 | 32 | "path": "/ds/json/introduction.md"
|
33 | 33 | }
|
|
94 | 94 | "type": "internal-link",
|
95 | 95 | "id": "ds-strings",
|
96 | 96 | "label": "Strings",
|
97 |
| - "summary": "Strings are the most basic Redis data type , often used for caching, and more.", |
| 97 | + "summary": "A Redis string, the most basic Redis data type, holds a sequence of bytes.", |
98 | 98 | "args": {
|
99 | 99 | "path": "/ds/strings.md"
|
100 | 100 | }
|
|
103 | 103 | "type": "internal-link",
|
104 | 104 | "id": "ds-hashes",
|
105 | 105 | "label": "Hashes",
|
106 |
| - "summary": "Use hashes to represent basic objects and to store groupings of counters, among other things.", |
| 106 | + "summary": "A Redis hash is a collection of fields, where each field is a name-value pair. Both name and value are strings.", |
107 | 107 | "args": {
|
108 | 108 | "path": "/ds/hashes.md"
|
109 | 109 | }
|
|
112 | 112 | "type": "internal-link",
|
113 | 113 | "id": "ds-lists",
|
114 | 114 | "label": "Lists",
|
115 |
| - "summary": "Redis lists are lists of strings sorted by insertion order, used e.g. to implement stacks and queues.", |
| 115 | + "summary": "A Redis list is a linked list of string values, often used to implement stacks and queues.", |
116 | 116 | "args": {
|
117 | 117 | "path": "/ds/lists.md"
|
118 | 118 | }
|
|
121 | 121 | "type": "internal-link",
|
122 | 122 | "id": "ds-sets",
|
123 | 123 | "label": "Sets",
|
124 |
| - "summary": "Sets are unordered collections of unique strings that act like the sets from your favorite programming language.", |
| 124 | + "summary": "A Redis set is an unordered collection of unique strings.", |
125 | 125 | "args": {
|
126 | 126 | "path": "/ds/sets.md"
|
127 | 127 | }
|
|
130 | 130 | "type": "internal-link",
|
131 | 131 | "id": "ds-sorted-sets",
|
132 | 132 | "label": "Sorted sets",
|
133 |
| - "summary": "Sorted sets are collections of unique strings ordered by an associated score.", |
| 133 | + "summary": "A Redis sorted set is a collection of unique strings, ordered by each string's associated score.", |
134 | 134 | "args": {
|
135 | 135 | "path": "/ds/sorted_sets.md"
|
136 | 136 | }
|
|
0 commit comments