[C#/COMMON/REDIS] ConnectionMultiplexer 클래스 : Connect 정적 메소드를 사용해 데이터베이스 접속하기
■ ConnectionMultiplexer 클래스의 Connect 정적 메소드를 사용해 데이터베이스를 접속하는 방법을 보여준다. ▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
using System; using StackExchange.Redis; ConfigurationOptions options = new ConfigurationOptions { EndPoints = { { "192.168.29.197", 6379 } }, SyncTimeout = 5000 }; ConnectionMultiplexer multiplexer = ConnectionMultiplexer.Connect(options); Console.WriteLine(multiplexer.IsConnected); |
※ 패키지 설치 : StackExchange.Redis