diff --git a/content/ai-agent-resources.md b/content/ai-agent-resources.md index 2b168de6af..75fb9e071e 100644 --- a/content/ai-agent-resources.md +++ b/content/ai-agent-resources.md @@ -31,6 +31,10 @@ API references are available for the following client libraries: See [Compare data types]({{< relref "/develop/data-types/compare-data-types" >}}) for advice on which of the general-purpose data types is best for common tasks. +## Redis patterns for coding agents + +Salvatore Sanfilippo (also known as *antirez*, the creator of Redis) has provided the Redis community with a resource containing very useful Redis-oriented design patterns. See [this page](https://redis.antirez.com/) for more information. + ## Error handling See [Error handling]({{< relref "/develop/clients/error-handling" >}}) for a guide to handling errors in client libraries. diff --git a/content/develop/clients/patterns/_index.md b/content/develop/clients/patterns/_index.md index ea1ec90d54..ad7bf17b71 100644 --- a/content/develop/clients/patterns/_index.md +++ b/content/develop/clients/patterns/_index.md @@ -10,6 +10,7 @@ categories: - kubernetes - clients description: Novel patterns for working with Redis data structures +hideListLinks: true linkTitle: Coding patterns title: Coding patterns aliases: /develop/use/patterns @@ -17,3 +18,23 @@ weight: 60 --- The following documents describe some novel development patterns you can use with Redis. + +[Bulk loading]({{< relref "/develop/clients/patterns/bulk-loading" >}}) + +Writing data in bulk using the Redis protocol + +[Distributed Locks with Redis]({{< relref "/develop/clients/patterns/distributed-locks" >}}) + +A distributed lock pattern with Redis + +[Secondary indexing]({{< relref "/develop/clients/patterns/indexes/index" >}}) + +Building secondary indexes in Redis + +[Redis patterns example]({{< relref "/develop/clients/patterns/twitter-clone" >}}) + +Learn several Redis patterns by building a Twitter clone + +[Salvatore Sanfilippo's Redis design patterns](https://redis.antirez.com/) + +Salvatore Sanfilippo (also known as *antirez*, the creator of Redis) has provided the Redis community with a resource containing very useful Redis-oriented design patterns. See [this page](https://redis.antirez.com/) for more information. \ No newline at end of file