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.

Inheritance
object
DataFlowSource<ExpandoObject>
RedisSource<ExpandoObject>
RedisSource
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 RedisSource : RedisSource<ExpandoObject>, ILoggableTask, IDataFlowLogging, IDataFlowExecutableSource<ExpandoObject>, IDataFlowSource<ExpandoObject>, IDataFlowExecutableSource, IDataFlowSource, IDataFlowComponent

Constructors

RedisSource()

Declaration
    public RedisSource()

Implements