diff --git a/content/develop/_index.md b/content/develop/_index.md index 860a942485..a96e697e61 100644 --- a/content/develop/_index.md +++ b/content/develop/_index.md @@ -2,6 +2,44 @@ title: Develop with Redis description: Learn how to develop with Redis linkTitle: Develop +hideListLinks: true +hideTOC: true --- -Explore the pages below to learn more about developing with Redis Open Source. +Get a Redis server running in minutes with a free trial of +[Redis Cloud]({{< relref "/operate/rc" >}}), or install +[Redis Open Source]({{< relref "/operate/oss_and_stack" >}}) locally +on your machine. Then, explore Redis with your favorite +[programming language]({{< relref "/develop/clients" >}}) +or analyze and manage your database with our +[UI tools]({{< relref "/develop/tools" >}}): + +| | Get started | Document search | Vector search | +|:----- | :-----: | :-----: | :-----:| +| [Python]({{< relref "/develop/clients/redis-py" >}}) | [See Python examples]({{< relref "/develop/clients/redis-py/connect" >}}) | [See Python examples]({{< relref "/develop/clients/redis-py/queryjson" >}}) | [See Python examples]({{< relref "/develop/clients/redis-py/vecsearch" >}}) | +| [C#/.NET]({{< relref "/develop/clients/dotnet" >}}) | [See C# examples]({{< relref "/develop/clients/dotnet/connect" >}}) | [See C# examples]({{< relref "/develop/clients/dotnet/queryjson" >}}) | [See C# examples]({{< relref "/develop/clients/dotnet/vecsearch" >}}) | +| [Node.js]({{< relref "/develop/clients/nodejs" >}}) | [See JS examples]({{< relref "/develop/clients/nodejs/connect" >}}) | [See JS examples]({{< relref "/develop/clients/nodejs/queryjson" >}}) | [See JS examples]({{< relref "/develop/clients/nodejs/vecsearch" >}}) | +| [Java]({{< relref "/develop/clients/jedis" >}}) | [See Java examples]({{< relref "/develop/clients/jedis/connect" >}}) | [See Java examples]({{< relref "/develop/clients/jedis/queryjson" >}}) | [See Java examples]({{< relref "/develop/clients/jedis/vecsearch" >}}) | +| [Go]({{< relref "/develop/clients/go" >}}) | [See Go examples]({{< relref "/develop/clients/go/connect" >}}) | [See Go examples]({{< relref "/develop/clients/go/queryjson" >}}) | [See Go examples]({{< relref "/develop/clients/go/vecsearch" >}}) | +| [PHP]({{< relref "/develop/clients/php" >}}) | [See PHP examples]({{< relref "/develop/clients/php/connect" >}}) | [See PHP examples]({{< relref "/develop/clients/php/queryjson" >}}) | [See PHP examples]({{< relref "/develop/clients/php/vecsearch" >}}) | + +
+
+ {{< image filename="develop/tools/insight/images/Browser.png" class="w-[300px] mr-4" >}} +
+

Redis Insight

+

Visual client tool for creating, managing, and analyzing Redis databases.

+
+
+
+ {{< image filename="images/dev/connect/vscode/vscode-cli.png" class="w-[300px] mr-4" >}} +
+

Redis for VS Code

+

Visual client tool for creating, managing, and analyzing Redis databases.

+
+
+
+ +| {{< image filename="images/icon_logo/icon-developers-32-midnight.png" >}}
[**Quick start**]({{< relref "/develop/get-started" >}}) | {{< image filename="images/icon_logo/icon-data-structures-32-midnight.png" >}}
[**Data types**]({{< relref "/develop/data-types" >}}) | {{< image filename="images/icon_logo/icon-text-search-32-midnight.png" >}}
[**Query engine**]({{< relref "/develop/interact/search-and-query" >}}) | +|---|---|---| +| [Vector database]({{< relref "/develop/get-started/vector-database" >}})
[Document store]({{< relref "/develop/get-started/document-database" >}})
[Data structure store]({{< relref "/develop/get-started/data-store" >}})
[RAG with Redis]({{< relref "/develop/get-started/rag" >}})
[GenAI]({{< relref "/develop/get-started/redis-in-ai" >}}) | [String]({{< relref "/develop/data-types/strings" >}})
[JSON]({{< relref "/develop/data-types/json" >}})
[Hash]({{< relref "/develop/data-types/hashes" >}})
[Vector set]({{< relref "/develop/data-types/vector-sets" >}})
[Probabilistic types]({{< relref "/develop/data-types/probabilistic" >}}) | [Get started]({{< relref "/develop/interact/search-and-query" >}})
[Schema field types]({{< relref "/develop/interact/search-and-query/basic-constructs/field-and-type-options" >}})
[Indexing]({{< relref "/develop/interact/search-and-query/indexing" >}})
[Querying]({{< relref "/develop/interact/search-and-query/query" >}})
[Use cases]({{< relref "/develop/interact/search-and-query/query-use-cases" >}}) diff --git a/layouts/develop/list.html b/layouts/develop/list.html index a7f4d0e763..71c7bb004d 100644 --- a/layouts/develop/list.html +++ b/layouts/develop/list.html @@ -38,7 +38,7 @@

{{ if strings.HasSuffix .RelPermalink "/develop/" }}
- +
@@ -54,7 +54,8 @@

SET e 2.71
INCRBYFLOAT e 0.43
RENAME e pi
- GET pi + GET pi

+ # See all commands

Try these Redis commands
@@ -92,7 +93,10 @@

{{ partial "feedback.html" . }}

- {{ partial "docs-toc.html" . }} + + {{ if not .Params.hideTOC }} + {{ partial "docs-toc.html" . }} + {{ end }} {{ partial "scripts.html" . }} {{ end }} diff --git a/static/images/icon_logo/icon-data-structures-32-midnight.png b/static/images/icon_logo/icon-data-structures-32-midnight.png new file mode 100644 index 0000000000..4bfe550f14 Binary files /dev/null and b/static/images/icon_logo/icon-data-structures-32-midnight.png differ diff --git a/static/images/icon_logo/icon-developers-32-midnight.png b/static/images/icon_logo/icon-developers-32-midnight.png new file mode 100644 index 0000000000..50e1fb48f7 Binary files /dev/null and b/static/images/icon_logo/icon-developers-32-midnight.png differ diff --git a/static/images/icon_logo/icon-text-search-32-midnight.png b/static/images/icon_logo/icon-text-search-32-midnight.png new file mode 100644 index 0000000000..de4fd66327 Binary files /dev/null and b/static/images/icon_logo/icon-text-search-32-midnight.png differ