Execute command
Description
For commands that have not been included in the client API, the execute command can be used.
For a full list of commands that Redis supports see the Redis site http://redis.io/commands .
dim redis as extension::RedisClient = extension::RedisClient::CreateClient()
dim info as extension::RedisResult
info = redis.Execute("info")
? filter_string(info.valueString,"version")
= "redis_version:3.0.501"