Method | Description | |
---|---|---|
Context ( ) : System.IO |
Initializes a new instance of the Context class using Redis in localhost server default port 6379, and using the default Serializer.
|
|
Context ( string configuration ) : System.IO |
Initializes a new instance of the Context class given the cache engine type and its configuration string, and using the default Serializer.
|
|
Context ( string configuration, ISerializer serializer ) : System.IO |
Initializes a new instance of the Context class.
|
|
Context ( string configuration, ISerializer serializer, |
Initializes a new instance of the Context class.
|
|
Dispose ( ) : void |
Disposes this instance.
|
|
GetConnectionMultiplexer ( ) : IConnectionMultiplexer |
Gets the StackExchange.Redis's connection multiplexer. Use this if you want to directly access the SE.Redis API.
|
|
GetSerializer ( ) : ISerializer |
Gets the serializer for this context.
|
public Context ( string configuration ) : System.IO | ||
configuration | string | The configuration string. |
return | System.IO |
public Context ( string configuration, ISerializer serializer ) : System.IO | ||
configuration | string | The configuration string. |
serializer | ISerializer | The serializer. |
return | System.IO |
public Context ( string configuration, ISerializer serializer, |
||
configuration | string | The configuration string. |
serializer | ISerializer | The serializer. |
log | The textwriter to use for logging purposes. | |
return | System.IO |
public GetConnectionMultiplexer ( ) : IConnectionMultiplexer | ||
return | IConnectionMultiplexer |