Github user HeartSaVioR commented on the pull request:

    https://github.com/apache/storm/pull/365#issuecomment-68332013
  
    Here're data types and commands I'm trying to support at first time.
    
    Type | Read | Write
    ------- | ------- | -------
    STRING | GET (key) | SET (key, value), INCRBY (key, incr)
    HASH | HGET (key, field) | HSET (key, field, value)
    LIST | LPOP (key) | RPUSH (key, value)
    SET |  | SADD (key, member)
    SORTED SET | ZSCORE (key, member) | ZADD (key, score, member), ZINCRBY 
(key, incr, member)
    HLL (HyperLogLog) | PFCOUNT (key) | PFADD (key, element)
    
    There're so many candidate list, but we don't need to care all things 
because users may use Jedis easily.
    There're also many commands which retrieves subset of values (by range, 
all), but it's good to start with essential and expand if we think it would be 
great to have.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to