To connect to a Redis cluster, you just need to specify one or all cluster endpoints in the client configuration:
ConfigurationOptionsoptions=newConfigurationOptions{//list of available nodes of the cluster along with the endpoint port.EndPoints={{"localhost",16379},{"localhost",16380},// ...},};ConnectionMultiplexercluster=ConnectionMultiplexer.Connect(options);IDatabasedb=cluster.GetDatabase();db.StringSet("foo","bar");Console.WriteLine(db.StringGet("foo"));// prints bar
Connect to your production Redis with TLS
When you deploy your application, use TLS and follow the Redis security guidelines.
Before connecting your application to the TLS-enabled Redis server, ensure that your certificates and private keys are in the correct format.
To convert user certificate and private key from the PEM format to pfx, use this command:
Establish a secure connection with your Redis database using this snippet.
ConfigurationOptionsoptions=newConfigurationOptions{EndPoints={{"my-redis.cloud.redislabs.com",6379}},User="default",// use your Redis user. More info https://redis.io/docs/latest/operate/oss_and_stack/management/security/acl/Password="secret",// use your Redis passwordSsl=true,SslProtocols=System.Security.Authentication.SslProtocols.Tls12};options.CertificateSelection+=delegate{returnnewX509Certificate2("redis.pfx","secret");// use the password you specified for pfx file};options.CertificateValidation+=ValidateServerCertificate;boolValidateServerCertificate(objectsender,X509Certificate?certificate,X509Chain?chain,SslPolicyErrorssslPolicyErrors){if(certificate==null){returnfalse;}varca=newX509Certificate2("redis_ca.pem");boolverdict=(certificate.Issuer==ca.Subject);if(verdict){returntrue;}Console.WriteLine("Certificate error: {0}",sslPolicyErrors);returnfalse;}ConnectionMultiplexermuxer=ConnectionMultiplexer.Connect(options);//Creation of the connection to the DBIDatabaseconn=muxer.GetDatabase();//send SET commandconn.StringSet("foo","bar");//send GET command and print the valueConsole.WriteLine(conn.StringGet("foo"));
Multiplexing
Although example code typically works with a single connection,
real-world code often uses multiple connections at the same time.
Opening and closing connections repeatedly is inefficient, so it is best
to manage open connections carefully to avoid this.
Several other
Redis client libraries use connection pools to reuse a set of open
connections efficiently. NRedisStack uses a different approach called
multiplexing, which sends all client commands and responses over a
single connection. NRedisStack manages multiplexing for you automatically.
This gives high performance without requiring any extra coding.
See
Connection pools and multiplexing
for more information.
Example: Indexing and querying JSON documents
This example shows how to create a
search index
for JSON data and
run queries against the index.
Make sure that you have Redis Stack and NRedisStack installed.
Start by importing dependencies:
usingNRedisStack.RedisStackCommands;usingNRedisStack.Search;usingNRedisStack.Search.Aggregation;usingNRedisStack.Search.Literals.Enums;usingStackExchange.Redis;publicclassHomeJsonExample{publicvoidrun(){varmuxer=ConnectionMultiplexer.Connect("localhost:6379");vardb=muxer.GetDatabase();varuser1=new{name="Paul John",email="paul.john@example.com",age=42,city="London"};varuser2=new{name="Eden Zamir",email="eden.zamir@example.com",age=29,city="Tel Aviv"};varuser3=new{name="Paul Zamir",email="paul.zamir@example.com",age=35,city="Tel Aviv"};varschema=newSchema().AddTextField(newFieldName("$.name","name")).AddTagField(newFieldName("$.city","city")).AddNumericField(newFieldName("$.age","age"));boolindexCreated=db.FT().Create("idx:users",newFTCreateParams().On(IndexDataType.JSON).Prefix("user:"),schema);// Tests for 'make_index' step.booluser1Set=db.JSON().Set("user:1","$",user1);booluser2Set=db.JSON().Set("user:2","$",user2);booluser3Set=db.JSON().Set("user:3","$",user3);// Tests for 'add_data' step.SearchResultfindPaulResult=db.FT().Search("idx:users",newQuery("Paul @age:[30 40]"));Console.WriteLine(string.Join(", ",findPaulResult.Documents.Select(x=>x["json"])));// >>> {"name":"Paul Zamir","email":"paul.zamir@example.com", ...// Tests for 'query1' step.varcitiesResult=db.FT().Search("idx:users",newQuery("Paul").ReturnFields(newFieldName("$.city","city")));Console.WriteLine(string.Join(", ",citiesResult.Documents.Select(x=>x["city"]).OrderBy(x=>x)));// >>> London, Tel Aviv// Tests for 'query2' step.AggregationRequestaggRequest=newAggregationRequest("*").GroupBy("@city",Reducers.Count().As("count"));AggregationResultaggResult=db.FT().Aggregate("idx:users",aggRequest);IReadOnlyList<Dictionary<string,RedisValue>>resultsList=aggResult.GetResults();for(vari=0;i<resultsList.Count;i++){Dictionary<string,RedisValue>item=resultsList.ElementAt(i);Console.WriteLine($"{item["city"]} - {item["count"]}");}// >>> London - 1// >>> Tel Aviv - 2// Tests for 'query3' step.}}
Connect to the database:
usingNRedisStack.RedisStackCommands;usingNRedisStack.Search;usingNRedisStack.Search.Aggregation;usingNRedisStack.Search.Literals.Enums;usingStackExchange.Redis;publicclassHomeJsonExample{publicvoidrun(){varmuxer=ConnectionMultiplexer.Connect("localhost:6379");vardb=muxer.GetDatabase();varuser1=new{name="Paul John",email="paul.john@example.com",age=42,city="London"};varuser2=new{name="Eden Zamir",email="eden.zamir@example.com",age=29,city="Tel Aviv"};varuser3=new{name="Paul Zamir",email="paul.zamir@example.com",age=35,city="Tel Aviv"};varschema=newSchema().AddTextField(newFieldName("$.name","name")).AddTagField(newFieldName("$.city","city")).AddNumericField(newFieldName("$.age","age"));boolindexCreated=db.FT().Create("idx:users",newFTCreateParams().On(IndexDataType.JSON).Prefix("user:"),schema);// Tests for 'make_index' step.booluser1Set=db.JSON().Set("user:1","$",user1);booluser2Set=db.JSON().Set("user:2","$",user2);booluser3Set=db.JSON().Set("user:3","$",user3);// Tests for 'add_data' step.SearchResultfindPaulResult=db.FT().Search("idx:users",newQuery("Paul @age:[30 40]"));Console.WriteLine(string.Join(", ",findPaulResult.Documents.Select(x=>x["json"])));// >>> {"name":"Paul Zamir","email":"paul.zamir@example.com", ...// Tests for 'query1' step.varcitiesResult=db.FT().Search("idx:users",newQuery("Paul").ReturnFields(newFieldName("$.city","city")));Console.WriteLine(string.Join(", ",citiesResult.Documents.Select(x=>x["city"]).OrderBy(x=>x)));// >>> London, Tel Aviv// Tests for 'query2' step.AggregationRequestaggRequest=newAggregationRequest("*").GroupBy("@city",Reducers.Count().As("count"));AggregationResultaggResult=db.FT().Aggregate("idx:users",aggRequest);IReadOnlyList<Dictionary<string,RedisValue>>resultsList=aggResult.GetResults();for(vari=0;i<resultsList.Count;i++){Dictionary<string,RedisValue>item=resultsList.ElementAt(i);Console.WriteLine($"{item["city"]} - {item["count"]}");}// >>> London - 1// >>> Tel Aviv - 2// Tests for 'query3' step.}}
Create some test data to add to the database:
usingNRedisStack.RedisStackCommands;usingNRedisStack.Search;usingNRedisStack.Search.Aggregation;usingNRedisStack.Search.Literals.Enums;usingStackExchange.Redis;publicclassHomeJsonExample{publicvoidrun(){varmuxer=ConnectionMultiplexer.Connect("localhost:6379");vardb=muxer.GetDatabase();varuser1=new{name="Paul John",email="paul.john@example.com",age=42,city="London"};varuser2=new{name="Eden Zamir",email="eden.zamir@example.com",age=29,city="Tel Aviv"};varuser3=new{name="Paul Zamir",email="paul.zamir@example.com",age=35,city="Tel Aviv"};varschema=newSchema().AddTextField(newFieldName("$.name","name")).AddTagField(newFieldName("$.city","city")).AddNumericField(newFieldName("$.age","age"));boolindexCreated=db.FT().Create("idx:users",newFTCreateParams().On(IndexDataType.JSON).Prefix("user:"),schema);// Tests for 'make_index' step.booluser1Set=db.JSON().Set("user:1","$",user1);booluser2Set=db.JSON().Set("user:2","$",user2);booluser3Set=db.JSON().Set("user:3","$",user3);// Tests for 'add_data' step.SearchResultfindPaulResult=db.FT().Search("idx:users",newQuery("Paul @age:[30 40]"));Console.WriteLine(string.Join(", ",findPaulResult.Documents.Select(x=>x["json"])));// >>> {"name":"Paul Zamir","email":"paul.zamir@example.com", ...// Tests for 'query1' step.varcitiesResult=db.FT().Search("idx:users",newQuery("Paul").ReturnFields(newFieldName("$.city","city")));Console.WriteLine(string.Join(", ",citiesResult.Documents.Select(x=>x["city"]).OrderBy(x=>x)));// >>> London, Tel Aviv// Tests for 'query2' step.AggregationRequestaggRequest=newAggregationRequest("*").GroupBy("@city",Reducers.Count().As("count"));AggregationResultaggResult=db.FT().Aggregate("idx:users",aggRequest);IReadOnlyList<Dictionary<string,RedisValue>>resultsList=aggResult.GetResults();for(vari=0;i<resultsList.Count;i++){Dictionary<string,RedisValue>item=resultsList.ElementAt(i);Console.WriteLine($"{item["city"]} - {item["count"]}");}// >>> London - 1// >>> Tel Aviv - 2// Tests for 'query3' step.}}
Create an index. In this example, only JSON documents with the key prefix user: are indexed. For more information, see Query syntax.
usingNRedisStack.RedisStackCommands;usingNRedisStack.Search;usingNRedisStack.Search.Aggregation;usingNRedisStack.Search.Literals.Enums;usingStackExchange.Redis;publicclassHomeJsonExample{publicvoidrun(){varmuxer=ConnectionMultiplexer.Connect("localhost:6379");vardb=muxer.GetDatabase();varuser1=new{name="Paul John",email="paul.john@example.com",age=42,city="London"};varuser2=new{name="Eden Zamir",email="eden.zamir@example.com",age=29,city="Tel Aviv"};varuser3=new{name="Paul Zamir",email="paul.zamir@example.com",age=35,city="Tel Aviv"};varschema=newSchema().AddTextField(newFieldName("$.name","name")).AddTagField(newFieldName("$.city","city")).AddNumericField(newFieldName("$.age","age"));boolindexCreated=db.FT().Create("idx:users",newFTCreateParams().On(IndexDataType.JSON).Prefix("user:"),schema);// Tests for 'make_index' step.booluser1Set=db.JSON().Set("user:1","$",user1);booluser2Set=db.JSON().Set("user:2","$",user2);booluser3Set=db.JSON().Set("user:3","$",user3);// Tests for 'add_data' step.SearchResultfindPaulResult=db.FT().Search("idx:users",newQuery("Paul @age:[30 40]"));Console.WriteLine(string.Join(", ",findPaulResult.Documents.Select(x=>x["json"])));// >>> {"name":"Paul Zamir","email":"paul.zamir@example.com", ...// Tests for 'query1' step.varcitiesResult=db.FT().Search("idx:users",newQuery("Paul").ReturnFields(newFieldName("$.city","city")));Console.WriteLine(string.Join(", ",citiesResult.Documents.Select(x=>x["city"]).OrderBy(x=>x)));// >>> London, Tel Aviv// Tests for 'query2' step.AggregationRequestaggRequest=newAggregationRequest("*").GroupBy("@city",Reducers.Count().As("count"));AggregationResultaggResult=db.FT().Aggregate("idx:users",aggRequest);IReadOnlyList<Dictionary<string,RedisValue>>resultsList=aggResult.GetResults();for(vari=0;i<resultsList.Count;i++){Dictionary<string,RedisValue>item=resultsList.ElementAt(i);Console.WriteLine($"{item["city"]} - {item["count"]}");}// >>> London - 1// >>> Tel Aviv - 2// Tests for 'query3' step.}}
Add the three sets of user data to the database as
JSON objects.
If you use keys with the user: prefix then Redis will index the
objects automatically as you add them:
usingNRedisStack.RedisStackCommands;usingNRedisStack.Search;usingNRedisStack.Search.Aggregation;usingNRedisStack.Search.Literals.Enums;usingStackExchange.Redis;publicclassHomeJsonExample{publicvoidrun(){varmuxer=ConnectionMultiplexer.Connect("localhost:6379");vardb=muxer.GetDatabase();varuser1=new{name="Paul John",email="paul.john@example.com",age=42,city="London"};varuser2=new{name="Eden Zamir",email="eden.zamir@example.com",age=29,city="Tel Aviv"};varuser3=new{name="Paul Zamir",email="paul.zamir@example.com",age=35,city="Tel Aviv"};varschema=newSchema().AddTextField(newFieldName("$.name","name")).AddTagField(newFieldName("$.city","city")).AddNumericField(newFieldName("$.age","age"));boolindexCreated=db.FT().Create("idx:users",newFTCreateParams().On(IndexDataType.JSON).Prefix("user:"),schema);// Tests for 'make_index' step.booluser1Set=db.JSON().Set("user:1","$",user1);booluser2Set=db.JSON().Set("user:2","$",user2);booluser3Set=db.JSON().Set("user:3","$",user3);// Tests for 'add_data' step.SearchResultfindPaulResult=db.FT().Search("idx:users",newQuery("Paul @age:[30 40]"));Console.WriteLine(string.Join(", ",findPaulResult.Documents.Select(x=>x["json"])));// >>> {"name":"Paul Zamir","email":"paul.zamir@example.com", ...// Tests for 'query1' step.varcitiesResult=db.FT().Search("idx:users",newQuery("Paul").ReturnFields(newFieldName("$.city","city")));Console.WriteLine(string.Join(", ",citiesResult.Documents.Select(x=>x["city"]).OrderBy(x=>x)));// >>> London, Tel Aviv// Tests for 'query2' step.AggregationRequestaggRequest=newAggregationRequest("*").GroupBy("@city",Reducers.Count().As("count"));AggregationResultaggResult=db.FT().Aggregate("idx:users",aggRequest);IReadOnlyList<Dictionary<string,RedisValue>>resultsList=aggResult.GetResults();for(vari=0;i<resultsList.Count;i++){Dictionary<string,RedisValue>item=resultsList.ElementAt(i);Console.WriteLine($"{item["city"]} - {item["count"]}");}// >>> London - 1// >>> Tel Aviv - 2// Tests for 'query3' step.}}
You can now use the index to search the JSON objects. The
query
below searches for objects that have the text "Paul" in any field
and have an age value in the range 30 to 40:
usingNRedisStack.RedisStackCommands;usingNRedisStack.Search;usingNRedisStack.Search.Aggregation;usingNRedisStack.Search.Literals.Enums;usingStackExchange.Redis;publicclassHomeJsonExample{publicvoidrun(){varmuxer=ConnectionMultiplexer.Connect("localhost:6379");vardb=muxer.GetDatabase();varuser1=new{name="Paul John",email="paul.john@example.com",age=42,city="London"};varuser2=new{name="Eden Zamir",email="eden.zamir@example.com",age=29,city="Tel Aviv"};varuser3=new{name="Paul Zamir",email="paul.zamir@example.com",age=35,city="Tel Aviv"};varschema=newSchema().AddTextField(newFieldName("$.name","name")).AddTagField(newFieldName("$.city","city")).AddNumericField(newFieldName("$.age","age"));boolindexCreated=db.FT().Create("idx:users",newFTCreateParams().On(IndexDataType.JSON).Prefix("user:"),schema);// Tests for 'make_index' step.booluser1Set=db.JSON().Set("user:1","$",user1);booluser2Set=db.JSON().Set("user:2","$",user2);booluser3Set=db.JSON().Set("user:3","$",user3);// Tests for 'add_data' step.SearchResultfindPaulResult=db.FT().Search("idx:users",newQuery("Paul @age:[30 40]"));Console.WriteLine(string.Join(", ",findPaulResult.Documents.Select(x=>x["json"])));// >>> {"name":"Paul Zamir","email":"paul.zamir@example.com", ...// Tests for 'query1' step.varcitiesResult=db.FT().Search("idx:users",newQuery("Paul").ReturnFields(newFieldName("$.city","city")));Console.WriteLine(string.Join(", ",citiesResult.Documents.Select(x=>x["city"]).OrderBy(x=>x)));// >>> London, Tel Aviv// Tests for 'query2' step.AggregationRequestaggRequest=newAggregationRequest("*").GroupBy("@city",Reducers.Count().As("count"));AggregationResultaggResult=db.FT().Aggregate("idx:users",aggRequest);IReadOnlyList<Dictionary<string,RedisValue>>resultsList=aggResult.GetResults();for(vari=0;i<resultsList.Count;i++){Dictionary<string,RedisValue>item=resultsList.ElementAt(i);Console.WriteLine($"{item["city"]} - {item["count"]}");}// >>> London - 1// >>> Tel Aviv - 2// Tests for 'query3' step.}}
Specify query options to return only the city field:
usingNRedisStack.RedisStackCommands;usingNRedisStack.Search;usingNRedisStack.Search.Aggregation;usingNRedisStack.Search.Literals.Enums;usingStackExchange.Redis;publicclassHomeJsonExample{publicvoidrun(){varmuxer=ConnectionMultiplexer.Connect("localhost:6379");vardb=muxer.GetDatabase();varuser1=new{name="Paul John",email="paul.john@example.com",age=42,city="London"};varuser2=new{name="Eden Zamir",email="eden.zamir@example.com",age=29,city="Tel Aviv"};varuser3=new{name="Paul Zamir",email="paul.zamir@example.com",age=35,city="Tel Aviv"};varschema=newSchema().AddTextField(newFieldName("$.name","name")).AddTagField(newFieldName("$.city","city")).AddNumericField(newFieldName("$.age","age"));boolindexCreated=db.FT().Create("idx:users",newFTCreateParams().On(IndexDataType.JSON).Prefix("user:"),schema);// Tests for 'make_index' step.booluser1Set=db.JSON().Set("user:1","$",user1);booluser2Set=db.JSON().Set("user:2","$",user2);booluser3Set=db.JSON().Set("user:3","$",user3);// Tests for 'add_data' step.SearchResultfindPaulResult=db.FT().Search("idx:users",newQuery("Paul @age:[30 40]"));Console.WriteLine(string.Join(", ",findPaulResult.Documents.Select(x=>x["json"])));// >>> {"name":"Paul Zamir","email":"paul.zamir@example.com", ...// Tests for 'query1' step.varcitiesResult=db.FT().Search("idx:users",newQuery("Paul").ReturnFields(newFieldName("$.city","city")));Console.WriteLine(string.Join(", ",citiesResult.Documents.Select(x=>x["city"]).OrderBy(x=>x)));// >>> London, Tel Aviv// Tests for 'query2' step.AggregationRequestaggRequest=newAggregationRequest("*").GroupBy("@city",Reducers.Count().As("count"));AggregationResultaggResult=db.FT().Aggregate("idx:users",aggRequest);IReadOnlyList<Dictionary<string,RedisValue>>resultsList=aggResult.GetResults();for(vari=0;i<resultsList.Count;i++){Dictionary<string,RedisValue>item=resultsList.ElementAt(i);Console.WriteLine($"{item["city"]} - {item["count"]}");}// >>> London - 1// >>> Tel Aviv - 2// Tests for 'query3' step.}}