C # Classification of the same types of data in Redis

Source: Internet
Author: User
Tags redis

To write the Redis inside the K-line, and the line, think should be able to both types exist in a database (db), and to distinguish between the two.

Looked up some information, finally found, the feeling is quite practical, do a record, lest forget.

The following code is a demo, where the client is a Redisclient object:

                String stringkey = "Demo1";
                dictionary<string, string> orderlist = new dictionary<string, string> ();
                Orderlist.add ("Openwndtime", "130831810820000000");
                Orderlist.add ("Opensystime", "130831810820000000");
                Orderlist.add ("Dur", "222222");
                Orderlist.add ("Open", "222222");
                Orderlist.add ("Close", "222222");
                Orderlist.add ("High", "222222");
                Orderlist.add ("Low", "222222");
                String time = String. Format ("{0:yyyymmddhhmmssffff}", DateTime.Now);
                foreach (var order in orderlist)
                {
                    
                    client. Hset (Stringkey + ":" + Time, Encoding.UTF8.GetBytes) (order. Key), Encoding.UTF8.GetBytes (order. Value)); Create a Key-field
                

The data in the above code is viewed in Redismanage as:



It's like I built a folder.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.