
redisType(key)
string: A single value is associated with the key
list: A stack of values is associated with the key
set: A set of values is associated with the key.
Values of "list" and "set" types have available to them special stack and set operations, respectively.
redisKeys
## Not run:
# redisConnect()
# redisSet('x',5)
# redisLPush('y',6)
# redisType('x')
# redisType('y')
# ## End(Not run)
Run the code above in your browser using DataLab