Skip to content

Commit 713e3d2

Browse files
documentation updates
1 parent 23f1c50 commit 713e3d2

File tree

15 files changed

+349
-287
lines changed

15 files changed

+349
-287
lines changed

docs/_static/gallery.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
- title: Arxiv Paper Search
3-
website: https://docsearch.redisventures.com
3+
website: https://docsearch.redisvl.com
44
img-bottom: ../_static/gallery-images/arxiv-search.png
55
- title: Real-Time Embeddings with Redis and Bytewax
66
website: https://github.com/awmatheson/real-time-embeddings

docs/_static/js/sidebar.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,18 @@ const toc = [
22
{ header: "Overview", toc: [
33
{ title: "RedisVL", path: "/index.html" },
44
{ title: "Install", path: "/overview/installation.html" },
5-
{ title: "CLI", path: "/user_guide/cli.html" },
5+
{ title: "CLI", path: "/overview/cli.html" },
66
]},
77
{ header: "User Guides", toc: [
88
{ title: "Getting Started", path: "/user_guide/getting_started_01.html" },
99
{ title: "Query and Filter", path: "/user_guide/hybrid_queries_02.html" },
1010
{ title: "JSON vs Hash Storage", path: "/user_guide/hash_vs_json_05.html" },
1111
{ title: "Vectorizers", path: "/user_guide/vectorizers_04.html" },
1212
{ title: "Semantic Caching", path: "/user_guide/llmcache_03.html" },
13-
1413
]},
1514
{ header: "API", toc: [
16-
{ title: "Schema", path: "/api/indexschema.html"},
17-
{ title: "Index", path: "/api/searchindex.html" },
15+
{ title: "Schema", path: "/api/schema.html"},
16+
{ title: "Search Index", path: "/api/searchindex.html" },
1817
{ title: "Query", path: "/api/query.html" },
1918
{ title: "Filter", path: "/api/filter.html" },
2019
{ title: "Vectorizers", path: "/api/vectorizer.html" },

docs/api/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ myst:
1111
:caption: RedisVL
1212
:maxdepth: 2
1313
14-
indexschema
14+
schema
1515
searchindex
1616
query
1717
filter
File renamed without changes.

docs/api/searchindex.rst

Lines changed: 26 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
1-
***********
2-
SearchIndex
3-
***********
1+
********************
2+
Search Index Classes
3+
********************
4+
5+
.. list-table::
6+
:widths: 25 75
7+
:header-rows: 1
8+
9+
* - Class
10+
- Description
11+
* - `SearchIndex <#searchindex_api>`_
12+
- Primary class to write, read, and search across data structures in Redis.
13+
* - `AsyncSearchIndex <#asyncsearchindex_api>`_
14+
- Async version of the SearchIndex to write, read, and search across data structures in Redis.
415

516
SearchIndex
617
===========
@@ -9,36 +20,19 @@ SearchIndex
920

1021
.. currentmodule:: redisvl.index
1122

12-
.. autosummary::
13-
14-
SearchIndex.from_yaml
15-
SearchIndex.from_dict
16-
SearchIndex.client
17-
SearchIndex.name
18-
SearchIndex.prefix
19-
SearchIndex.key_separator
20-
SearchIndex.storage_type
21-
SearchIndex.connect
22-
SearchIndex.disconnect
23-
SearchIndex.set_client
24-
SearchIndex.create
25-
SearchIndex.acreate
26-
SearchIndex.exists
27-
SearchIndex.aexists
28-
SearchIndex.load
29-
SearchIndex.aload
30-
SearchIndex.search
31-
SearchIndex.asearch
32-
SearchIndex.query
33-
SearchIndex.aquery
34-
SearchIndex.query_batch
35-
SearchIndex.aquery_batch
36-
SearchIndex.delete
37-
SearchIndex.adelete
38-
SearchIndex.info
39-
SearchIndex.ainfo
40-
4123
.. autoclass:: SearchIndex
4224
:show-inheritance:
4325
:inherited-members:
4426
:members:
27+
28+
AsyncSearchIndex
29+
================
30+
31+
.. _asyncsearchindex_api:
32+
33+
.. currentmodule:: redisvl.index
34+
35+
.. autoclass:: AsyncSearchIndex
36+
:show-inheritance:
37+
:inherited-members:
38+
:members:

0 commit comments

Comments
 (0)