NRedisStack 0.5.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package NRedisStack --version 0.5.0
NuGet\Install-Package NRedisStack -Version 0.5.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="NRedisStack" Version="0.5.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NRedisStack --version 0.5.0
#r "nuget: NRedisStack, 0.5.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install NRedisStack as a Cake Addin
#addin nuget:?package=NRedisStack&version=0.5.0

// Install NRedisStack as a Cake Tool
#tool nuget:?package=NRedisStack&version=0.5.0

license .github/workflows/integration.yml codecov NRedisStack NuGet release

NRedisStack

.NET Client for Redis

Note

This project builds on StackExchange.Redis, and seeks to bring native support for Redis Stack commands to the C# ecosystem.

API

The complete documentation for Redis module commands can be found at the Redis commands website.

Redis OSS commands

You can use Redis OSS commands in the same way as you use them in StackExchange.Redis.

Stack commands

Each module has a command class with its own commands. The supported modules are Search, JSON, Graph, TimeSeries, Bloom Filter, Cuckoo Filter, T-Digest, Count-min Sketch, and Top-K.

Usage

💻 Installation

Using the dotnet cli, run:

dotnet add package NRedisStack

🏁 Getting started

Starting Redis

Before writing any code, you'll need a Redis instance with the appropriate Redis modules. The quickest way to get this is with Docker:

docker run -p 6379:6379 --name redis-stack redis/redis-stack:latest

This launches Redis Stack, an extension of Redis that adds modern data structures to Redis.

Now, you need to connect to Redis, exactly the same way you do it in StackExchange.Redis:

using NRedisStack;
...
ConnectionMultiplexer redis = ConnectionMultiplexer.Connect("localhost");

Now you can create a variable from any type of module in the following way:

IBloomCommands bf = db.BF();
ICuckooCommands cf = db.CF();
ICmsCommands cms = db.CMS();
IGraphCommands graph = db.GRAPH();
ITopKCommands topk = db.TOPK();
ITdigestCommands tdigest = db.TDIGEST();
ISearchCommands ft = db.FT();
IJsonCommands json = db.JSON();
ITimeSeriesCommands ts = db.TS();

Then, that variable will allow you to call all the commands of that module.

Examples

Set JSON object to Redis

Set a json object to Redis:

ConnectionMultiplexer redis = ConnectionMultiplexer.Connect("localhost");
IDatabase db = redis.GetDatabase();

IJsonCommands json = db.JSON();
var key = "myKey";
json.Set(key, "$", new Person() { Age = 35, Name = "Alice" });

We will see an example that shows how you can create an index, add a document to it and search it using NRedisStack.

Setup:

using NRedisStack;
...
IDatabase db = redisFixture.Redis.GetDatabase();
ISearchCommands ft = db.FT();
IJsonCommands json = db.JSON();

Create an index with fields and weights:

// FT.CREATE myIdx ON HASH PREFIX 1 doc: SCHEMA title TEXT WEIGHT 5.0 body TEXT url TEXT
ft.Create("myIndex", new FTCreateParams().On(IndexDataType.Hash)
                                         .Prefix("doc:"),
                     new Schema().AddTextField("title", 5.0)
                                 .AddTextField("body")
                                 .AddTextField("url"));

After you create the index, any new hash documents with the doc: prefix are automatically indexed upon creation.

To create a new hash document and add it to the index, use the HSET command:

// HSET doc:1 title "hello world" body "lorem ipsum" url "http://redis.io"
db.HashSet("doc:1", new HashEntry[] { new("title", "hello world"),
                                      new("body", "lorem ipsum"),
                                      new("url", "http://redis.io") });

Search the index for documents that contain "hello world":

// FT.SEARCH myIndex "hello world" LIMIT 0 10
ft.Search("myIndex", new Query("hello world").Limit(0, 10));

Drop the index:

// FT.DROPINDEX myIndex
ft.DropIndex("myIndex");

Author

NRedisStack is developed and maintained by Redis Inc. It can be found here, or downloaded from NuGet.


Redis

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (21)

Showing the top 5 NuGet packages that depend on NRedisStack:

Package Downloads
ShayganTadbir.Framework.Core

Package description

FCMicroservices

a boilerplate microservice framework

Aardworx.PointShare.Import

Aardworx PointShare.

Nameless.Caching.Redis

Library to be used in conjunction with Redis.

Microsoft.KernelMemory.MemoryDb.Redis The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Redis connector for Microsoft Kernel Memory, to store and search memory using Redis vector search and other Redis features.

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on NRedisStack:

Repository Stars
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
microsoft/kernel-memory
Index and query any data using LLM and natural language, tracking sources and showing citations.
Version Downloads Last updated
0.12.0 70,264 3/12/2024
0.11.0 204,233 12/19/2023
0.10.1 78,390 10/22/2023
0.10.0 1,886 10/19/2023
0.9.0 207,668 9/3/2023
0.8.1 90,394 8/16/2023
0.8.0 456,793 7/5/2023
0.7.0 28,362 6/15/2023
0.6.1 60,127 5/3/2023
0.6.0 66,380 3/15/2023
0.5.1 9,895 2/8/2023
0.5.0 692 1/12/2023
0.4.1 556 11/30/2022
0.3.0 416 10/12/2022
0.2.2 402 10/2/2022
0.2.1 425 9/6/2022
0.1.0 759 8/17/2022