コード例 #1
0
ファイル: RedisPooledSocket.cs プロジェクト: DTBruce/csredis
 public RedisPooledSocket(SocketPool pool)
 {
     _pool = pool;
 }
コード例 #2
0
 public RedisPooledSocket(SocketPool pool)
 {
     _pool = pool;
 }
コード例 #3
0
 /// <summary>
 /// Create a new connection pool
 /// </summary>
 /// <param name="endPoint">Redis server</param>
 /// <param name="max">Maximum simultaneous connections</param>
 
 public RedisConnectionPool(EndPoint endPoint, int max)
 {
     _pool = new SocketPool(endPoint, max);
     _endPoint = endPoint;
 }