Skip to content

Commit

Permalink
Small changes to set_value
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Partee committed Oct 31, 2023
1 parent b531cc3 commit ead0ecd
Show file tree
Hide file tree
Showing 5 changed files with 401 additions and 116 deletions.
24 changes: 16 additions & 8 deletions docs/user_guide/getting_started_01.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,15 @@
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Index already exists, overwriting.\n"
]
}
],
"source": [
"from redisvl.index import SearchIndex\n",
"\n",
Expand All @@ -217,8 +225,8 @@
"name": "stdout",
"output_type": "stream",
"text": [
"\u001b[32m15:47:29\u001b[0m \u001b[34m[RedisVL]\u001b[0m \u001b[1;30mINFO\u001b[0m Indices:\n",
"\u001b[32m15:47:29\u001b[0m \u001b[34m[RedisVL]\u001b[0m \u001b[1;30mINFO\u001b[0m 1. user_index\n"
"\u001b[32m16:44:23\u001b[0m \u001b[34m[RedisVL]\u001b[0m \u001b[1;30mINFO\u001b[0m Indices:\n",
"\u001b[32m16:44:23\u001b[0m \u001b[34m[RedisVL]\u001b[0m \u001b[1;30mINFO\u001b[0m 1. user_index\n"
]
}
],
Expand Down Expand Up @@ -290,7 +298,7 @@
{
"data": {
"text/plain": [
"[b'user:mary', b'user:john', b'user:joe']"
"[b'user:john', b'user:mary', b'user:joe']"
]
},
"execution_count": 8,
Expand Down Expand Up @@ -349,7 +357,7 @@
}
],
"source": [
"index.client.hgetall(\"user:tyler\")"
"index.client.hgetall(\"user:tyler\", )"
]
},
{
Expand Down Expand Up @@ -725,9 +733,9 @@
"│ offsets_per_term_avg │ 0 │\n",
"│ records_per_doc_avg │ 4 │\n",
"│ sortable_values_size_mb │ 0 │\n",
"│ total_indexing_time │ 0.4 \n",
"│ total_indexing_time │ 1.771\n",
"│ total_inverted_index_blocks │ 7 │\n",
"│ vector_index_sz_mb │ 0.235603\n",
"│ vector_index_sz_mb │ 0.17852 \n",
"╰─────────────────────────────┴─────────────╯\n"
]
}
Expand Down Expand Up @@ -771,7 +779,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.12"
"version": "3.8.13"
},
"orig_nbformat": 4,
"vscode": {
Expand Down
Loading

0 comments on commit ead0ecd

Please sign in to comment.