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.

Inherited Members
Namespace: ETLBox.Redis
Assembly: ETLBox.Redis.dll
Syntax
    public class RedisDestination : RedisDestination<ExpandoObject>, IDataFlowLogging, IDataFlowBatchDestination<ExpandoObject>, IDataFlowDestination<ExpandoObject>, IDataFlowBatchDestination, IDataFlowDestination, IDataFlowComponent, ILoggableTask

Constructors

RedisDestination()

Declaration
    public RedisDestination()

RedisDestination(int)

Declaration
    public RedisDestination(int batchSize)
Parameters
TypeNameDescription
intbatchSize

Implements