Lua-redis Redis Data (table) into JSON

Source: Internet
Author: User
Key,val is not a correspondence in the hash data obtained by Lua-redis.
Data structures are as follows
1 Key1
2 Val1
3 Key2
4 Val2

To make it easier for other language programs to get formatted data, you need to convert it to JSON so that key and Val correspond, and the program makes the following modifications (LUA)

For k,v in pairs (OK) do
For key,val in pairs (v) do
If key%2 = = 0 Then
Tmp[v[key-1]] = V[key];
End
End
ret[k]=tmp;
End
Ngx.say (Cjson.encode (ret));

And then it can be resolved by other languages.

The above describes the Lua-redis in the Redis Data (table) converted to JSON, including the aspects of the content, I hope to be interested in PHP tutorial friends helpful.

  • 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.