Class RedisSource

A data flow source for Redis. Redis is a key/value store.
You can define a different scan pattern to describe which keys should be retrieved. (Default pattern is * which retrieves all key). By default, the stored values will be deserialized using Newtonsoft.Json and JsonConvert. This works only if your values contain json - for other values you can define your own serialization function.

Inherited Members
Namespace: ETLBox.Redis
Assembly: ETLBox.Redis.dll
Syntax
    public class RedisSource : RedisSource<ExpandoObject>, IDataFlowLogging, IDataFlowExecutableSource<ExpandoObject>, IDataFlowSource<ExpandoObject>, IDataFlowExecutableSource, IDataFlowSource, IDataFlowComponent, ILoggableTask

Constructors

RedisSource()

Declaration
    public RedisSource()

Implements