Class RedisDestination

A data flow destination for Redis. Regis is a key/value store. You can define a key column using either a KeyColumnAttribute on your object or assign a value to the KeyColumn property. If no key column is provided, a Guid is created and used as key. The stored value will contain your serialized object using Newtonsoft.Json and JsonConvert.

Inheritance
object
DataFlowDestination<ExpandoObject>
RedisDestination<ExpandoObject>
RedisDestination
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: ETLBox.Redis
Assembly: ETLBox.Redis.dll
Syntax
    public class RedisDestination : RedisDestination<ExpandoObject>, ILoggableTask, IDataFlowLogging, IDataFlowBatchDestination<ExpandoObject>, IDataFlowDestination<ExpandoObject>, IDataFlowBatchDestination, IDataFlowDestination, IDataFlowComponent

Constructors

RedisDestination()

Declaration
    public RedisDestination()

RedisDestination(int)

Declaration
    public RedisDestination(int batchSize)
Parameters
TypeNameDescription
intbatchSize

Implements